/* ==========================================================================
   200 RECEITAS DE CAFÉ DA MANHÃ - LANDING PAGE
   Design System Completo
   ========================================================================== */

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    background-color: rgb(255, 255, 255);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ==========================================================================
   CSS VARIABLES (Design System)
   ========================================================================== */

:root {
    /* Cores Primárias */
    --primary-orange: rgb(255, 107, 53);
    --primary-green: rgb(44, 172, 67);
    --primary-dark: rgb(89, 93, 66);

    /* Cores Secundárias */
    --secondary-beige: rgb(255, 247, 231);
    --secondary-cream: rgb(253, 245, 229);
    --secondary-yellow: rgb(247, 184, 1);

    /* Cores de Texto */
    --text-dark: rgb(44, 62, 80);
    --text-medium: rgb(51, 51, 51);
    --text-light: rgb(127, 140, 141);
    --text-white: rgb(255, 255, 255);

    /* Cores de Ação */
    --success-green: rgb(39, 174, 96);
    --danger-red: rgb(231, 76, 60);
    --warning-yellow: rgb(241, 196, 15);

    /* Tipografia */
    --font-heading: 'Montserrat', 'Poppins', sans-serif;
    --font-body: 'Open Sans', 'Roboto', sans-serif;

    /* Tamanhos de Fonte - Desktop */
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.75rem;
    --h4-size: 1.25rem;
    --body-size: 1.125rem;
    --small-size: 0.875rem;

    /* Pesos de Fonte */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;

    /* Espaçamentos */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-xxl: 96px;

    /* Container */
    --container-width: 1200px;
}

/* ==========================================================================
   CONTAINER & LAYOUT
   ========================================================================== */

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

section {
    padding: var(--space-xl) 0;
}

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--h1-size);
    font-weight: var(--weight-extrabold);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

p {
    margin-bottom: var(--space-sm);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.section-title.white-text {
    color: var(--text-white);
}

.section-title.center {
    text-align: center;
}

.highlight {
    color: var(--primary-orange);
}

.highlight-orange {
    color: var(--primary-orange);
}

/* ==========================================================================
   BOTÕES (CTAs)
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--primary-orange);
    color: var(--text-white);
}

.btn-urgent {
    background: var(--danger-red);
    color: var(--text-white);
    padding: 22px 50px;
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
}

/* Hover effects para botões apenas em desktop (não-touch) */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        background: rgb(39, 154, 60);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(44, 172, 67, 0.3);
    }

    .btn-secondary:hover {
        background: rgb(235, 87, 33);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    }

    .btn-urgent:hover {
        background: rgb(211, 56, 40);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    }
}

.btn-cta, .btn-cta-main, .btn-cta-final {
    width: 100%;
    max-width: 600px;
    margin: var(--space-md) auto;
    display: block;
}

/* Animação Pulse */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==========================================================================
   SEÇÃO 1: HERO
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, rgb(255, 248, 240) 0%, rgb(255, 229, 217) 100%);
    padding: var(--space-xxl) 0;
    text-align: center;
}

.badge-social {
    display: inline-block;
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-green);
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: var(--small-size);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-md);
}

.headline {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    line-height: 1.1;
    font-weight: var(--weight-extrabold);
    color: var(--primary-orange);
}

.sub-headline {
    font-size: 1.4rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    line-height: 1.5;
    font-weight: var(--weight-bold);
}

/* Hero Images Showcase - Single Image */
.hero-images-showcase {
    max-width: 500px;
    margin: var(--space-md) auto;
}

.hero-images-showcase img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   SEÇÃO 2: BENEFÍCIOS
   ========================================================================== */

.benefits-section {
    background: var(--secondary-beige);
}

/* Benefits List - Clean & Direct */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-lg);
    max-width: 700px;
}

.benefit-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: var(--weight-medium);
}

.benefit-list-item:last-child {
    border-bottom: none;
}

.benefit-list-item .benefit-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--primary-orange);
    stroke-width: 3;
}

/* ==========================================================================
   SEÇÃO 3: RECEITAS
   ========================================================================== */

.recipes-section {
    background: var(--primary-dark);
    color: var(--text-white);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.recipe-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effects apenas em desktop (não-touch) */
@media (hover: hover) and (pointer: fine) {
    .recipe-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card-content {
    padding: var(--space-md);
}

.recipe-card-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.recipe-info {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.recipes-closing {
    text-align: center;
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    margin: var(--space-lg) 0;
}

.white-text {
    color: var(--text-white);
}

/* ==========================================================================
   SEÇÃO 4: PARA QUEM É
   ========================================================================== */

.target-section {
    background: var(--secondary-beige);
}

.target-list {
    max-width: 900px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: white;
    border-radius: 8px;
    margin-bottom: var(--space-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.check-icon {
    font-size: 2rem;
    color: var(--success-green);
    font-weight: var(--weight-bold);
    flex-shrink: 0;
}

.target-content h3 {
    font-size: 1.125rem;
    font-weight: var(--weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.target-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   SEÇÃO 5: BÔNUS
   ========================================================================== */

.bonus-section {
    background: var(--primary-dark);
    color: var(--text-white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .bonus-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }
}

.bonus-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 1.125rem;
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-md);
}

.bonus-image {
    width: 100%;
    max-width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto var(--space-md);
    display: block;
}

.bonus-card h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    font-weight: var(--weight-extrabold);
}

.bonus-value {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    font-weight: var(--weight-semibold);
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

.bonus-free {
    color: var(--primary-green);
    font-size: inherit;
    font-weight: var(--weight-extrabold);
    display: inline;
}

.bonus-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.bonus-total {
    text-align: center;
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-lg);
}

.bonus-total-value {
    color: var(--secondary-yellow);
}

/* ==========================================================================
   SEÇÃO 6: VANTAGENS
   ========================================================================== */

.advantages-section {
    background: var(--secondary-beige);
    padding: var(--space-lg) 0;
}

.advantages-section .section-title {
    margin-bottom: var(--space-lg);
}

.highlight-dark {
    color: var(--text-dark);
    font-weight: var(--weight-extrabold);
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-lg);
    max-width: 600px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.advantage-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    stroke: var(--primary-green);
    stroke-width: 2.5;
}

.advantage-item span {
    flex: 1;
    line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO 7: DEPOIMENTOS
   ========================================================================== */

.testimonials-section {
    background: var(--secondary-beige);
}

/* Slider de Provas Sociais */
.social-proof-slider {
    margin: 0 auto var(--space-xl);
    max-width: 600px;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.slider-track {
    display: flex;
    animation: slide 8s ease-in-out infinite;
}

.social-proof-image {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
}

@keyframes slide {
    0%, 45% {
        transform: translateX(0);
    }
    50%, 95% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: dotAnimation 8s ease-in-out infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 4s;
}

@keyframes dotAnimation {
    0%, 45% {
        background: var(--primary-orange);
        transform: scale(1.2);
    }
    50%, 100% {
        background: rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 107, 53, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--secondary-yellow);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: var(--weight-bold);
}

.testimonial-info span {
    font-size: var(--small-size);
    color: var(--text-light);
}

/* ==========================================================================
   SEÇÃO 7: OFERTA
   ========================================================================== */

.offer-section {
    background: var(--secondary-beige);
    padding: var(--space-xxl) 0;
}

.offer-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--primary-dark);
    border-radius: 20px;
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-mockup {
    margin-bottom: var(--space-lg);
}

.mockup-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.offer-title {
    color: var(--text-white);
    font-size: 1.75rem;
    font-weight: var(--weight-extrabold);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
}

.bonus-list {
    margin-bottom: var(--space-lg);
}

.bonus-item {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: var(--weight-semibold);
    margin: var(--space-xs) 0;
}

.price-section {
    margin-bottom: var(--space-lg);
}

.price-from {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    opacity: 0.8;
}

.price-installments {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: var(--weight-extrabold);
    line-height: 1.3;
}

.btn-cta-main {
    width: 100%;
    font-size: 1.25rem;
    padding: 20px;
    margin-bottom: var(--space-md);
}

.offer-expires {
    color: var(--text-white);
    font-size: 0.875rem;
    font-style: italic;
    opacity: 0.8;
    margin: 0;
}

/* ==========================================================================
   SEÇÃO 8: COMO RECEBER
   ========================================================================== */

.how-section {
    background: var(--secondary-beige);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    margin: 0 auto var(--space-sm);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.step-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.step-item p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ==========================================================================
   SEÇÃO 9: FAQ
   ========================================================================== */

.faq-section {
    background: var(--primary-dark);
    color: var(--text-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-sm);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: var(--weight-semibold);
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .faq-question:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   SEÇÃO 10: CTA FINAL
   ========================================================================== */

.final-cta-section {
    background: linear-gradient(135deg, var(--danger-red) 0%, rgb(200, 60, 45) 100%);
    color: var(--text-white);
    padding: var(--space-xxl) 0;
    text-align: center;
}

.final-big-title {
    font-size: 4rem;
    font-weight: var(--weight-extrabold);
    margin-bottom: var(--space-xl);
    line-height: 1.1;
    text-transform: uppercase;
}

.final-copy {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.final-benefits {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.final-benefits p {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    font-weight: var(--weight-medium);
}

.final-price-text {
    font-size: 1.5rem;
    margin: var(--space-lg) 0;
}

.final-price-text strong {
    color: var(--secondary-yellow);
    font-size: 2rem;
}

.countdown-timer {
    margin: var(--space-lg) 0;
}

.countdown-label {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.timer-display {
    font-size: 3rem;
    font-weight: var(--weight-extrabold);
    color: var(--secondary-yellow);
    font-family: var(--font-heading);
}

.final-security {
    margin-top: var(--space-md);
}

.final-security p {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: var(--space-lg) 0;
}

.footer p {
    margin-bottom: var(--space-xs);
    font-size: var(--small-size);
}

/* ==========================================================================
   RESPONSIVIDADE - DESKTOP EXTRA LARGE (> 1600px)
   ========================================================================== */

@media (min-width: 1601px) {
    :root {
        --container-width: 1500px;
        --h1-size: 4.5rem;
        --h2-size: 3.25rem;
        --h3-size: 2.25rem;
    }

    .recipes-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1400px;
        margin: 0 auto var(--space-lg);
    }

    .hero-images-showcase {
        max-width: 700px;
    }

    .current-price {
        font-size: 5.5rem;
    }

    .timer-display {
        font-size: 4rem;
    }

    section {
        padding: calc(var(--space-xl) * 1.5) 0;
    }
}

/* ==========================================================================
   RESPONSIVIDADE - DESKTOP GRANDE (1200px - 1600px)
   ========================================================================== */

@media (min-width: 1200px) and (max-width: 1600px) {
    .recipes-grid,
    .bonus-grid {
        max-width: 1100px;
        margin: 0 auto var(--space-lg);
    }

    .hero-images-showcase {
        max-width: 550px;
    }

    .testimonials-grid {
        max-width: 900px;
        margin: 0 auto;
    }

    .steps-timeline {
        max-width: 1100px;
    }
}

/* ==========================================================================
   RESPONSIVIDADE - TABLET (768px - 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
    }

    section {
        padding: 56px 0;
    }

    .recipes-grid,
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-images-showcase {
        max-width: 450px;
    }
}

/* ==========================================================================
   RESPONSIVIDADE - MOBILE (< 768px)
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --h1-size: 1.75rem;
        --h2-size: 1.5rem;
        --h3-size: 1.25rem;
        --body-size: 1rem;
    }

    section {
        padding: var(--space-lg) 0;
    }

    .hero-section {
        padding: 20px 0 var(--space-lg) 0;
    }

    .headline {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: var(--space-sm);
        margin-top: 0;
        padding-top: 0;
    }

    .sub-headline {
        font-size: 1.1rem;
        margin-bottom: var(--space-md);
        line-height: 1.4;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .recipes-grid,
    .bonus-grid,
    .testimonials-grid,
    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .benefit-list-item {
        font-size: 1.05rem;
        padding: 16px 0;
    }

    .benefit-list-item .benefit-icon {
        width: 24px;
        height: 24px;
    }

    .hero-images-showcase {
        max-width: 100%;
        margin: var(--space-sm) auto;
    }

    .btn {
        width: 100%;
        padding: 18px var(--space-md);
        font-size: 1rem;
    }

    .btn-urgent {
        padding: 20px var(--space-md);
        font-size: 1.125rem;
    }

    .current-price {
        font-size: 3rem;
    }

    .timer-display {
        font-size: 2rem;
    }

    .bonus-grid {
        gap: var(--space-md);
    }

    /* Otimização dos bonus-cards para mobile */
    .bonus-card {
        padding: var(--space-md);
    }

    /* Manter tamanho original das imagens */
    .bonus-image {
        max-width: 250px;
        height: 200px;
        margin-bottom: var(--space-sm);
    }

    .bonus-badge {
        font-size: 1rem;
        padding: 6px 16px;
        margin-bottom: 12px;
    }

    .bonus-card h3 {
        font-size: 1.75rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .bonus-value {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }

    .bonus-free {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .bonus-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Vantagens - Mobile */
    .advantages-list {
        max-width: 100%;
    }

    .advantage-item {
        font-size: 1rem;
        gap: var(--space-sm);
        padding: var(--space-xs) 0;
    }

    .advantage-icon {
        width: 28px;
        height: 28px;
    }

    /* Slider de Provas Sociais - Mobile */
    .social-proof-slider {
        max-width: 100%;
        margin-bottom: var(--space-lg);
    }

    .slider-container {
        border-radius: 8px;
    }

    /* Oferta - Mobile */
    .offer-card {
        padding: var(--space-lg);
    }

    .offer-title {
        font-size: 1.5rem;
    }

    .price-from {
        font-size: 1rem;
    }

    .price-installments {
        font-size: 2rem;
    }

    .btn-cta-main {
        font-size: 1.125rem;
        padding: 18px;
    }

    .steps-timeline {
        gap: var(--space-lg);
    }

    /* Final CTA Title - Mobile */
    .final-big-title {
        font-size: 2.25rem;
    }

    /* Touch-friendly buttons */
    .btn,
    .faq-question {
        min-height: 44px;
    }
}

/* ==========================================================================
   RESPONSIVIDADE - MOBILE PEQUENO (< 480px)
   ========================================================================== */

@media (max-width: 480px) {
    .hero-section {
        padding: 16px 0 var(--space-md) 0;
    }

    .headline {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-top: 0;
        padding-top: 0;
    }

    .sub-headline {
        font-size: 1rem;
        line-height: 1.35;
    }

    .container {
        padding: 0 16px;
    }

    .hero-images-showcase {
        margin: 12px auto;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* Otimização extra dos bonus-cards para mobile pequeno */
    .bonus-card {
        padding: 16px;
    }

    /* Manter tamanho original das imagens em mobile pequeno também */
    .bonus-image {
        max-width: 250px;
        height: 200px;
        margin-bottom: 12px;
    }

    .bonus-badge {
        font-size: 0.9rem;
        padding: 5px 14px;
        margin-bottom: 10px;
    }

    .bonus-card h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .bonus-value {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .bonus-free {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .bonus-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Vantagens - Mobile pequeno */
    .advantage-item {
        font-size: 0.95rem;
        gap: 12px;
    }

    .advantage-icon {
        width: 24px;
        height: 24px;
    }

    /* Oferta - Mobile pequeno */
    .offer-card {
        padding: var(--space-md);
    }

    .offer-title {
        font-size: 1.25rem;
    }

    .bonus-item {
        font-size: 1rem;
    }

    .price-from {
        font-size: 0.95rem;
    }

    .price-installments {
        font-size: 1.75rem;
    }

    .btn-cta-main {
        font-size: 1rem;
        padding: 16px;
    }

    .bonus-total {
        font-size: 0.9rem;
        padding: 12px;
    }

    .bonus-total-value {
        font-size: 0.95rem;
    }

    /* Final CTA Title - Mobile pequeno */
    .final-big-title {
        font-size: 1.85rem;
    }
}

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */

.center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Lazy Loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}
