/* ==========================================
   RESET & CONFIGURAÇÕES GLOBAIS (COM NOVA FONTE)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0c0b0b;
    color: #fcf8f5;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 15px 10px;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

/* ==========================================
   CONTAINER PRINCIPAL E TELAS (.screen)
   ========================================== */
.main-card {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(145deg, #181616 0%, #121010 100%);
    border-radius: 12px;
    border: 1px solid #4a3c35;
    padding: 28px 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 163, 115, 0.05);
    position: relative;
    overflow: hidden;
}

.screen {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.screen.active {
    display: block;
    opacity: 1;
}

/* ==========================================
   LOGO SUPERIOR
   ========================================== */
.logo-brand {
    text-align: center;
    margin-bottom: 22px;
}

.logo-brand img {
    max-width: 110px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 163, 115, 0.2));
}

/* ==========================================
   TELA 1: BOAS-VINDAS (MAIS LIMPA E DIRETA)
   ========================================== */
.welcome-subtitle {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #f28482;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.welcome-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.highlight-rose {
    color: #f28482;
    text-shadow: 0 0 15px rgba(242, 132, 130, 0.2);
}

/* Reduzimos o bloco de promessas para ficar leve e sem excesso de linhas */
.promises-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 163, 115, 0.15);
    padding: 16px 12px;
    border-radius: 8px;
}

.promise-line {
    font-style: normal; /* Removido o itálico excessivo para limpar o visual */
    color: #f3ede2;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.arrows-indicator {
    text-align: center;
    color: #e9c46a;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    animation: bounceArrows 1.5s infinite ease-in-out;
}

@keyframes bounceArrows {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ==========================================
   BOTÕES E ELEMENTOS DE PROGRESSO
   ========================================== */
.btn-custom-primary {
    width: 100%;
    background: linear-gradient(135deg, #f28482 0%, #e07a5f 50%, #bc6c25 100%);
    color: #ffffff;
    border: 1px solid #ffd166;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(242, 132, 130, 0.35);
    letter-spacing: 0.5px;
}

.btn-custom-primary:hover {
    background: linear-gradient(135deg, #f59a98 0%, #e58a6f 50%, #c97831 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 132, 130, 0.5);
}

.btn-pulsing {
    animation: pulseButton 2s infinite ease-in-out;
}

@keyframes pulseButton {
    0% { transform: scale(1); box-shadow: 0 6px 20px rgba(242, 132, 130, 0.35); }
    50% { transform: scale(1.02); box-shadow: 0 8px 25px rgba(242, 132, 130, 0.6); }
    100% { transform: scale(1); box-shadow: 0 6px 20px rgba(242, 132, 130, 0.35); }
}

.progress-bar-custom {
    width: 100%;
    height: 6px;
    background-color: #262220;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e07a5f, #f28482);
    width: 0%;
    transition: width 0.3s ease;
}

.welcome-progress {
    width: 15%;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #e9c46a;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================
   TELA 2 E 3: QUIZ
   ========================================== */
.quiz-question-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
}

.quiz-option-btn {
    background: linear-gradient(145deg, #221e1d, #1a1716);
    color: #fcf8f5;
    border: 1px solid #4a3c35;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 12px;
    outline: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media (hover: hover) {
    .quiz-option-btn:hover {
        background: linear-gradient(145deg, #2d2725, #221e1d);
        border-color: #f28482;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(242, 132, 130, 0.2);
    }
}

.quiz-option-btn:active {
    background-color: #35302d;
    border-color: #f28482;
}

/* ==========================================
   TELA 4 E VENDAS DIRETA
   ========================================== */
.sales-intro, .sales-desc {
    font-size: 14px;
    color: #f3ede2 !important;
}

.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: linear-gradient(90deg, #bc6c25, #e07a5f);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.urgency-banner span {
    background: #121010;
    color: #ffd166;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    border: 1px solid rgba(255, 209, 102, 0.4);
}

.subtitle-top {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #f28482;
    font-weight: 700;
    margin-bottom: 8px;
}

.rose-text {
    color: #f28482;
    text-shadow: 0 0 15px rgba(242, 132, 130, 0.25);
}

.description-days {
    font-size: 12px;
    color: #ffd166;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.book-container {
    position: relative;
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.book-container::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(242, 132, 130, 0.25) 0%, rgba(12, 11, 11, 0) 70%);
    z-index: 1;
}

.mockup-book {
    max-width: 150px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

.quote-box {
    background: linear-gradient(145deg, #221e1d, #1a1716);
    border-left: 4px solid #f28482;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    text-align: left;
    margin-bottom: 20px;
    color: #fcf8f5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    line-height: 1.5;
}

.quote-box strong {
    color: #ffd166;
    display: block;
    margin-top: 6px;
    font-size: 14px;
}

.main-text {
    font-size: 13px;
    color: #f3ede2;
    line-height: 1.6;
    margin-bottom: 22px;
    text-align: left;
}

.faq-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e9c46a, transparent);
    margin: 30px 0;
}

.cta-button {
    position: relative;
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #f28482 0%, #e07a5f 50%, #bc6c25 100%);
    border-color: #ffd166;
    color: #ffffff;
    text-align: center;
    padding: 18px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(242, 132, 130, 0.4);
    margin-bottom: 22px;
    transition: all 0.2s ease;
    border-bottom: 6px solid #8d3822;
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(135deg, #f59a98 0%, #e58a6f 50%, #c97831 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 132, 130, 0.6);
    color: #ffffff;
}

.cta-button:active {
    transform: translateY(2px);
    border-bottom-width: 3px;
}

.section-bonus-header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #ffd166;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
}

h2 {
    font-size: 23px;
    font-weight: 800;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    line-height: 1.25;
}

h2 span {
    color: #f28482;
    display: block;
}

.divider {
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #f28482, #ffd166);
    margin: 10px 0 20px 0;
    border-radius: 2px;
}

.bonus-intro {
    font-size: 13px;
    color: #f3ede2;
    text-align: left;
    margin-bottom: 16px;
    line-height: 1.5;
}

.card {
    background: linear-gradient(145deg, #221e1d, #1a1716);
    border: 1px solid #4a3c35;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card:hover {
    border-color: #f28482;
    transform: translateY(-2px);
}

.card-img {
    width: 45px;
    height: auto;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.card-content .tag {
    font-size: 10px;
    text-transform: uppercase;
    color: #ffd166;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.card-content h3 {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-content p {
    font-size: 12px;
    color: #d1c7bd;
    margin: 0;
    line-height: 1.4;
}

.bundle {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 16px 0;
    filter: drop-shadow(0 20px 40px rgba(242, 132, 130, .15));
}

.result-item {
    background: linear-gradient(145deg, #201c1b, #171413);
    border: 1px solid #4a3c35;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    position: relative;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.result-item span {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #f28482;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(242, 132, 130, 0.2);
}

.result-item h3 {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

.result-item p {
    font-size: 13px;
    color: #f3ede2;
    margin: 0;
    line-height: 1.5;
}

.lightning-box {
    background: linear-gradient(145deg, #221e1d, #1a1716);
    border: 2px solid #ffd166;
    border-radius: 8px;
    padding: 22px 18px;
    text-align: left;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(255, 209, 102, 0.1);
}

.lightning-title {
    font-size: 13px;
    font-weight: 800;
    color: #ffd166;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: 1px;
}

.lightning-subtitle {
    font-size: 12px;
    color: #f3ede2;
    text-align: center;
    margin-bottom: 16px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-item {
    font-size: 13px;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    font-weight: 500;
}

.checklist-item span {
    color: #ffd166;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.offer-box {
    background: linear-gradient(145deg, #221e1d, #1a1716);
    border: 1px solid #4a3c35;
    border-radius: 8px;
    padding: 25px 18px;
    text-align: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.old-price {
    font-size: 13px;
    color: #bfaea5;
    text-decoration: line-through;
    font-weight: 600;
}

.price {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 6px 0;
    text-shadow: 0 0 20px rgba(255, 209, 102, 0.2);
}

.price-sub {
    font-size: 12px;
    color: #f3ede2;
}

.security-badge {
    display: block;
    font-size: 11px;
    color: #ffd166;
    margin-top: 10px;
    font-weight: 600;
}

.guarantee-box {
    background: linear-gradient(145deg, #221e1d, #1a1716);
    border: 1px solid #4a3c35;
    border-radius: 8px;
    padding: 22px;
    text-align: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.guarantee-tag {
    font-size: 10px;
    text-transform: uppercase;
    color: #ffd166;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.guarantee-box h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.guarantee-box p {
    font-size: 12px;
    color: #f3ede2;
    margin: 0;
    line-height: 1.5;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    width: 100%;
}

.faq-item {
    background: linear-gradient(145deg, #221e1d, #1a1716);
    border: 1px solid #4a3c35;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.faq-question {
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 16px;
    color: #f28482;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    font-size: 12px;
    color: #f3ede2;
    line-height: 1.6;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.instagram-print-container,
.instagram-print-container img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
