:root {
    --bg-color: #050505;
    --surface-color: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-purple: #8c52ff;
    --accent-purple-light: #c7a3ff;
    --accent-purple-dark: #5e17eb;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.footer-logo img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

#form-tbclass-formulario-pagina-principal-17394cf106760053bfae {
    margin-top: 20px !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

/* Typography & Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-purple-light) 0%, var(--accent-purple) 50%, var(--accent-purple-dark) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--accent-purple);
    font-weight: 600;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(140, 82, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(140, 82, 255, 0.3);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: var(--accent-purple);
}

.btn-outline:hover {
    background: rgba(140, 82, 255, 0.1);
    color: var(--text-primary);
}

.btn-text {
    background: transparent;
    color: var(--text-secondary);
    border-bottom: 1px solid transparent;
    padding: 0.5rem 0;
    border-radius: 0;
}

.btn-text:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent-purple);
}

/* Mouse Glow Effect */
.cursor-glow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 48px;
    width: auto;
    filter: none !important;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    z-index: 1;
    position: relative;
    max-width: 800px;
}

.eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-purple);
    display: block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Section General */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-title.big {
    font-size: 5rem;
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Concept Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.visual-card {
    padding: 2.5rem;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.visual-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.icon-glimmer {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

/* ========================================
   COMO FUNCIONA - SEÇÃO 4
   ======================================== */
.hiw-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hiw-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    /* Espaço entre cada item */
    margin-top: 1.5rem;
}

.hiw-checklist li {
    display: flex;
    align-items: flex-start;
    /* Alinha o ícone ao topo do texto */
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.hiw-checklist li i {
    color: var(--accent-purple);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    /* Alinhamento visual com a primeira linha */
    flex-shrink: 0;
    /* Impede o ícone de ser esmagado no mobile */
    background: rgba(140, 82, 255, 0.15);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-checklist .hl {
    color: var(--accent-purple-light);
    font-weight: 600;
    display: inline;
    white-space: normal;
}

.hiw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.hiw-tag {
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(140, 82, 255, 0.35);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    background: rgba(140, 82, 255, 0.05);
    transition: var(--transition-fast);
}

/* ========================================
   PRESENCIAL & PILARES
   ======================================== */
.presencial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pres-card {
    padding: 1.8rem 2rem;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    transition: var(--transition-fast);
}

.pres-card i {
    color: var(--accent-purple);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}


.presencial-quote {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--accent-purple);
    background: rgba(140, 82, 255, 0.05);
}

.benefits-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.benefit-card-2 {
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.bc2-icon i {
    color: var(--accent-purple);
    font-size: 1.6rem;
}

.benefit-card-2 h3 {
    color: var(--accent-purple-light);
}

/* ========================================
   INVESTIMENTO
   ======================================== */
.investimento-section {
    position: relative;
    overflow: hidden;
}

.investimento-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.investimento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 4rem;
}

.preco-valor {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.preco-full {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.preco-ou {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0.4rem 0;
}

.preco-parcelado {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.preco-parcelado strong {
    color: var(--accent-purple-light);
}

.preco-obs {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.invest-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.invest-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.invest-list li i {
    color: var(--accent-purple);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ========================================
   RD STATION FORM - CUSTOM DARK
   ======================================== */

#rd-section-mlirggoz {
    background: rgba(20, 20, 20, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 3rem !important;
    margin-top: 20px;
}

/* Ajustes da Bandeira/Input Phone do RD Station */
.phone-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.select2-container.phone-country {
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10;
    border: none !important;
    background: transparent !important;
}

.select2-choice {
    display: flex !important;
    align-items: center !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.select2-chosen {
    display: flex !important;
    align-items: center !important;
}

.bricks-form__input.phone {
    padding-left: 65px !important;
    /* Espaço para a bandeira customizada do RD */
    height: 48px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ========================================
   MOBILE RESPONSIVE (768px)
   ======================================== */
@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
    }

    .footer-logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 140px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .grid-2,
    .hiw-layout,
    .presencial-grid,
    .benefits-grid-2,
    .investimento-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .investimento-grid {
        padding: 2.5rem 1.5rem;
    }

    .preco-full {
        font-size: 2.2rem;
    }

    .preco-parcelado {
        font-size: 1.4rem;
    }

    /* Correção da Checklist no Mobile */
    .hiw-checklist {
        gap: 1.5rem;
    }

    .hiw-checklist li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hiw-checklist li i {
        width: 22px;
        height: 22px;
        margin-top: 0.2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-color);
        padding: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020202;
}

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