:root {
    --bg-color: #F3F4F6;
    --card-bg: #FFFFFF;
    --primary-text: #111111;
    --secondary-text: #4B5563;
    /* Cinza médio para subtextos */
    --accent-green: #22C55E;
    /* Verde botão continuar */
    --accent-green-hover: #16A34A;
    --option-bg: #FEF2F2;
    /* Fundo suave das opções */
    --option-border: #EADEDE;
    /* Borda das opções */
    --option-shadow: #D8CCCC;
    /* Sombra sólida das opções */
    --option-text: #111111;
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --border-radius: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--primary-text);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Progress filling whole top */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    /* Mais grossa */
    background-color: #E2E8F0;
    /* Light gray base */
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background-color: #22C55E;
    /* Verde forte */
    width: 0%;
    transition: width 0.3s ease;
}

.app-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    /* Ajuste para não ter sobreposição da barra e ficar bem ao topo */
    padding-top: 30px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alinhar ao topo, não centralizar */
}

/* Header (Simplificado/Removido conforme referência) */
.quiz-header {
    display: none;
}

.logo {
    display: none;
}

/* Quiz Content */
.quiz-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alinhar ao topo */
    padding-top: 10px;
    /* Pequeno espaçamento do topo apenas */
}

.question-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-text {
    font-size: 1.5rem;
    /* ~24px */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-text);
    line-height: 1.3;
}

/* Reduzindo espaçamentos para ficar mais compacto */
.subtext {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
    /* Reduzido de 2rem */
    font-weight: 400;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    /* Reduzido de 12px */
    width: 100%;
}

/* Grid de 2 Colunas (para perguntas específicas) */
.options-grid.two-columns {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Botões de Opção estilo "Mivvo/App" */
.option-btn {
    background-color: var(--option-bg);
    border: 2px solid var(--option-border);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    /* Reduzido de 16px 20px */
    text-align: left;
    color: var(--option-text);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: transform 0.1s, background-color 0.2s;
    /* Visual Tátil/3D */
    box-shadow: 0px 4px 0px 0px var(--option-shadow);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Alinhar ao início */
    gap: 12px;
    /* Espaço entre ícone e texto */
    margin-bottom: 0px;
    /* Reduzido */
}

/* ...rest of existing styles until loading screen... */

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    text-align: center;
    padding: 20px;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.loading-bar-container {
    width: 100%;
    max-width: 300px;
    height: 10px;
    background-color: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--accent-green);
    border-radius: 10px;
    transition: width 0.1s linear;
}

/* Círculo visual (Check/Radio) à esquerda */
.option-btn::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #CBD5E1;
    border-radius: 50%;
    /* Círculo como no print */
    background: white;
    flex-shrink: 0;
    transition: all 0.2s;
}

.option-btn.selected::before {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    /* Opcional: Adicionar um checkmark SVG dentro se quiser, ou apenas preencher */
}

.option-btn:hover {
    transform: translateY(1px);
    box-shadow: 0px 3px 0px 0px var(--option-shadow);
    background-color: #FFF5F5;
}

.option-btn:active,
.option-btn.selected {
    transform: translateY(4px);
    box-shadow: 0px 0px 0px 0px var(--option-shadow);
    /* Sombra desaparece ao clicar */
    border-color: #FECACA;
    /* Um tom um pouco mais escuro de rosa/vermelho */
    background-color: #FEF2F2;
}

/* Remover o after antigo se existir */
.option-btn.multi-select::after {
    display: none;
}

/* CTA Button (Continuar) */
.cta-button {
    background-color: var(--accent-green);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    width: 100%;
    margin-top: 24px;
    box-shadow: 0px 4px 0px 0px #15803D;
    /* Sombra verde escura */
    transition: transform 0.1s;
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: none;
}

/* Book Choice Layout - Grid de 2 colunas */
.options-grid.book-choice {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.book-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    height: 100%;
    justify-content: flex-start;
}

.book-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background-color: #E2E8F0;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Para imagem não vazar */
}

.book-cover-placeholder img,
.book-cover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Respeita a proporção sem cortar */
    display: block;
}

/* Sales Page Styles */
.sales-page {
    background-color: white;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.sales-page.hidden {
    display: none;
}

.hero-header {
    background-color: #F97316;
    /* Laranja vibrante do header de resultado */
    color: white;
    padding: 30px 20px;
    border-radius: 0 0 24px 24px;
    text-align: center;
    margin-bottom: 30px;
}

.hero-header h1 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.2;
}

.sales-content {
    padding: 0 20px 40px;
}

.vsl-wrapper {
    margin-bottom: 30px;
}

.benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--primary-text);
}

.check-icon {
    background-color: #DCFCE7;
    /* Verde claro fundo */
    color: #16A34A;
    /* Verde icone */
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.testimonial-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #FBBF24;
    /* Amarelo ouro */
    margin-bottom: 8px;
}

.offer-box {
    background-color: #F3F4F6;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin: 40px 0;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin: 10px 0;
    display: block;
}

.guarantee-seal {
    width: 80px;
    margin: 20px auto;
    display: block;
}

/* FAQ Styles */
.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 16px 0;
}

.faq-question {
    font-weight: 600;
    color: #111;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding: 0;
    font-size: 1rem;
    cursor: pointer;
}


.faq-answer {
    padding-top: 12px;
    color: #4B5563;
    line-height: 1.5;
    display: none;
}

/* Start Page Styles - Compact/Optimized for Mobile Viewport */
/* Start Page Styles - Compact/Optimized for Mobile Viewport */
.start-page {
    text-align: center;
    padding: 20px 0 60px;
    /* Padding ajustado */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alinha tudo ao topo em sequência */
    gap: 20px;
    /* Espaço consistente entre blocos */
}

/* Container para textos superiores */
.start-content-wrapper {
    flex-grow: 0;
    /* Não cresce mais que o conteúdo */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    /* Remove padding extra do topo */
}

.main-headline {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    /* Fonte responsiva */
    font-weight: 800;
    line-height: 1.2;
    margin-top: 0;
    /* Começar do topo */
    margin-bottom: 8px;
}

.sub-headline {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
    line-height: 1.3;
}

.description-text {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-box {
    background-color: #FECACA;
    color: #991B1B;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.mockup-container {
    margin: 0;
    width: 100%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    /* Importante: permitir que a imagem encolha se a tela for pequena */
    flex-shrink: 1;
    min-height: 0;
    /* Necessário para Flexbox scrolling/shrinking */
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-img {
    max-width: 100%;
    max-height: 35vh;
    /* Reduzido para dar espaço ao botão */
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#startBtn {
    margin-top: 15px;
    margin-bottom: 20px;
    /* Margem de segurança pro fundo */
    width: 100%;
    padding: 18px 20px;
    /* Botão gordo e clicável */
    flex-shrink: 0;
    /* Nunca encolher o botão */
}

/* --- NEW SALES PAGE STYLES --- */

/* Result Box (Orange) */
/* Result Box (Orange) */
.result-box {
    background-color: #F97316;
    /* Laranja conforme print */
    border-radius: 12px;
    padding: 24px 20px;
    /* Mais espaço interno */
    text-align: center;
    margin-top: 20px;
    /* Não colar no topo */
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
    max-width: 85%;
    /* Encurtado horizontalmente */
    margin-left: auto;
    margin-right: auto;
}

.result-title {
    color: #111827;
    /* Texto Preto */
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
}

/* Sales Intro & Checklist */
.sales-intro {
    margin-bottom: 30px;
}

.intro-bold {
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    font-size: 1rem;
}

.intro-text {
    color: #374151;
    margin-bottom: 20px;
    font-size: 1rem;
}

.checklist-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-emoji {
    font-size: 1.2rem;
    line-height: 1;
}

.check-item span {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

/* VSL Section */
.vsl-headline {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    line-height: 1.4;
}

.vsl-wrapper {
    margin-bottom: 40px;
}

.vsl-container-resume {
    background-color: #84CC16;
    /* Verde "Lime" do print */
    border-radius: 8px;
    height: 220px;
    /* Altura do player simulado */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    text-align: center;
}

.vsl-resume-text {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.vsl-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 280px;
}

.vsl-btn-resume {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.vsl-btn-restart {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    opacity: 0.9;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 40px;
}

.highlight-block {
    margin-bottom: 20px;
    line-height: 1.6;
}

.highlight-yellow {
    background-color: #FEF08A;
    /* Amarelo marca-texto */
    padding: 2px 6px;
    font-weight: 700;
    color: #111;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.sub-title-bold {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}

.welcome-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.lusty-purple {
    color: #111;
    /* Preto base */
}

.books-lilac {
    color: #A855F7;
    /* Roxo/Lilás vibrante */
}

.collage-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Comparison Section */
.value-text-block {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.value-text {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.5;
}

.emotional-text {
    font-size: 0.95rem;
    color: #4B5563;
    font-style: italic;
    margin-bottom: 24px;
}

.access-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    /* Azul escuro quase preto */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.comparison-intro {
    text-align: center;
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 30px;
    background-color: #F3F4F6;
    padding: 16px;
    border-radius: 8px;
}

.comparison-container {
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    /* Mobile first stack */
    gap: 0;
}

/* Competitors Column */
.comp-column {
    padding: 24px 20px;
    text-align: center;
}

.comp-column.competitors {
    background-color: #FFF;
    border-bottom: 1px solid #E5E7EB;
}

.comp-column.lusty {
    background-color: #F0FDF4;
    /* Verde bem claro */
}

.comp-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 800;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.comp-badge.bad {
    background-color: #EF4444;
    /* Vermelho */
}

.comp-badge.good {
    background-color: #16A34A;
    /* Verde */
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comp-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bad-list li {
    color: #4B5563;
}

.good-list li {
    color: #111827;
    font-weight: 500;
}

.x-icon {
    color: #EF4444;
    /* Vermelho X */
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
}

.check-icon-green {
    color: #16A34A;
    /* Verde Check */
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
}

.brand-logo-small {
    margin-bottom: 10px;
}

.lusty-text {
    background-color: #111;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
}

/* Themes Section */
.themes-section {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-dark {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.theme-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.theme-featured-img {
    max-width: 80%;
    /* Reduzido conforme pedido */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.collage-img {
    max-width: 70%;
    /* Reduzido conforme pedido */
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

/* Testimonials New Style */
.testimonials-section {
    margin-bottom: 50px;
}

.testimonials-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.testimonial-card-new {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-avatar-green {
    width: 40px;
    height: 40px;
    background-color: #D1FAE5;
    /* Verde claro Avatar */
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Benefits with Mockup */
.benefits-mockup-section {
    background-color: #F8FAFC;
    /* Fundo levemente cinza */
    padding: 30px 20px 0;
    border-radius: 16px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #1F2937;
    font-weight: 500;
}

.check-box-filled {
    background-color: #22C55E;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 0.9rem;
}

.mockup-side {
    text-align: center;
    margin-top: 10px;
}

.mockup-bundle-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

/* Unlock Section */
.unlock-section {
    text-align: center;
    margin-bottom: 50px;
}

.unlock-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 8px;
}

.unlock-subtitle {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 30px;
}

.clean-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clean-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.check-circle-soft {
    width: 32px;
    height: 32px;
    background-color: #D1FAE5;
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.clean-card span {
    font-weight: 600;
    color: #1F2937;
    font-size: 0.95rem;
}

/* Scarcity Timer Bar */
.scarcity-container {
    margin-bottom: 20px;
}

.scarcity-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
    color: #6B7280;
    margin-bottom: 8px;
}

.timer-red {
    color: #EF4444;
    font-weight: 800;
}

.progress-bg {
    background-color: #E5E7EB;
    height: 10px;
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar-red {
    background-color: #EF4444;
    height: 100%;
    border-radius: 50px;
}

/* Offer Box New */
.offer-box-new {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.special-offer-tag {
    background-color: #E879F9;
    /* Rosa chiclete */
    color: white;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}

.old-price {
    text-decoration: line-through;
    color: #9CA3AF;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.installments-text {
    font-weight: 700;
    color: #374151;
    font-size: 1.1rem;
    margin: 0;
}

.big-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #111827;
    margin: 0;
    line-height: 1;
}

.cash-price {
    color: #6B7280;
    font-weight: 600;
    margin-top: 4px;
}

.cta-button-green {
    background-color: #22C55E;
    /* Verde Botão */
    color: white;
    border: none;
    border-radius: 8px;
    /* Borda menos redonda */
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.4);
    cursor: pointer;
    transition: transform 0.1s;
}

.cta-button-green:active {
    transform: scale(0.98);
}

/* Guarantee Section */
.guarantee-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.guarantee-seal-big {
    width: 140px;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 0.95rem;
    color: #1F2937;
    line-height: 1.5;
    font-weight: 500;
}

/* Comparison Section (Landing Page Style) */
.compare-section-new {
    padding: 40px 20px;
    background: #f5f5f5;
    margin: 30px -20px;
    /* Estica para fora do container */
}

/* Logos Topo */
.compare-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.logos-left img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.logos-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-brand {
    background: #2a2a2a;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.logo-brand span {
    color: #e91e63;
}

/* Tabela Comparação */
.compare-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* Force 2 colunas sempre */
    gap: 10px;
    /* Gap menor para caber melhor */
    margin-bottom: 30px;
}

.compare-column {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    min-width: 0;
    /* Permite que o conteúdo encolha */
}

.column-header {
    padding: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: white;
}

.column-header.bad {
    background: #FE0000;
}

.column-header.good {
    background: #15830D;
}

.compare-items {
    padding: 6px 5px;
    /* Padding menor */
}

.compare-item {
    display: flex;
    align-items: flex-start;
    padding: 2px 0;
    font-size: 10px;
    /* Menor para caber lado a lado */
    color: #333;
    line-height: 1.3;
    font-weight: 700;
    word-break: break-word;
    /* Quebra palavras longas */
}

.x-mark {
    color: #e74c3c;
    font-weight: 800;
    font-size: 14px;
    /* Menor */
    margin-right: 5px;
    /* Margem menor */
    flex-shrink: 0;
}

.check-mark {
    color: #27ae60;
    font-weight: 800;
    font-size: 14px;
    /* Menor */
    margin-right: 5px;
    /* Margem menor */
    flex-shrink: 0;
}

/* Ajustes finos para Mobile Book Choices (Tamanho Real) */

@media (max-width: 600px) {
    .options-grid.book-choice {
        gap: 12px;
        /* Espaço entre as duas colunas */
    }

    .book-option {
        min-height: 350px;
        /* Garante que o card seja alto o suficiente */
        height: auto;
        /* Permite crescer */
    }

    .book-cover-placeholder {
        flex-grow: 1;
        /* Ocupa todo espaço vertical disponível acima do label */
        height: auto;
        min-height: 0;
        /* Permite encolher se necessário mas flex-grow expande */
    }

    .book-cover-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Cobre todo o espaço do placeholder */
        object-position: top center;
        /* Foca no topo da capa */
    }

    .book-option-label {
        font-size: 0.9rem;
        padding: 12px 4px;
        background: #22C55E;
        /* Verde sólido vibrante */
        width: 100%;
        margin-top: 0;
        /* Cola na imagem */
        border-radius: 0 0 12px 12px;
        /* Arredonda só em baixo */
    }
}

/* --- Otimização Compacta para Mobile --- */
.clean-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Espaço reduzido entre cards */
    margin-top: 20px;
}

.clean-card {
    padding: 10px 14px;
    /* Card mais fino verticalmente */
    background-color: #F3F4F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    /* Centralizado verticalmente */
    gap: 10px;
}

.clean-card span {
    font-size: 0.95rem;
    /* Texto legível */
    line-height: 1.3;
    color: #374151;
}

.check-circle-soft {
    width: 22px;
    height: 22px;
    background-color: #DCFCE7;
    color: #16A34A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Ajuste Mockup App - Já feito via inline, mas garantindo aqui */
.mockup-bundle-img {
    max-width: 60%;
    margin: 0 auto;
    display: block;
}

/* Ajuste Timer */
.timer-red {
    font-weight: 800;
    color: #EF4444;
    font-family: monospace;
    /* Fonte monoespaçada evita pulos */
}

/* --- EXIT INTENT MODAL --- */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85); /* Dark background */
    z-index: 3000;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.exit-modal-content {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    max-width: 450px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #9CA3AF;
    cursor: pointer;
    line-height: 1;
}

.modal-header h2 {
    color: #DC2626; /* Dark Red Alert */
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.modal-text {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-offer {
    background-color: #FEF2F2;
    border: 2px dashed #EF4444;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 24px;
    color: #B91C1C;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Specific class for modal button to avoid conflict/missing styles */
.modal-cta {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background-color: #22C55E;
    color: white;
    font-weight: 800;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 0 #15803D;
    transition: transform 0.1s;
    border: none;
    cursor: pointer;
}

.modal-cta:active {
    transform: translateY(4px);
    box-shadow: none;
}

.modal-close-text {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
}