:root {
    --primary: #E96637;
    --primary-hover: #d1562a;
    --dark: #201E1E;
    --gray: #F5F5F5;
    --white: #FFFFFF;
    --text-gray: #4A4A4A;
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Alfa Slab One', cursive;
    font-weight: 400;
    line-height: 1.2;
}

/* Utilities */
.container {
    width: 80%;
    padding: 40px 180px;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    gap: 10px;
    border: none;
}

.btn-secound {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(233, 102, 55, 0.3);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(233, 102, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 30px rgba(233, 102, 55, 0.4);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 102, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(233, 102, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 102, 55, 0);
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #FF8F6B);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s;
}

/* Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s var(--ease-out);
}

.reveal-bottom {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.85);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

.stagger-delay-4 {
    transition-delay: 0.4s;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
    transform: translateY(0);
    will-change: transform;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
    /* Previne CLS */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(32, 30, 30, 0.9) 0%, rgba(32, 30, 30, 0.7) 50%, rgba(32, 30, 30, 0) 100%);
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 840px;
    padding-top: 40px;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Garante que elementos hero apareçam imediatamente (sem animação reveal) */
.hero-content * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.hero-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 80px;
    display: flex;
    margin-right: 300px;
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

.hero-feature-item i {
    color: var(--primary);
    font-size: 24px;
}

/* PROVA DE VALOR */
.proof-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.proof-image-wrapper {
    position: relative;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.proof-image {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transform: translateY(-5%);
    will-change: transform;
}

.proof-content h2 {
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 20px;
}

.proof-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.proof-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.proof-card {
    background: var(--gray);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s var(--ease-out);
    border: 1px solid transparent;
}

.proof-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(233, 102, 55, 0.2);
}

.proof-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.proof-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}

.proof-card p {
    font-size: 15px;
    margin-bottom: 0;
}

/* COMO FUNCIONA */
.how-section {
    padding: 70px 0;
    background-color: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-header {
    text-align: center;
    margin-bottom: 80px;
    font-size: 22px;
}

.how-header h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.how-step-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item {
    margin-bottom: 40px;
    display: flex;
    gap: 24px;
}

.step-number {
    font-family: 'Alfa Slab One', cursive;
    font-size: 48px;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    line-height: 1;
}

.step-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: 1000;
    margin-bottom: 0px;
    line-height: 1;
    font-variant-caps: all-petite-caps;
}

.step-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    font-size: 18px;
}

.how-images {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.how-img-1 {
    width: 70%;
    height: 60%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-bottom-right-radius: 40px;
}

.how-img-2 {
    width: 70%;
    height: 60%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    border-top-left-radius: 40px;
    border: 10px solid var(--dark);
}

/* LIFESTYLE */
.lifestyle-section {
    height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.lifestyle-bg-wrapper {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: 0;
}

.lifestyle-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.lifestyle-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.lifestyle-content h2 {
    font-size: 64px;
    margin-bottom: 24px;
}

.lifestyle-content p {
    font-size: 24px;
    margin-bottom: 40px;
}

/* COMPARATIVO (POR QUE ESCOLHER) */
.compare-section {
    padding: 120px 0;
    background: var(--white);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.compare-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.compare-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transform: translateY(-5%);
}

.compare-table {
    background: var(--white);
}

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

.compare-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.compare-feature {
    font-weight: 600;
    font-size: 18px;
}

.compare-status {
    display: flex;
    gap: 40px;
    font-size: 24px;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.status-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

/* =========================
   NOVAS SEÇÕES (ADICIONADAS)
   ========================= */

/* 1) Cards de condições (10x, 15 anos, pix, brinde) */
.deal-cards-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: url('https://sistema.sistemawbuy.com.br/arquivos/786732afbb6b5fc01b1385433541a1d3/produtos/672179b33f61a/churrasqueira-69712ab526927.webp') center/cover no-repeat;
}

.deal-cards-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(32, 30, 30, 0.78);
    z-index: 0;
}

.deal-cards-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.deal-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 36px 22px;
    text-align: center;
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.35s var(--ease-out);
}

.deal-card:hover {
    transform: translateY(-10px);
    border-color: rgba(233, 102, 55, 0.55);
    background: rgba(233, 102, 55, 0.10);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.deal-card i {
    font-size: 38px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 16px;
}

.deal-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.deal-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

/* 2) "DESPESA OU INVESTIMENTO?" (3 colunas) */
.investment-section {
    padding: 120px 0;
    background: var(--white);
}

.investment-title {
    text-align: center;
    font-size: 56px;
    margin-bottom: 70px;
    text-transform: uppercase;
}

.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.10);
}

.invest-col {
    padding: 64px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.invest-col.bad {
    background: var(--gray);
    color: #7b7b7b;
}

.invest-col.visual {
    background: url('https://sistema.sistemawbuy.com.br/arquivos/786732afbb6b5fc01b1385433541a1d3/produtos/672179b33f61a/churrasco-amigos_2-69712ab509e89.webp') center/cover no-repeat;
    position: relative;
}

.invest-col.good {
    background: var(--dark);
    color: var(--white);
}

.invest-header {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.invest-col.good .invest-header {
    color: var(--primary);
}

.invest-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    font-weight: 700;
    font-size: 18px;
}

.invest-col.bad .invest-item i {
    color: #9e9e9e;
    font-size: 24px;
}

.invest-col.good .invest-item i {
    color: var(--primary);
    font-size: 24px;
}

/* OFERTA (PREÇO) */
.offer-section {
    padding: 10px;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.offer-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    transform: scale(1.1);
}

.offer-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-text p {
    font-size: 20px;
}

.offer-container {
    display: grid;
    grid-template-columns: 11fr;
    gap: 60px;
    align-items: center;
}

.offer-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: left;
}

.offer-text h2 {
    font-size: 56px;
    width: 80%;
    color: var(--dark);
    margin-bottom: 24px;
}

.offer-list_products {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 24px;
}

.offer-list_products li {
    display: flex;
    gap: 10px;
    font-size: 20px;
    margin: 14px 0 0 0px;
    font-weight: 500;
}


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

.offer-list {
    margin: 30px 0;
    list-style: none;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 500;
}

.offer-list li i {
    color: var(--primary);
    font-size: 24px;
}

.price-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid var(--primary);
    transform-origin: center center;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: scale(1.02);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.price-tag {
    margin: 30px 0;
}

.old-price {
    font-size: 28px;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 5px;
}

.current-price {
    font-size: 34px;
    font-family: 'Alfa Slab One', cursive;
    color: var(--dark);
    line-height: 1;
}

.installment {
    font-size: 24px;
    color: var(--text-gray);
    margin-top: 10px;
}

/* FAQ */
.faq-section {
    padding: 120px 0;
    background: var(--gray);
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: visible;
    /* Alterado para visible para não cortar conteúdo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Garante que FAQ items permaneçam visíveis após serem revelados */
.faq-item.reveal.active {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.faq-question {
    padding: 24px 30px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    background: var(--white);
    border-radius: 12px;
    /* Mantém o border-radius na pergunta */
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out), opacity 0.3s ease;
    line-height: 1.6;
    color: var(--text-gray);
    opacity: 0;
    background: var(--white);
}

.faq-item[data-faq-open="true"] .faq-answer {
    padding-bottom: 24px;
    max-height: 1000px;
    /* Aumentado significativamente */
    overflow: visible;
    /* Garante que o texto completo seja visível */
    opacity: 1;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item[data-faq-open="true"] .faq-icon {
    transform: rotate(180deg);
}

/* FINAL CTA */
.final-cta {
    padding: 200px 0;
    background: #eb6539;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    opacity: 0.2;
    object-fit: cover;
    transform: translateY(-10%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 56px;
    margin-bottom: 40px;
    color: #fff;
}

/* FOOTER */
.footer {
    background: #111;
    color: #888;
    padding: 60px 0 30px;
    text-align: center;
    font-size: 14px;
    gap: 10px;
}

.footer-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 15px auto 20px;
    display: flex;
}

.footer-logo {
    font-family: 'Alfa Slab One', cursive;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 15px;
    display: inline-block;
}

/* Fixed Elements */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA56;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* TABLET (768px - 1023px) */
@media (max-width: 1023px) {

    /* Container */
    .container {
        padding: 0 30px;
    }

    /* Hero Section */
    .hero {
        min-height: 700px;
    }

    .hero-content {
        width: 840px;
        max-width: 70vw;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero p {
        font-size: 20px;
    }

    /* Proof Section */
    .proof-grid {
        gap: 50px;
    }

    .proof-image-wrapper {
        height: 500px;
    }

    .proof-content h2 {
        font-size: 40px;
    }

    /* How Section */
    .how-images {
        height: 600px;
    }

    .step-info h3 {
        font-size: 40px;
    }

    /* Lifestyle */
    .lifestyle-content h2 {
        font-size: 52px;
    }

    .lifestyle-content p {
        font-size: 20px;
    }

    /* Compare Section */
    .compare-img-wrapper {
        height: 500px;
    }

    .compare-header h2 {
        font-size: 40px;
    }

    /* Investment */
    .investment-title {
        font-size: 44px;
    }

    /* Offer */
    .offer-text h2 {
        font-size: 30px;
    }

    .current-price {
        font-size: 52px;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 30px;
    }
}

/* MOBILE (até 767px) */
@media (max-width: 767px) {

    /* Container */
    .container {
        padding: 0;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4 {
        line-height: 1.3;
    }

    /* Buttons */
    .btn {
        padding: 12px 30px;
        margin: 12px;
        font-size: 20px;
        width: 100%;
    }

    /* Hero Section */
    .hero {
        height: 100%;
        padding: 40px 30px 40px 30px;
    }

    .hero-logo {
        max-width: 145px;
        margin-bottom: 20px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding-top: 10px;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-feature-item {
        font-size: 14px;
    }

    .hero-feature-item i {
        font-size: 20px;
    }

    /* Proof Section */
    .proof-section {
        padding: 60px 0;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proof-image-wrapper {
        height: 400px;
    }

    .proof-content h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .proof-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .proof-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proof-card {
        padding: 24px;
    }

    .proof-card i {
        font-size: 28px;
    }

    .proof-card h3 {
        font-size: 18px;
    }

    /* How Section */
    .how-section {
        padding: 60px 0;
    }

    .how-header {
        margin-bottom: 40px;
        font-size: 18px;
    }

    .how-header h2 {
        font-size: 32px;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .how-step-content {
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .step-item {
        margin-bottom: 30px;
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-info h3 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .step-info p {
        font-size: 20px;
        line-height: 1.6;
    }

    .how-images {
        height: 400px;
        order: -1;
    }

    .how-img-1,
    .how-img-2 {
        width: 85%;
        height: 55%;
    }

    /* Lifestyle */
    .lifestyle-section {
        height: 600px;
    }

    .lifestyle-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .lifestyle-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    /* Compare Section */
    .compare-section {
        padding: 60px 0;
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compare-img-wrapper {
        height: 300px;
    }

    .compare-header h2 {
        font-size: 32px;
    }

    .compare-row {
        padding: 16px 0;
    }

    .compare-feature {
        font-size: 16px;
    }

    .compare-status {
        gap: 20px;
        font-size: 20px;
    }

    .status-item {
        width: 60px;
    }

    .status-label {
        font-size: 10px;
    }

    /* Deal Cards Section */
    .deal-cards-section {
        padding: 60px 0;
    }

    .deal-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .deal-card {
        padding: 30px 20px;
    }

    .deal-card i {
        font-size: 45px;
    }

    .deal-card h3 {
        font-size: 16px;
    }

    .deal-card p {
        font-size: 20px;
    }

    /* Investment Section */
    .investment-section {
        padding: 60px 0;
    }

    .investment-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .invest-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .invest-col {
        padding: 40px 24px;
    }

    .invest-col.visual {
        min-height: 250px;
    }

    .invest-header {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .invest-item {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .invest-item i {
        font-size: 20px;
    }

    /* Offer Section */
    .offer-section {
        padding: 30px 0;
    }


    .offer-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .offer-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .offer-text h2 {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: left;
    }

    .offer-text p {
        font-size: 16px;
    }

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

    .price-card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .price-card h3 {
        font-size: 64px;
    }

    .best-value-badge {
        font-size: 10px;
        padding: 6px 6px;
        margin: 5px;
    }

    .old-price {
        font-size: 20px;
    }

    .current-price {
        font-size: 16px;
    }

    .installment {
        font-size: 18px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }

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

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 14px;
    }

    .faq-item[data-faq-open="true"] .faq-answer {
        padding-bottom: 20px;
        max-height: 1000px;
        /* Aumentado para mobile */
        overflow: visible;
        /* Garante visibilidade completa */
        opacity: 1;
    }

    /* Final CTA */
    .final-cta {
        padding: 30px;
        margin: auto;
    }

    .final-cta h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo-img {
        max-width: 140px;
        margin-bottom: 16px;
    }

    .footer-logo {
        font-size: 20px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 40px;
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* SMALL MOBILE (até 480px) */
@media (max-width: 480px) {
    .hero-logo {
        max-width: 150px;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 18px;
    }

    .proof-content h2,
    .compare-header h2,
    .final-cta h2,
    .faq-header h2 {
        font-size: 36px;
    }

    .offer-text h2 {
        font-size: 36px;
    }

    .offer-list_products li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 500;
    }

    .investment-title {
        font-size: 34px;
    }

    .lifestyle-content h2 {
        font-size: 36px;
    }

    .deal-card h3 {
        font-size: 28px;
    }

    .invest-header {
        font-size: 26px;
    }

    .current-price {
        font-size: 22px;
    }

    .step-info h3 {
        font-size: 32px;
    }

    .footer-logo-img {
        max-width: 180px;
    }
}

/* LARGE DESKTOP (acima de 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }
}