/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    /* New Palette: Playful but Organized */
    --primary-color: #ff3333;
    /* Pastel Red/Coral - Call to Action */
    --secondary-color: #4ECDC4;
    /* Mint/Teal - Secondary Actions */
    --accent-color: #FFE66D;
    /* Soft Yellow - Highlights */
    --dark-blue: #292F36;
    /* Text Color (Softer than black) */
    --light-bg: #F7FFF7;
    /* Very light mint background */
    --white: #FFFFFF;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadows */
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius-lg: 20px;
    --radius-md: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Impedir seleção de texto para um feeling mais de "App" nos elementos de UI, mas permitir no geral */
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark-blue);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-top: 50px;
    /* Space for the fixed timer bar */
}

h1,
h2,
h3,
h4,
.brand-logo,
.btn {
    font-family: 'Fredoka One', cursive;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.orange-gradient {
    background: linear-gradient(to bottom, #FF8C00, #E65100);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.black-gradient {
    background: linear-gradient(to bottom, #444, #000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.mobile-break {
    display: none;
}

.highlight {
    color: var(--secondary-color);
    /* Mudando destaque carrossel para mint para não brigar com laranja */
    position: relative;
    display: inline;
}

.carousel-words {
    display: inline-block;
    height: 1.3em;
    overflow: hidden;
    vertical-align: middle;
    margin-left: 5px;
    position: relative;
    top: -3px;
    /* Ajuste para centralizar verticalmente com o restante da frase */
}

.carousel-words span {
    display: block;
    height: 1.3em;
    line-height: 1.3em;
    animation: rotateWords 10s infinite ease-in-out;
    color: var(--secondary-color);
}

@keyframes rotateWords {

    0%,
    20% {
        transform: translateY(0);
    }

    25%,
    45% {
        transform: translateY(-1.3em);
    }

    50%,
    70% {
        transform: translateY(-2.6em);
    }

    75%,
    95% {
        transform: translateY(-3.9em);
    }

    100% {
        transform: translateY(0);
    }
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    /* Content above background shapes */
}

/* --- Countdown Timer Bar --- */
.countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ff0000;
    background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
    color: white;
    text-align: center;
    padding: 12px 0;
    z-index: 2000;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.marquee-container {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 50px;
    padding-left: 20px;
}

.marquee-content span {
    font-size: 0.95rem;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.timer-display {
    background: none;
    padding: 0;
    border-radius: 0;
    margin-right: 20px;
    flex-shrink: 0;
    z-index: 2001;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* --- Floating Background Shapes --- */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    /* Circles/Blobs */
    z-index: 1;
    /* Behind content */
    opacity: 0.6;
    pointer-events: none;
    /* Let clicks pass through */
    transition: transform 0.1s linear;
    /* Smooth movement handled by JS */
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 230, 109, 0.4) 0%, rgba(255, 230, 109, 0) 70%);
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, rgba(78, 205, 196, 0) 70%);
    top: 40%;
    right: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0) 70%);
    bottom: 10%;
    left: 10%;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, rgba(78, 205, 196, 0) 70%);
    top: 15%;
    right: 20%;
}


/* --- Navbar Removida --- */
.navbar {
    display: none;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.hero .btn {
    background: #27ae60;
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
    border-bottom: 4px solid #219150;
}

.hero .btn:hover {
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    transform: translateY(-2px) scale(1.02);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 12px 25px rgba(78, 205, 196, 0.5);
}


.btn-full {
    width: 100%;
    border-radius: var(--radius-md);
}

/* --- Hero Section --- */
.hero {
    /* Gradient handled by bg-shapes now, kept transparent or minimal */
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.subheadline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-mockup {
    margin: 2rem 0;
    display: inline-block;
    perspective: 1000px;
}

.book-cover {
    width: 320px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.book-cover:hover {
    transform: scale(1.02);
}

/* --- Demonstration Section --- */
.demonstration {
    padding: 5rem 0;
    text-align: center;
}

.demonstration h2 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--dark-blue);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.demo-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.demo-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.demo-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: #f0fdfa;
    /* Azul clarinho sutil */
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.demo-item:hover .demo-icon {
    transform: rotate(10deg) scale(1.1);
}

.demo-item h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.demo-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Detalhe decorativo no topo do card ao passar o mouse */
.demo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.demo-item:hover::before {
    transform: scaleX(1);
}

/* --- Ideal For You (Cards) --- */
.ideal-for {
    padding: 5rem 0;
}

.ideal-for h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pain-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pain-card::top {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--secondary-color);
}

.pain-card h4 {
    color: var(--primary-color);
    /* Changed from dark red to primary */
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pain-card p {
    color: #666;
    font-size: 1rem;
}

/* --- What's Included --- */
.whats-included {
    padding: 6rem 0;
    background-color: #f8fafc;
    /* Slighly different background to section out */
    position: relative;
}

.delivery-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.delivery-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.checklist {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checklist li {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.checklist li:hover {
    transform: translateX(10px);
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.checklist li::before {
    content: '';
    width: 28px;
    height: 28px;
    background-color: #2ecc71;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

@media (max-width: 768px) {
    .delivery-card {
        padding: 2.5rem 1.5rem;
    }

    .checklist li {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }
}

/* --- Bonuses --- */
.bonuses {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #FF8C00 0%, #E65100 100%);
    color: white;
    /* Cor base branca para textos na seção laranja */
}

/* Override para o título de bônus na seção laranja */
.bonuses .orange-gradient {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.bonuses .black-gradient {
    background: none;
    -webkit-text-fill-color: var(--dark-blue);
    color: var(--dark-blue);
}

.bonus-title {
    font-size: 3.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.bonus-title span {
    display: inline-block;
}

@media (max-width: 768px) {
    .bonus-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.bonus-card {
    background: white;
    padding: 1rem 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bonus-image-placeholder {
    width: 100%;
    height: 150px;
    background: #f0f0f0;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-tag {
    background: var(--accent-color);
    color: var(--dark-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-card h3 {
    margin-bottom: 2px;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.bonus-card p {
    margin: 0;
    line-height: 1.2;
}

/* --- Expert Author Section --- */
.expert-author {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
}

.expert-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.expert-image {
    flex-shrink: 0;
    width: 320px;
    height: 420px;
    position: relative;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.3);
}

.expert-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--dark-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.expert-info {
    flex-grow: 1;
}

.expert-tag {
    color: #2ecc71;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.expert-info h3 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 0.3rem;
}

.expert-title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.expert-bio p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .expert-card {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 3rem;
        text-align: center;
    }

    .expert-image {
        width: 280px;
        height: 350px;
    }

    .expert-image img {
        box-shadow: 0 15px 30px rgba(46, 204, 113, 0.4);
    }
}

.pricing-timer-box {
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.pricing-timer-box p {
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.large-timer {
    font-family: 'Courier New', monospace;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    align-items: center;
}

/* Card Genérico */
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 300px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    /* Borda sutil */
}

/* --- PACOTE BÁSICO (Efeito de Ancoragem) --- */
/* O objetivo é fazer este parecer uma opção "ok", mas menos atraente visualmente */
.pricing-card:not(.featured) {
    box-shadow: none;
    filter: grayscale(0.2);
    /* Levemente apagado */
    opacity: 0.9;
}

.pricing-card:not(.featured):hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:not(.featured) h3 {
    color: var(--dark-blue);
    /* Equalizado com o pacote completo */
}

.pricing-card:not(.featured) .btn {
    background: #27ae60;
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    color: #fff;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
    font-size: 1.1rem;
    border-bottom: 3px solid #219150;
}

.pricing-card:not(.featured) .btn:hover {
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

/* --- PACOTE COMPLETO (Foco de Venda - Esverdeado/Natural) --- */
.pricing-card.featured {
    border: 3px solid #2ecc71;
    /* Verde Vibrante */
    background: linear-gradient(to bottom, #fff, #f0fff4);
    /* Fundo leve verde */
    transform: scale(1.15);
    /* Aumenta significativamente o tamanho */
    z-index: 10;
    box-shadow: 0 25px 50px rgba(46, 204, 113, 0.25);
    /* Sombra Verde */
    padding-top: 3.5rem;
    /* Espaço para o badge */
}

/* Badge de "Melhor Valor" */
.best-value-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffcc00;
    /* Dourado/Amarelo Alerta - Mantido para Destaque */
    background: linear-gradient(45deg, #FFD700, #FFA502);
    color: var(--dark-blue);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 165, 2, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Preços */
.price {
    font-size: 3.5rem;
    /* Leve redução para garantir que caiba em uma linha */
    font-weight: 800;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(180deg, #27ae60 0%, #1e8449 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #27ae60;
    margin: 1rem 0;
    font-family: 'Fredoka One', cursive;
    text-shadow: none;
    white-space: nowrap;
    /* Impede quebra de linha */
}

.price span.currency {
    font-size: 1.5rem;
    -webkit-text-fill-color: #27ae60;
}

.price small {
    font-size: 1.5rem;
    color: #27ae60;
    -webkit-text-fill-color: #27ae60;
    /* Reset fill color for small text if nested */
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}

/* Botão de Ação do Pacote Completo */
.pricing-card.featured .btn-full {
    background: #27ae60;
    /* Verde Sucesso/Dinheiro */
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    font-size: 1.1rem;
    /* Reduzido para caber em uma linha */
    padding: 20px 15px;
    /* Padding lateral ajustado */
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
    animation: pulse-green 2s infinite;
    border-bottom: 4px solid #219150;
    /* Efeito 3D de botão clicável */
    width: 100%;
    display: block;
    white-space: nowrap;
    /* Garante uma linha */
}

.pricing-card.featured .btn-full:active {
    transform: translateY(2px);
    border-bottom: 0;
    margin-top: 4px;
    /* Move para baixo ao clicar */
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7);
    }

    70% {
        transform: scale(1.05);
        /* Leve aumento no pulso */
        box-shadow: 0 0 0 15px rgba(46, 213, 115, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0);
    }
}

.pulse-green {
    animation: pulse-green 2s infinite !important;
}

/* Bonus Dropdown */
.bonus-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0.5rem 0;
    transition: color 0.2s;
}

.bonus-toggle::before {
    content: '✔️ ▶';
    font-size: 0.8rem;
    display: inline-block;
    color: #666;
    margin-right: 5px;
}

/* Criamos um container para a seta poder girar sem girar o check */
.bonus-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0.5rem 0;
    transition: color 0.2s;
    position: relative;
    padding-left: 25px;
    /* Espaço para o check e seta */
}

/* Reposicionando o conteúdo do before para agir como ícone fixo e ícone móvel */
.bonus-toggle::before {
    content: '✔️';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.bonus-toggle::after {
    content: '▶';
    position: absolute;
    left: 18px;
    font-size: 0.6rem;
    transition: transform 0.2s;
    color: #666;
}

.bonus-toggle.active::after {
    transform: rotate(90deg);
}

.bonus-list-dropdown {
    list-style: none;
    padding-left: 1.5rem;
    display: none;
    margin-bottom: 1rem;
    text-align: left;
}

.bonus-list-dropdown li {
    color: #27ae60;
    font-size: 0.85rem;
    /* Reduzido de 0.95rem */
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bonus-list-dropdown li::before {
    content: '🎁';
    font-size: 1rem;
}

/* Listas de itens */
.pricing-card ul li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5rem;
}

.pricing-card.featured ul li {
    border-bottom: 1px dashed rgba(46, 204, 113, 0.3);
    /* Linha Verde */
    font-weight: 600;
}

/* --- FAQ --- */
.faq {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-blue);
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    background: white;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: #666;
}

.icon {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* --- Testimonials --- */
.testimonials {
    padding: 6rem 0;
    background-color: #f9f9f9;
    /* Fundo levemente cinza para contraste */
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--dark-blue);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 10px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-card .author strong {
    display: block;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.testimonial-card .author span {
    font-size: 0.9rem;
    color: #888;
}

/* --- Footer --- */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    font-size: 0.9rem;
}


/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-green-static {
    background-color: #27ae60;
    background-image: linear-gradient(to bottom, #2ecc71, #27ae60);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
    border-bottom: 4px solid #219150;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-green-static:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
        /* Mais espaço para a barra com letreiro no mobile */
    }

    .countdown-bar {
        font-size: 0.8rem;
        padding: 8px 0;
        height: auto;
    }

    .marquee-content {
        animation: marquee 20s linear infinite;
        /* Mais rápido no mobile por ter menos espaço */
        gap: 30px;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 2.3rem;
        /* Reduzido para caber em 2 linhas no mobile */
        line-height: 1.1;
        padding: 0 10px;
    }

    .mobile-break {
        display: block;
    }

    .subheadline {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .book-cover {
        width: 260px;
        /* Versão menor da imagem no mobile */
    }

    .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 90%;
    }

    .pricing-timer-box {
        padding: 1.5rem 1rem;
        margin: 0 15px 2rem;
    }

    .large-timer {
        font-size: 2.2rem;
        /* Timer menor para caber na largura do celular */
    }

    .pricing-container {
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 0 10px;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4 {
        opacity: 0.2;
        display: none;
        /* Remove formas flutuantes no mobile para melhorar performance e foco */
    }

    .checklist {
        padding: 1rem;
        margin: 1.5rem 10px;
    }
}

/* --- Social Proof Notification --- */
.notification-container {
    position: fixed;
    top: 100px;
    /* Adjusted to clear countdown bar and header */
    right: 20px;
    z-index: 9999;
    pointer-events: none;
    /* Allow clicks through the container */
}

.notification-toast {
    background: white;
    padding: 12px 16px;
    /* Reduzido 20% */
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    /* Reduzido */
    width: 256px;
    /* Reduzido 20% de 320px */
    border-left: 4px solid var(--secondary-color);
    /* Leve ajuste na borda */
    margin-bottom: 8px;
    animation: slideIn 0.5s ease-out forwards, fadeOut 0.5s ease-in 4.5s forwards;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: auto;
    /* Re-enable clicks on the toast itself */
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.notification-icon {
    font-size: 1.6rem;
    /* Reduzido 20% */
}

.notification-content p {
    margin: 0;
    font-size: 0.75rem;
    /* Reduzido de 0.9rem */
    color: #666;
    line-height: 1.3;
}

.notification-content strong {
    color: var(--dark-blue);
    font-weight: 700;
}

.notification-time {
    font-size: 0.75rem;
    color: #999;
    display: block;
    margin-top: 3px;
}