/* ===== RESET E VARIÁVEIS ===== */
:root {
    --bg-primary: #030303;
    --bg-secondary: #0a0a0f;
    --bg-tertiary: #111118;
    --bg-card: #15151f;
    --accent-primary: #f37803;
    --accent-secondary: #f28d0b;
    --accent-glow: #C08552;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-tertiary: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #f28d0b 0%, #f37803 100%);
    --gradient-2: linear-gradient(135deg, #f37803 0%, #f28d0b 100%);
    --gradient-glow: linear-gradient(135deg, rgba(192, 160, 53, 0.2) 0%, rgba(174, 126, 59, 0.2) 100%);
    --success: #50fa7b;
    --warning: #1f1c1f;
    --border-radius: 12px;
    --card-radius: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(137, 113, 47, 0.3);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(162, 109, 34, 0.5);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.25rem;
}

.btn-block {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url("assets/imgs/Prancheta22.png");
    background-position: center;   
    background-size: cover; 
    overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* intensidade da máscara */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(184, 41, 224, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(94, 23, 179, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin: 40px 0;
}

/* ===== PROVA SOCIAL ===== */
.social-proof {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(184, 41, 224, 0.2);
    border-bottom: 1px solid rgba(184, 41, 224, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-desc {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.certification-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.cert-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cert-icon i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.cert-icon span {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ===== IDENTIFICAÇÃO ===== */
.identification {
    background: var(--bg-primary);
}

.intro-text {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.pain-item {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: var(--card-radius);    
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.pain-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(10px);
}

.pain-item i {
    font-size: 1.8rem;
    color: var(--accent-primary);
}

.pain-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.truth-box {
    background: linear-gradient(135deg, rgba(184, 41, 224, 0.1) 0%, rgba(94, 23, 179, 0.1) 100%);
    border-left: 4px solid var(--accent-primary);
    padding: 40px;
    margin: 50px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    text-align: center;
}

.truth-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-primary);
    letter-spacing: 2px;
}

.truth-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.truth-box strong {
    color: var(--text-primary);
    display: block;
    margin-top: 20px;
}

.identification-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    border: 3px solid var(--accent-primary);
}

.image-glow {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: 1;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.credentials span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.credentials i {
    color: var(--accent-primary);
}

.about-cta {
    margin-top: 20px;
}

/* ===== SET VISUAL ===== */
.set-visual {
    background: var(--bg-primary);
}

.set-waveform {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.waveform-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 200px;
    margin-bottom: 30px;
}

.wave-bar {
    width: 8px;
    background: var(--gradient-1);
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 40px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 80px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 120px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 150px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 180px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 150px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 120px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 80px; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 40px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 60px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 100px; animation-delay: 1s; }
.wave-bar:nth-child(12) { height: 140px; animation-delay: 1.1s; }
.wave-bar:nth-child(13) { height: 170px; animation-delay: 1.2s; }
.wave-bar:nth-child(14) { height: 130px; animation-delay: 1.3s; }
.wave-bar:nth-child(15) { height: 90px; animation-delay: 1.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

.waveform-text {
    color: var(--text-tertiary);
    font-size: 1.1rem;
    text-align: center;
}

/* ===== LEARN SECTION ===== */
.learn {
    background: var(--bg-secondary);
}

.learn-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.learn-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);    
}

.learn-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.learn-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-top: 3px;
}

.learn-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ===== MODULES SCROLL ===== */
.modules-section {
    margin: 60px 0;
}

.modules-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.modules-scroll {
    overflow-x: auto;
    padding: 20px 0;
    cursor: grab;
}

.modules-scroll:active {
    cursor: grabbing;
}

.modules-scroll::-webkit-scrollbar {
    height: 8px;
}

.modules-scroll::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.modules-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

.modules-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.module-card {
    min-width: 300px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(176, 130, 55, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(167, 129, 34, 0.2);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.module-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.module-card p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.learn-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== BÔNUS ===== */
.bonus {
    background: var(--bg-primary);
}

.bonus-subtitle {
    text-align: center;
    color: var(--text-tertiary);
    margin-bottom: 50px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid rgba(160, 122, 41, 0.1);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(181, 114, 48, 0.2);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.bonus-card p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.bonus-cta {
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--card-radius);    
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.testimonial-avatar i {
    font-size: 3rem;
    color: var(--accent-primary);
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-location {
    color: var(--accent-primary);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonials-cta {
    text-align: center;
}

/* ===== OFFER ===== */
.offer {
    background: var(--bg-primary);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.offer-items {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--card-radius);    
}

.offer-items h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.offer-list {
    list-style: none;
    margin-bottom: 30px;
}

.offer-list li {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.offer-list i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.price-anchor {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.estimated-price {
    color: var(--text-tertiary);
    margin: 15px;    
}

.estimated-price span {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.final-price {
    margin: 15px 0;
    display: none;
}

.today-label {
    font-size: 0.9rem;
    color: var(--warning);
    letter-spacing: 2px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-left: 10px;
}

.offer-card {
    background: var(--gradient-1);
    padding: 40px;
    border-radius: var(--card-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--warning);
    color: var(--bg-primary);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.price-large {
    margin: 40px 0 30px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 5px;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.price-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: var(--success);
}

.payment-methods {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== GARANTIA ===== */
.guarantee {
    background: var(--bg-secondary);
}

.guarantee-box {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--accent-primary);
}

.guarantee-icon i {
    font-size: 4rem;
    color: var(--accent-primary);
}

.guarantee-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--bg-primary);
}

.cta-box {
    background: var(--gradient-1);
    padding: 60px;
    border-radius: var(--card-radius);
    text-align: center;
}

.cta-pre {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-pre strong {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.cta-divider {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--warning);
    margin: 30px 0;
}

.cta-highlight {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 30px 0;
    line-height: 1.6;
}

.cta-box h2 {
    font-size: 1.8rem;
    margin: 40px 0;
}

.cta-phrase {
    margin: 40px 0;
    padding: 30px;
    background: rgba(0,0,0,0.75);
    border-radius: var(--border-radius);
}

.cta-phrase p {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.guarantee-reminder {
    margin-top: 30px;
    font-size: 1rem;
}

.guarantee-reminder i {
    margin-right: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--accent-primary);
    padding: 30px 15px;
    text-align: center;
    color: var(--text-primary);
    border-top: 1px solid rgba(184, 41, 224, 0.1);
}

.footer p {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer a {
    display: inline-block;
}

.footer img {
    max-width: 180px;   /* controla tamanho */
    width: 100%;
    height: auto;       /* mantém proporção */
    opacity: 0.8;
    transition: 0.3s ease;
}

.footer img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .learn-list {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-phrase p {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .learn-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .final-price { 
        display: none;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
    }

    .about-text {
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .credentials {
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    @media (max-width: 768px) {
    .footer img {
        max-width: 140px;
    }

    .footer p {
        font-size: 14px;
    }
}
}

/* Adicione/modifique estas partes no arquivo styles.css */

/* ===== CORREÇÃO DOS ÍCONES NO LEARN LIST ===== */
.learn-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-top: 3px;
    min-width: 32px;
}

/* ===== CARROSSEL HORIZONTAL ===== */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    padding: 10px 0;
}

.modules-scroll {
    flex: 1;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-behavior: smooth;
    cursor: default;
    padding: 5px;
}

.modules-scroll::-webkit-scrollbar {
    display: none;
}

.modules-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
    will-change: transform;
}

.module-card {
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--card-radius);    
    transition: var(--transition);
    box-sizing: border-box;
}

/* Garantir que o conteúdo não seja cortado */
.module-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-primary);
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.module-card p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* Botões do carrossel */
.carousel-btn {
    background: var(--bg-card);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Dots do carrossel */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 10px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-primary);
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* Responsividade do carrossel */
@media (max-width: 1024px) {
    .module-card {
        width: 300px;
        min-width: 300px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .module-card {
        width: 280px;
        min-width: 280px;
        padding: 25px;
    }
    
    .module-card h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        gap: 8px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .module-card {
        width: 235px;
        min-width: 235px;
        padding: 20px;
        margin: 0 auto;
    }
    
    .module-card h4 {
        font-size: 1rem;
    }
    
    .module-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
     .module-card {
        width: 175px;
        min-width: 175px;
        padding: 20px;
        margin: 0 auto;
    }
}

/* Seções de vídeo */
.video-vsl {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 100%);
}

.video-depoimento {
    padding: 60px 0;
    background: #0a0a0f;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;    
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.depoimento-legenda {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .video-vsl,
    .video-depoimento {
        padding: 40px 0;
    }
}