/* Reset e Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #2f2f2f;
    --red-primary: #ff3030;
    --red-hover: #ff4d4d;
    --green-accent: #81ff4f;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 48, 48, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 20px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--text-primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Mobile Nav Styles */
@media (max-width: 992px) {
    .nav {
        position: fixed !important;
        top: 0 !important;
        right: -280px !important;
        width: 280px !important;
        height: 100vh !important;
        background-color: #111111 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 80px 30px 40px !important;
        gap: 0 !important;
        z-index: 1000 !important;
        transition: right 0.3s ease !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .nav.active {
        right: 0 !important;
    }

    .nav a {
        display: block !important;
        width: 100% !important;
        padding: 15px 0 !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        transition: color 0.2s, padding-left 0.2s !important;
    }

    .nav a:hover {
        color: var(--red-primary) !important;
        padding-left: 10px !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001 !important;
    }

    .mobile-menu-toggle.active svg path {
        stroke: var(--red-primary);
    }

    /* Overlay escuro */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
    }
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 48, 48, 0.1);
    border: 1px solid rgba(255, 48, 48, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--red-primary);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero h1 .highlight {
    color: var(--red-primary);
}

/* Countdown Timer */
.countdown-wrapper {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px 40px;
    max-width: 600px;
    margin: 30px auto;
    border: 1px solid var(--border-color);
}

.countdown-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px 25px;
    min-width: 80px;
    border: 1px solid var(--border-color);
}

.countdown-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 30px auto;
}

.hero-cta {
    margin-top: 30px;
}

.hero-image {
    margin-top: 50px;
}

.hero-image img {
    max-width: 800px;
    border-radius: 16px;
}

/* Section Base */
.section {
    padding: 100px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--red-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Entenda Section - Steps */
.entenda {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
}

.step-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 48, 48, 0.1);
    border: 1px solid rgba(255, 48, 48, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red-primary);
    margin-bottom: 15px;
}

.step-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red-primary);
    border-radius: 50%;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Video Section */
.video-section {
    text-align: center;
}

.video-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.video-container {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-content {
    flex: 1;
    text-align: left;
}

.video-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Vantagens Grid */
.vantagens {
    text-align: center;
}

.vantagens-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.vantagens-intro .section-title {
    max-width: 500px;
}

.vantagens-intro p {
    max-width: 400px;
    color: var(--text-secondary);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.vantagem-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.vantagem-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
}

.vantagem-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 48, 48, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vantagem-icon svg {
    width: 24px;
    height: 24px;
    color: var(--red-primary);
}

.vantagem-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vantagem-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Cards com Imagem */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card-content {
    padding: 25px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Comparação Section */
.comparacao {
    text-align: center;
}

.comparacao-wrapper {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 50px auto 0;
}

.comparacao-card {
    flex: 1;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
}

.comparacao-card.sem-curso {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.comparacao-card.com-curso {
    background: linear-gradient(135deg, rgba(129, 255, 79, 0.1), rgba(129, 255, 79, 0.05));
    border: 2px solid var(--green-accent);
}

.comparacao-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.comparacao-card h3 img {
    width: 30px;
    height: 30px;
}

.comparacao-list {
    list-style: none;
}

.comparacao-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.comparacao-list .icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.sem-curso .icon {
    background: rgba(255, 48, 48, 0.2);
    color: var(--red-primary);
}

.com-curso .icon {
    background: rgba(129, 255, 79, 0.2);
    color: var(--green-accent);
}

/* Depoimentos */
.depoimentos {
    text-align: center;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.depoimento-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.depoimento-card .quote {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimento-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-author-info h4 {
    font-size: 15px;
    font-weight: 600;
}

.depoimento-author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Segurança Section */
.seguranca {
    text-align: center;
}

.seguranca-content {
    max-width: 800px;
    margin: 0 auto;
}

.seguranca-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
}

.seguranca-step {
    text-align: center;
}

.seguranca-step-number {
    width: 50px;
    height: 50px;
    background: var(--red-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.seguranca-step p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 150px;
}

/* Preço Section */
.preco {
    text-align: center;
}

.preco-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    margin: 50px auto 0;
    border: 1px solid var(--border-color);
    position: relative;
}

.preco-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: rgba(255, 48, 48, 0.1);
    border: 1px solid rgba(255, 48, 48, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--red-primary);
    text-transform: uppercase;
}

.preco-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.preco-valor {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 5px;
}

.preco-valor small {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
}

.preco-parcelas {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.preco-parcelas span {
    color: var(--red-primary);
    font-weight: 600;
}

.preco-descricao {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.preco-cta {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.preco-features {
    list-style: none;
    margin-top: 30px;
    text-align: left;
}

.preco-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.preco-features li::before {
    content: '✓';
    color: var(--green-accent);
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-payment {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-payment img {
    height: 30px;
    opacity: 0.7;
}

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

/* Responsivo */
@media (max-width: 992px) {
    .steps-grid,
    .vantagens-grid,
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-wrapper {
        flex-direction: column;
    }

    .vantagens-intro {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Grids para coluna única */
    .steps-grid,
    .vantagens-grid,
    .depoimentos-grid,
    .feature-cards {
        grid-template-columns: 1fr;
    }

    .comparacao-wrapper {
        flex-direction: column;
    }

    /* Seções - reduzir padding */
    .section {
        padding: 60px 0;
    }

    /* Hero */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-image img {
        max-width: 100%;
    }

    /* Countdown - CRÍTICO para evitar overflow */
    .countdown-wrapper {
        padding: 20px 15px;
        max-width: 100%;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        padding: 12px 15px;
        min-width: 60px;
    }

    .countdown-value {
        font-size: 24px;
    }

    .countdown-label {
        font-size: 9px;
    }

    /* Gaps reduzidos */
    .vantagens-intro {
        gap: 20px;
    }

    .video-wrapper {
        gap: 30px;
    }

    .seguranca-steps {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Cards */
    .comparacao-card {
        padding: 25px 20px;
    }

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

    .preco-valor {
        font-size: 40px;
    }

    /* Video */
    .video-content h3 {
        font-size: 22px;
    }

    .video-content {
        text-align: center;
    }

    .header-cta .btn {
        display: none;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

    /* Hero */
    .hero {
        padding: 80px 0 40px;
    }

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

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-description {
        font-size: 14px;
    }

    /* Countdown */
    .countdown-wrapper {
        padding: 15px 10px;
    }

    .countdown {
        gap: 5px;
    }

    .countdown-item {
        padding: 10px 10px;
        min-width: 50px;
    }

    .countdown-value {
        font-size: 18px;
    }

    .countdown-label {
        font-size: 8px;
        letter-spacing: 0;
    }

    .countdown-title {
        font-size: 13px;
    }

    /* Títulos */
    .section-title {
        font-size: 22px;
    }

    /* Botões */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }

    /* Cards */
    .step-card,
    .vantagem-card,
    .depoimento-card {
        padding: 15px;
    }

    .feature-card-content {
        padding: 15px;
    }

    .comparacao-card {
        padding: 20px 15px;
    }

    /* Preço */
    .preco-card {
        padding: 25px 15px;
    }

    .preco-valor {
        font-size: 32px;
    }

    .preco-badge {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }

    /* Segurança */
    .seguranca-step {
        flex: 0 0 100%;
    }

    .seguranca-step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Logo */
    .logo img {
        height: 30px;
    }

    .logo span {
        font-size: 16px;
    }

    /* Video */
    .video-content h3 {
        font-size: 18px;
    }

    /* Section badge */
    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}
