@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #2C3E30;
    /* Deep Forest Green */
    --secondary-color: #E6D7C3;
    /* Warm Sand */
    --accent-color: #D4AF37;
    /* Gold */
    --text-color: #333333;
    --bg-light: #F9F9F7;
    /* Cream/Off-white */
    --bg-white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --radius-lg: 20px;
    --radius-md: 12px;
}

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

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-top: 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #2C3E30 0%, #3F5545 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero h1 {
    color: #fff;
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.1;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero .micro {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
}

/* SOCIAL PROOF */
.prova {
    background: var(--bg-white);
    padding: 30px;
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: var(--radius-lg);
    max-width: 900px;
    /* Match video width */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e0e0e0;
}

@media(max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
    }

    .prova {
        margin-top: 30px;
        /* Reset overlap on mobile */
        width: 85%;
    }
}

/* SECTIONS BASE */
.section {
    padding: 100px 20px;
    position: relative;
    text-align: center;
}

.light {
    background: var(--bg-light);
}

.white {
    background: var(--bg-white);
}

.dark {
    /* Deep darker green instead of black - matches brand */
    background: linear-gradient(135deg, #243326 0%, #1a221b 100%);
    color: #E6D7C3;
    padding: 120px 20px;
}

.dark h2 {
    color: #fff;
    font-weight: 400;
}

.transformacao-texto {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 30px auto 50px auto;
    color: #f5f5f5;
    opacity: 0.95;
    font-weight: 400;
}

.transformacao-texto strong {
    color: #D4AF37;
    /* Gold highlight */
    font-weight: 500;
}

/* TYPOGRAPHY & TITLES */
h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* LISTS & CHECKLISTS */
.checklist {
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-align: left;
    list-style: none;
    padding: 0;
}

.checklist li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.checklist li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* FLEX LAYOUTS */
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.flex img {
    flex: 1;
    max-width: 500px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    /* Better for cutouts */
    object-fit: contain;
}

.flex div {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

/* Fix misalignment of H2 underline in left-aligned columns */
.flex div h2::after {
    margin: 15px 0 0 0;
}

/* GRID & CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.card i {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    background: rgba(44, 62, 48, 0.1);
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 0px;
}

.card h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.card p {
    margin: 0;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(44, 62, 48, 0.2);
    border: 2px solid transparent;
}

.btn:hover {
    background: #1f2d22;
    /* Darker green */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(44, 62, 48, 0.3);
}

.btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn.destaque {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    /* Gold gradient */
    color: #fff;
    font-size: 1.2rem;
    padding: 22px 60px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn.destaque:hover {
    filter: brightness(1.1);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

/* SCARCITY ELEMENTS */
#countdown {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 30px 0;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    /* subtle bg if on dark */
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.escassez-texto {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* OFFER SECTION */
.offer-card {
    background: linear-gradient(135deg, #fff 0%, #fcfcfc 100%);
    /* White gradient */
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: 'OFERTA ESPECIAL';
    position: absolute;
    top: 30px;
    right: -60px;
    width: 200px;
    text-align: center;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 0;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Remove default CSS checkmark in offer card since we use Lucide icons there */
.offer-card .checklist li::before {
    display: none;
}

.offer-card .checklist li {
    padding-left: 0;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.price-installment {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* FAQ */
details {
    background: var(--bg-white);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all 0.3s ease;
}

details:hover {
    box-shadow: var(--shadow-hover);
}

summary {
    font-weight: 600;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    padding-right: 30px;
    color: var(--primary-color);
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1rem;
    color: var(--accent-color);
    font-weight: 300;
}

details[open] summary::after {
    content: '-';
}

details[open] summary {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* FOOTER */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    opacity: 0.95;
}

/* COUNTDOWN REDESIGN */
.countdown-box {
    margin: 25px 0;
}

.countdown-label {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    opacity: 0.9;
}

.countdown-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    letter-spacing: -2px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

/* PRICE REDESIGN */
.price-box {
    margin: 30px 0;
}

.price-old {
    font-size: 1rem;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 4.0rem;
    /* Massive price */
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    margin: 10px 0;
}

.price-main small {
    font-size: 1.8rem;
    font-weight: 400;
    vertical-align: middle;
    opacity: 0.8;
}

.price-installment {
    font-size: 1.1rem;
    color: #666;
    margin-top: 5px;
}

/* VIDEO VSL */
.video-frame {
    margin: 50px auto 0 auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    /* Frosted glass effect */
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    backdrop-filter: blur(10px);
}

.video-aspect iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: var(--radius-md);
    background: #000;
}

/* RESPONSIVE */

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

    .flex {
        flex-direction: column;
        text-align: center;
    }

    .flex div {
        text-align: center;
    }

    .checklist {
        text-align: left;
        /* Keep checklist left aligned even on mobile for readability */
        display: inline-block;
    }
}