/* Base Styles - Mobile First */
:root {
    --color-primary: #f59e0b; /* Amber/Orange for CTA */
    --color-primary-hover: #d97706;
    --color-bg: #ffffff;
    --color-bg-light: #f9f9f9;
    --color-text-main: #111111;
    --color-text-muted: #444444;
    --color-border: #e5e7eb;
    
    --font-main: 'Inter', system-ui, -apple-system, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Evita zoom de texto em celulares antigos */
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 18px; /* Larger base font for readability */
    text-align: center; /* Global centering as requested */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

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

.section-header {
    margin-bottom: 40px;
}

h1, h2, h3 {
    line-height: 1.25;
    font-weight: 800;
}

h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.section-header p {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Promo Banner */
.top-promo-banner {
    background-color: #ef4444; /* Red color */
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
}

/* CTA Button */
.cta-wrapper {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.3);
    transition: background-color 0.2s, transform 0.1s;
    width: 100%;
    max-width: 450px;
    white-space: normal;
    line-height: 1.2;
    /* Garante toque fácil em tela pequena */
    min-height: 56px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

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

/* 1ª Dobra: Hero */
.hero-section {
    padding: 40px 0 50px;
    background-color: var(--color-bg);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: var(--color-bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content .subheadline {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.hero-image {
    margin-bottom: 32px;
}

.mockup-placeholder {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-price {
    margin: 0 auto 30px;
    background-color: #fff9f0;
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed var(--color-primary);
    display: inline-block;
}

.old-price {
    display: block;
    font-size: 16px;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.new-price {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: var(--color-text-main);
    line-height: 1;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 30px;
    display: inline-block;
    text-align: left;
}

.hero-bullets li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.micro-text {
    font-size: 16px;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* 2ª Dobra: Roadmap */

/* Carrossel infinito */
.carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 30px 0 40px;
    position: relative;
}

.carousel-track-wrapper::before,
.carousel-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.carousel-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-light), transparent);
}

.carousel-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-light), transparent);
}

.carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll-carousel 30s linear infinite;
    will-change: transform; /* GPU layer para animação suave */
    touch-action: pan-y; /* Permite scroll vertical no mobile sem conflito */
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    width: 240px;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex-shrink: 0;
    margin: 0;
    display: block;
}

@keyframes scroll-carousel {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Para usuários/celulares que pedem menos animação (acessibilidade + CPU fraca) */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        animation: none;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card p {
    color: var(--color-text-muted);
    font-size: 16px;
}

.trust-seals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.trust-seals span {
    font-size: 16px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* 3ª Dobra: Dor */
.pain-text p {
    font-size: 20px;
    margin-bottom: 24px;
}

.chat-bubbles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.bubble {
    background-color: #f1f1f1;
    color: #000;
    padding: 16px 20px;
    border-radius: 20px;
    max-width: 90%;
    font-size: 18px;
    font-weight: 500;
    border-bottom-left-radius: 4px;
}

.pain-list ul {
    list-style: none;
    background-color: #fff5f5;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #fee2e2;
    display: inline-block;
    text-align: left;
}

.pain-list li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.pain-list li:last-child {
    margin-bottom: 0;
}

/* 4ª Dobra: Benefício */
.benefit-text p {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--color-text-muted);
}

.benefit-list ul {
    list-style: none;
    background-color: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    display: inline-block;
    text-align: left;
}

.benefit-list li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}
.benefit-list li:last-child {
    margin-bottom: 0;
}

/* 5ª Dobra: O que tem dentro */
.contents-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.simple-check-list {
    list-style: none;
}

.simple-check-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 18px;
    font-weight: 500;
}

.product-prints h3 {
    font-size: 26px;
    margin-bottom: 24px;
}

.prints-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.prints-grid img {
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* 6ª Dobra: Bônus */
.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bonus-card {
    background-color: var(--color-bg);
    border: 2px dashed var(--color-primary);
    border-radius: 16px;
    padding: 30px 20px 20px;
    position: relative;
}

.bonus-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-text-main);
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.bonus-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* 7ª Dobra: Oferta Empilhada */
.offer-section {
    background-color: var(--color-text-main);
    color: #fff;
    padding: 60px 0;
}

.offer-box {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px 20px;
}

.offer-box h2 {
    color: #fff;
    font-size: 28px;
}

.offer-subtitle {
    font-size: 20px;
    color: #a3a3a3;
    margin-bottom: 24px;
}

.offer-stack {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    background-color: #262626;
    padding: 24px;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
}

.offer-stack li {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}
.offer-stack li:last-child {
    margin-bottom: 0;
}

.offer-box .offer-price {
    margin-bottom: 30px;
}

.offer-box .old-price {
    color: #a3a3a3;
    font-size: 18px;
}

.offer-box .new-price {
    color: #fff;
    font-size: 64px;
}

.trust-seals-small {
    margin-top: 20px;
    font-size: 14px;
    color: #a3a3a3;
}

/* Seta Indicadora Pulsante */
.arrow-down-indicator {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 5px;
    animation: bounce 1.2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Card de Oferta Básica (Mais bonito e integrado) */
.cheap-offer {
    background-color: #1a1a1a !important;
    border: 1px solid #333 !important;
    border-radius: 16px !important;
    padding: 30px 24px !important;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cheap-offer-title {
    font-size: 16px !important;
    color: #a3a3a3 !important;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cheap-offer-stack {
    background-color: #222 !important;
    border: 1px solid #333;
    padding: 16px !important;
    font-size: 15px !important;
    margin-bottom: 20px !important;
    color: #a3a3a3 !important;
    border-radius: 8px !important;
}

.cheap-offer-stack li {
    font-size: 15px !important;
    margin-bottom: 8px !important;
}

.cheap-offer-price {
    margin-bottom: 20px !important;
}

.cheap-offer-price .new-price {
    font-size: 32px !important;
    color: #fff !important;
    font-weight: 800;
}

.cheap-cta-button {
    display: inline-block;
    background-color: transparent;
    color: #a3a3a3;
    border: 1px solid #444;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    width: auto;
    cursor: pointer;
}

.cheap-cta-button:hover {
    background-color: #2a2a2a;
    color: #fff;
    border-color: #666;
}

.cheap-offer-highlight-text {
    margin-top: 25px;
    font-weight: 700;
    color: #f59e0b; /* Amber para manter a paleta do site */
    font-size: 18px;
    margin-bottom: 5px;
}

/* Seta Indicadora Pulsante */
.arrow-down-indicator {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 5px;
    animation: bounce 1.2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Estilos da Oferta Completa (Minimalista e Chamativa) */
.featured-offer-box {
    border: 2px solid var(--color-primary);
    background-color: #1a1a1a;
    position: relative;
    margin-top: 50px !important;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
    z-index: 1;
    overflow: visible;
}

.offer-badge-highlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-primary);
    color: #111;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 10;
    letter-spacing: 1px;
}

.featured-offer-title {
    font-size: 28px !important;
    color: #fff !important;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.featured-offer-stack {
    background-color: #222 !important;
    border: 1px solid #333;
}

.featured-offer-box .new-price {
    font-size: 68px !important;
    color: #fff !important;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.featured-offer-box .old-price {
    font-size: 20px !important;
    color: #a3a3a3 !important;
    text-decoration: line-through;
    font-weight: 500;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.price-separator {
    font-size: 18px;
    color: #a3a3a3;
    margin-right: 10px;
    vertical-align: middle;
    font-weight: 500;
}

.pulsing-cta {
    background: var(--color-primary) !important;
    color: #fff !important;
    border: none !important;
    font-size: 22px !important;
    padding: 20px 24px !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2) !important;
    transition: background-color 0.2s, transform 0.1s !important;
}

.pulsing-cta:hover {
    background: var(--color-primary-hover) !important;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3) !important;
}

.pulsing-cta:active {
    transform: scale(0.98) !important;
}

/* 8ª Dobra: Para quem é */
.target-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.target-yes, .target-no {
    background-color: var(--color-bg);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.target-yes {
    border-top: 6px solid #10b981; /* Green */
}

.target-no {
    border-top: 6px solid #ef4444; /* Red */
}

.target-yes h3, .target-no h3 {
    margin-bottom: 24px;
    font-size: 24px;
}

.target-yes ul, .target-no ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.target-yes li, .target-no li {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

/* 9ª Dobra: Garantia */
.guarantee-box {
    background-color: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 16px;
    padding: 40px 20px;
}

.guarantee-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.guarantee-text p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.guarantee-text p:last-child {
    margin-bottom: 0;
    color: var(--color-text-main);
    font-size: 20px;
}

/* 10ª Dobra: FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.faq-item summary {
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--color-primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item .faq-answer {
    padding: 0 20px 20px;
    color: var(--color-text-muted);
    font-size: 16px;
}

/* Footer */
footer {
    background-color: var(--color-bg-light);
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}

footer p {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Desktop Overrides (min-width: 768px) */
@media (min-width: 768px) {
    body {
        font-size: 18px;
    }
    
    h1 {
        font-size: 48px;
    }
    
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .hero-content {
        text-align: center; /* Still center-aligned text as requested */
    }
    
    .hero-image {
        margin-bottom: 0;
        grid-row: 1;
        grid-column: 2;
    }
    
    .hero-badges {
        justify-content: center;
    }

    .cards-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .card {
        flex: 1 1 calc(33.333% - 20px);
        max-width: 350px;
    }
    
    .pain-content, .benefit-content, .target-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .contents-grid {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
    
    .prints-grid {
        flex-direction: row;
        justify-content: center;
    }
    
    .bonus-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .bonus-card {
        flex: 1 1 calc(50% - 30px);
        max-width: 400px;
    }
    
    .guarantee-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        text-align: left;
    }
    
    .guarantee-icon {
        margin-bottom: 0;
    }
    
    .offer-box {
        padding: 50px;
    }

    .trust-seals, .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}
