:root {
    --dark-bg: #0A1C2D;
    --light-bg: #F4EFE6;
    --accent-gold: #C9A86A;
    --accent-gold-intense: #20710c;
    --accent-blue: #153A52;
    --accent-red: #6A2E35;
    --green-check: #22c55e;
    --text-light: #F4EFE6;
    --text-dark: #111111;
    --text-gray: #333333;
    --text-gray-light: #8E8E8E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section.fold {
    padding: 60px 0;
}

@media (min-width: 1024px) {
    section.fold {
        padding: 80px 0;
    }
}

.dark-bg {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.light-bg {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.text-dark {
    color: var(--text-dark) !important;
}

.bold {
    font-weight: 700;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.light-bg .section-title {
    color: var(--accent-blue);
}

/* DOBRA 1: HEADLINE */
.fold-1-headline {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
	margin-bottom: -85px;
}

.product-name {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.main-headline {
    font-size: 1.8rem;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-gray-light);
    max-width: 700px;
    margin: 0 auto;
}

.antonio  { 
	margin: 0 auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain; /* ou cover */
}

@media (min-width: 768px) {
    .main-headline {
        font-size: 3.5rem;
    }
}

/* DOBRA 2: PROVA SOCIAL */
.fold-2-social {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.print-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    font-style: italic;
    color: var(--text-gray);
}

@media (min-width: 640px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* DOBRA 3: PEDRA NO SAPATO */
.fold-3-pain .voice-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.voice-card {
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--accent-gold);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-light);
}

/* DOBRA 4: DIAGNÓSTICO */
.fold-4-diagnosis {
    text-align: center;
}

.small-highlight {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.text-block {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.diagnosis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 3rem;
}

.diagnosis-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.diagnosis-card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-red); /* Using red as accent for contrast/pain points */
    font-size: 1.2rem;
}

.cta-text-highlight {
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .diagnosis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DOBRA 5: MODO DE PREPARO */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step-card {
    background: rgba(255,255,255,0.03);
    padding: 24px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.step-card p {
    color: var(--text-gray-light);
    font-size: 0.95rem;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* DOBRA 6: ENTREGÁVEIS */
.fold-6-deliverables {
    text-align: center;
}

.section-top-text {
    margin-bottom: 2rem;
}

.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.deliverable-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}

.deliverable-item:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--green-check);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* DOBRA 7: PRA QUEM É */
.who-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.who-item {
    background: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.who-summary {
    background: rgba(201, 168, 106, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    max-width: 600px;
    margin: 2rem auto 0;
}

@media (min-width: 768px) {
    .who-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DOBRA 8: ANCORAGEM */
.price-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.price-row:last-child {
    border-bottom: none;
}

.price-val {
    font-weight: 700;
    color: var(--accent-gold-intense);
    text-decoration: line-through;
    margin-right: 1rem;
    min-width: 80px;
}

.price-desc {
    flex-grow: 1;
    text-align: right;
    color: var(--text-gray);
}

.price-row.total-row {
    background: var(--dark-bg);
}

.price-val.total, .price-desc.total {
    color: var(--text-light);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 700;
}

/* DOBRA 9: PREÇO + BOTÃO */
.fold-9-offer {
    text-align: center;
}

.pre-offer-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.offer-card {
    background: var(--accent-blue);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 40px 20px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 3rem;
}

.offer-title {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #fff;
    margin-bottom: 0.5rem;
}

.offer-price .currency {
    font-size: 1.5rem;
    margin-right: 5px;
}

.offer-price .value {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.payment-method {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-gold-intense);
    color: var(--text-light);
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #e6c57f;
}

.badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.how-it-works {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.how-it-works h3 {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.how-it-works ol {
    list-style-position: inside;
    color: var(--text-gray-light);
}

/* DOBRA 10: CONVERSA SÉRIA */
.fold-10-serious {
    text-align: center;
}

.serious-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.serious-text.highlight {
    font-weight: 700;
    color: var(--accent-red);
}

/* DOBRA 11: AUTORIDADE */
.authority-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.authority-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-gray-light);
}

.authority-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
    margin: 2rem auto;
    display: inline-block;
    text-align: left;
}

.authority-photo img {
    width: 100%;
    height: auto;
    border-radius: 50px; /* opcional - deixa mais elegante */
    display: block;
}


.fold-11-authority .cta-button {
    max-width: 500px;
}

.fold-11-authority .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* DOBRA 12: FAQ + RODAPÉ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 24px;
    background: none;
    border: none;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.faq-answer {
    padding: 0 24px 16px;
    color: var(--text-gray);
    display: none;
}

.faq-answer p {
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.main-footer {
    background: #050f19; /* Even darker than dark-bg */
    color: rgba(255,255,255,0.5);
    padding: 60px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.main-footer h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-divider {
    height: 1px;
    width: 50px;
    background: rgba(255,255,255,0.1);
    margin: 2rem auto;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
}




