/* Reset & Base Styles */
:root {
    --primary-color: #1a2a6c;
    /* Deep Blue */
    --accent-color: #b21f1f;
    /* Red for Urgency */
    --gold-color: #d4af37;
    /* Gold for Luxury */
    --text-color: #333;
    --light-bg: #f4f6f8;
    --white: #ffffff;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
        transform: scale(1);
    }
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary-color), #2a3a7c);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    padding: 30px 0 40px;
    /* Reduced padding */
    background: linear-gradient(180deg, #ffffff 0%, #f0f2f5 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    /* Reduced gap */
}

@media (min-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero .container {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }

    .hero-content,
    .hero-image {
        flex: 1;
    }
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #b8962e;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 2rem;
    /* Optimized for mobile */
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero .subtitle {
        padding: 0;
        font-size: 1.1rem;
    }
}

.price-container {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: center;
}

@media (min-width: 768px) {
    .price-container {
        justify-content: flex-start;
    }
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-button {
        display: inline-block;
        width: auto;
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

.guarantee {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (min-width: 768px) {
    .guarantee {
        justify-content: flex-start;
    }
}

.hero-image img {
    box-shadow: var(--shadow);
    border: 3px solid var(--white);
    width: 100%;
}

/* Description Section */
.description {
    padding: 40px 0;
    /* Reduced padding */
    text-align: center;
    background-color: var(--white);
}

.description h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.description p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
    padding: 0 10px;
}

/* Benefits Section */
.benefits {
    padding: 40px 0;
    /* Reduced padding */
    background-color: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stacked on mobile */
    gap: 15px;
    /* Tighter gap */
}

@media (min-width: 600px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.benefit-card h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Visual Break */
.visual-break {
    padding: 20px 0;
    background-color: var(--white);
}

.visual-break img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

/* Offer Section */
.offer-section {
    padding: 50px 0 80px;
    background: linear-gradient(to bottom, #f8f9fa, #e3e7eb);
}

.offer-card {
    background: var(--white);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
}

.offer-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
}

.offer-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 25px 20px;
}

.product-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
}

.pricing {
    margin: 15px 0;
}

.pricing .original {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.pricing .current {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.installments {
    color: #555;
    margin-bottom: 25px;
    font-size: 0.95rem;
    background: #f0f2f5;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

.big-cta {
    width: 100%;
    font-size: 1.2rem;
    padding: 20px;
    margin-bottom: 20px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
    color: #666;
    font-size: 0.8rem;
}

footer {
    background-color: #222;
    color: #888;
    text-align: center;
    padding: 25px 0;
    font-size: 0.8rem;
}