:root {
    --bg-dark: #0f1015;
    --bg-card: rgba(30, 32, 38, 0.7);
    --primary-green: #00e676;
    --primary-green-hover: #00c853;
    --text-main: #f0f2f5;
    --text-muted: #a0a4b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --gold: #ffc107;
    --danger: #ff4c4c;
}

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

html {
    overflow-x: clip; /* usa clip em vez de hidden para não criar stacking context que bloqueia position:fixed */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Botões Animados */
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFDF00, #D4AF37);
    color: #0f1015;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFEAA7;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.7);
}

.pulse-anim {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center top, rgba(0, 230, 118, 0.15) 0%, transparent 60%);
    padding-top: 10px;
}

.hero .container {
    padding: 12px 0;
}

.hero-logo {
    max-width: 230px;
    margin-bottom: 12px;
}

.headline {
    font-size: 3.6rem;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.15;
}

/* Dourado premium metálico na headline */
.headline-gold {
    background: linear-gradient(135deg, #FFF5A0 0%, #F1C40F 30%, #C8960A 55%, #F3C93E 80%, #FFF099 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 3px rgba(212, 175, 55, 0.5));
}

.hero-sub {
    color: #e8eaf0;
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 20px;
    font-weight: 300;
    line-height: 1.4;
}

.subheadline {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    /* IMPORTANTE: overflow deve ser visible para o botão de ação do Vturb aparecer */
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

/* Garante que o player Vturb e seus botões de ação não sejam cortados */
.video-container vturb-smartplayer {
    display: block !important;
    overflow: visible !important;
    width: 100% !important;
}

.video-container vturb-smartplayer * {
    max-width: none !important;
}



/* --- PROVA SOCIAL --- */
.social-proof {
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proof-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.shorts-container {
    width: 100%;
    max-width: 315px; /* Proporção ideal para Shorts/Vertical */
    height: 560px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    margin: 0 auto;
}

.shorts-container iframe {
    width: 100%;
    height: 100%;
}



.section-subtitle {
    font-size: 1.8rem;
    color: var(--primary-green);
}

/* --- DIFERENCIAL --- */
.comparison-tables {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.table-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.table-card.ours {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.1);
}

.table-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.table-card ul {
    list-style: none;
}

.table-card li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- O QUE É --- */
.what-is {
    background: radial-gradient(circle at right center, rgba(0, 230, 118, 0.05) 0%, transparent 50%);
}

.text-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    font-size: 1.2rem;
    color: #cfd2df;
}

.text-content p {
    margin-bottom: 20px;
}

/* --- O QUE VOU RECEBER --- */
.what-you-get {
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
}

/* --- CARROSSEL DE MÓDULOS --- */
.what-you-get {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.modules-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modules-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 15px 5px;
    cursor: grab;
}

.modules-carousel-track-container:active {
    cursor: grabbing;
}

.modules-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.module-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
    height: 560px;
    background-color: #0f1015;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 85, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 85, 0, 0.3);
}

.module-card-content {
    padding: 28px 22px;
    text-align: left;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 11, 15, 0.95) 40%, rgba(10, 11, 15, 0.98) 100%);
    width: 100%;
    box-sizing: border-box;
}

.module-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF5500, #E64A00);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 85, 0, 0.4);
}

.module-card-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.3px;
}

.module-card-desc {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* BOTÕES NAVEGAÇÃO DO CARROSSEL */
.carousel-nav-btn {
    background: rgba(15, 16, 21, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-nav-btn.prev-btn {
    left: -20px;
}

.carousel-nav-btn.next-btn {
    right: -20px;
}

.carousel-nav-btn:hover {
    background: #FF5500;
    border-color: #FF5500;
    box-shadow: 0 0 15px rgba(255, 85, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

/* PAGINAÇÃO POR PONTOS (DOTS) */
.modules-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modules-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modules-carousel-dots .dot:hover {
    background: rgba(255, 85, 0, 0.6);
}

.modules-carousel-dots .dot.active {
    width: 24px;
    border-radius: 12px;
    background: #FF5500;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.8);
}

/* --- BÔNUS --- */
.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.bonus-item {
    background: linear-gradient(145deg, rgba(30, 32, 38, 0.9), rgba(15, 16, 21, 0.9));
    border: 1px solid var(--gold);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.05);
}

.bonus-item h3 {
    color: var(--gold);
    font-size: 1.3rem;
}

/* --- CERTIFICADO --- */
.certificate {
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.05) 0%, transparent 60%);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    height: 450px;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.carousel-img.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-container {
        height: 250px;
    }
}

/* --- GARANTIA --- */
.guarantee {
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto 40px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 1.2rem;
}

.guarantee-content p {
    margin-bottom: 15px;
}

/* --- FAQ --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    transition: background 0.3s;
}

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

.faq-item summary:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

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

.faq-item[open] summary {
    background: rgba(0, 230, 118, 0.1);
}

.faq-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    animation: fadeDown 0.3s ease-in-out;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- NOVA SEÇÃO DE OPORTUNIDADE E TABELA DE BENEFÍCIOS --- */
.opportunity-section {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, var(--bg-dark) 80%);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 70px 0;
}

.opportunity-title {
    max-width: 950px;
    margin: 0 auto 35px auto;
    font-size: 2.1rem;
    line-height: 1.35;
    color: #ffffff;
    text-align: center;
}

.benefit-table-card {
    background: #14161d;
    border: 2px solid rgba(212, 175, 55, 0.45);
    border-radius: 16px;
    padding: 30px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15);
    text-align: left !important;
}

.benefit-table-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 25px;
    text-align: left !important;
}

.benefit-column {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left !important;
}

.benefit-column.bonus-col {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    text-align: left !important;
}

.column-header {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 18px;
    padding: 10px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--text-muted);
    color: var(--text-main);
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-column.bonus-col .column-header {
    background: rgba(212, 175, 55, 0.15);
    border-left-color: var(--gold);
    color: var(--gold);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
}

.benefit-list li {
    font-size: 1.02rem;
    color: #f0f2f5;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 12px !important;
    line-height: 1.4;
}

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

.benefit-list .check-icon {
    color: var(--text-main);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-column.bonus-col .check-icon {
    color: var(--gold);
}

.benefit-text {
    text-align: left !important;
    flex: 1;
    display: block;
}

/* BOTÃO DOURADO PREMIUM (GRADIENTE METÁLICO CONFORME A IMAGEM) */
.gold-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFF099 0%, #F1C40F 25%, #B78A16 50%, #F3C93E 75%, #FFE270 100%);
    background-size: 200% auto;
    color: #0f0b00;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 22px 35px;
    border-radius: 10px;
    margin-top: 35px;
    box-shadow: 0 6px 25px rgba(241, 196, 15, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.35s ease;
    border: 1px solid #FFE494;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.gold-cta-btn:hover {
    background-position: right center;
    transform: scale(1.04);
    box-shadow: 0 8px 35px rgba(241, 196, 15, 0.8), inset 0 1px 0 #ffffff;
    color: #000000;
}

/* --- NEW STYLES --- */
.payment-icon {
    max-width: 250px;
    width: 100%;
    display: block;
    margin: 10px auto 0;
    opacity: 0.9;
}

.highlight-gold {
    color: var(--gold);
    text-shadow: 0 1px 3px rgba(212, 175, 55, 0.5);
}

.methodology-section {
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
}
.methodology-comments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}
.methodology-comments img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- TRAILER SECTION --- */
.trailer-section {
    background: radial-gradient(ellipse at center top, rgba(255, 193, 7, 0.12) 0%, transparent 65%),
                radial-gradient(ellipse at center bottom, rgba(0, 230, 118, 0.06) 0%, transparent 60%),
                var(--bg-dark);
    border-top: 1px solid rgba(255, 193, 7, 0.25);
    border-bottom: 1px solid rgba(255, 193, 7, 0.25);
    position: relative;
    overflow: hidden;
}

.trailer-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(255, 193, 7, 0.02) 80px,
        rgba(255, 193, 7, 0.02) 81px
    );
    pointer-events: none;
}

.trailer-title {
    /* Autocontido — não depende de .section-title */
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 18px;
    color: #ffffff;
    /* Reset explícito de qualquer herança de background-clip */
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
}

.trailer-highlight {
    /* Cor sólida dourada — funciona em qualquer browser/ambiente */
    color: #ffc107;
    -webkit-text-fill-color: #ffc107;
    background: none;
    font-style: italic;
    font-weight: 900;
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
}

.trailer-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 35px;
    font-style: italic;
}

.trailer-video-wrapper {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 193, 7, 0.3),
        0 0 30px rgba(255, 193, 7, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    transition: box-shadow 0.4s ease;
}

.trailer-video-wrapper:hover {
    box-shadow:
        0 0 0 1px rgba(255, 193, 7, 0.5),
        0 0 50px rgba(255, 193, 7, 0.35),
        0 20px 60px rgba(0, 0, 0, 0.8);
}

/* --- FOOTER --- */
footer {
    background-color: #000;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

/* --- SCROLL DOWN INDICATOR --- */
.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    color: var(--text-muted);
    opacity: 0.9;
}

.scroll-down-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    color: #e2e8f0;
    font-weight: 600;
}

.scroll-down-arrow {
    width: 28px;
    height: 28px;
    color: #00ff2a; /* Match the new brighter green */
    filter: drop-shadow(0 0 5px rgba(0,255,42,0.4));
}

.pulse-anim-vertical {
    animation: pulseVertical 1.5s infinite ease-in-out;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 15px 0;
        width: 92%;
    }
    .hero {
        min-height: unset;
        height: auto;
        padding-top: 0;
        padding-bottom: 20px;
        align-items: flex-start;
    }
    .hero .container {
        padding: 6px 0 10px;
    }
    .hero-logo {
        max-width: 110px;
        margin-top: 6px;
        margin-bottom: 6px;
    }
    .headline { 
        font-size: 1.6rem; 
        margin-bottom: 8px;
        line-height: 1.18;
    }
    .hero-sub {
        font-size: 0.88rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    .subheadline {
        font-size: 0.82rem;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }
    .video-container {
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    }
    .cta-btn {
        width: 100%;
        padding: 16px 10px;
        font-size: 1.1rem;
        margin-top: 15px;
    }
    .section-title { font-size: 1.8rem; margin-bottom: 25px; }
    
    .shorts-container {
        max-width: 260px;
        height: 460px;
    }

    .opportunity-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    .benefit-table-card {
        padding: 18px 14px;
        border-radius: 12px;
        text-align: left !important;
    }
    .benefit-table-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left !important;
    }
    .benefit-column {
        padding: 16px 12px;
        text-align: left !important;
    }
    .column-header {
        font-size: 1.1rem;
        padding: 8px 12px;
    }
    .benefit-list li {
        font-size: 0.95rem;
        padding: 8px 0;
        text-align: left !important;
    }
    .gold-cta-btn {
        width: 100%;
        padding: 18px 10px;
        font-size: 1.05rem;
        margin-top: 25px;
    }

    /* AJUSTES RESPONSIVOS DO CARROSSEL DE MÓDULOS */
    .modules-carousel-wrapper {
        padding: 0 5px;
    }
    .carousel-nav-btn {
        display: none; /* Oculta setas laterais em celulares para focar no toque/swipe */
    }
    .module-card {
        flex: 0 0 85vw;
        max-width: 320px;
        height: 500px;
    }
    .module-card-content {
        padding: 22px 18px;
    }
    .module-card-title {
        font-size: 1.2rem;
    }
    .module-card-desc {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .module-card {
        flex: 0 0 calc(50% - 10px);
        height: 490px;
    }
}
