/* Reset e Variáveis CSS */
:root {
    --background: 220 20% 4%;
    --foreground: 45 100% 96%;
    --card: 220 15% 8%;
    --card-foreground: 45 100% 96%;
    --popover: 220 15% 8%;
    --popover-foreground: 45 100% 96%;
    --primary: 160 70% 40%;
    --primary-foreground: 220 20% 4%;
    --secondary: 45 100% 50%;
    --secondary-foreground: 220 20% 4%;
    --muted: 220 15% 15%;
    --muted-foreground: 220 10% 60%;
    --accent: 45 100% 50%;
    --accent-foreground: 220 20% 4%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 220 15% 20%;
    --input: 220 15% 15%;
    --ring: 160 70% 40%;
    --radius: 0.75rem;
    --gold: 45 100% 50%;
    --gold-glow: 45 100% 60%;
    --emerald: 160 70% 40%;
    --emerald-glow: 160 80% 50%;
    --dark-card: 220 20% 6%;
    --gradient-gold: linear-gradient(135deg, hsl(45 100% 50%), hsl(35 100% 45%));
    --gradient-emerald: linear-gradient(135deg, hsl(160 70% 40%), hsl(170 80% 35%));
    --gradient-blue: linear-gradient(135deg, hsl(210 70% 50%), hsl(200 80% 45%));
    --gradient-green: linear-gradient(135deg, hsl(140 70% 50%), hsl(150 80% 45%));
    --gradient-dark: linear-gradient(180deg, hsl(220 20% 4%), hsl(220 25% 8%));
    --shadow-gold: 0 0 60px hsl(45 100% 50% / 0.3);
    --shadow-emerald: 0 0 60px hsl(160 70% 40% / 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar - Fundo invisível e thumb na cor do site */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: hsl(210 70% 50%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(210 80% 60%);
    background-clip: padding-box;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: hsl(210 70% 50%) transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 35px;
}

.container2 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 75px;
}

.container3 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 200px
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Animated Background */
.animated-background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.animated-background,
.grid-overlay,
.particles-container,
.escola-particles-container,
.tornado-container {
    will-change: transform, opacity;
}

/* Mobile/performance: mantém background mas remove animações pesadas */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    /* Remove apenas as animações de partículas e tornados */
    .particles-container,
    .escola-particles-container,
    .tornado-container {
        display: none !important;
    }

    /* Mantém o grid overlay mas pode reduzir opacidade */
    .grid-overlay {
        opacity: 0.02;
    }

    .navbar,
    .floating-navbar-container {
        backdrop-filter: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    }
}

.animated-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, hsl(var(--background)), hsl(220 25% 8%));
    z-index: 1;
}

.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
}

/* Grid overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    background-image: 
        linear-gradient(hsl(160, 70%, 40%) 1px, transparent 1px),
        linear-gradient(90deg, hsl(160, 70%, 40%) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Floating cards */
.floating-card {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.1;
    pointer-events: none;
    user-select: none;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform;
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: hsl(45, 100%, 50%);
    border-radius: 50%;
    animation: particle-float 10s ease-in-out infinite;
    will-change: transform, opacity;
}

.mentoria-page .particle {
    background: hsl(210, 70%, 50%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% - 2rem);
    max-width: 1400px;
    z-index: 50;
    transition: all 0.3s ease;
    background: hsl(var(--background) / 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid hsl(var(--border) / 0.3);
    border-radius: 1rem;
    box-shadow: 0 8px 32px -8px hsl(var(--foreground) / 0.2), 
                0 0 0 1px hsl(var(--border) / 0.1);
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
}

.navbar.scrolled {
    background: hsl(var(--background) / 0.9);
    backdrop-filter: blur(24px);
    box-shadow: 0 12px 40px -12px hsl(var(--foreground) / 0.3), 
                0 0 0 1px hsl(var(--border) / 0.2);
    top: 0.5rem;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: hsl(var(--foreground));
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.navbar .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

@media (max-width: 768px) {
    .navbar {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        transform: none;
        padding: 0.5rem 1rem;
    }

    .navbar.scrolled {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
    }
}

.nav-link {
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: hsl(var(--foreground));
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    color: hsl(var(--foreground));
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid hsl(var(--border) / 0.3);
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px -8px hsl(var(--foreground) / 0.2);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: hsl(var(--foreground));
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
}

/* Floating Navbar - Estilo da foto */
.floating-navbar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
    opacity: 1;
    will-change: transform, opacity;
}

/* Desktop - Navbar em cima (encostada no topo) */
@media (min-width: 769px) {
    .floating-navbar {
        top: 0.5rem; /* antes 1.5rem - reduz o espaço entre topo e navbar */
        width: auto;
        max-width: 90%;
    }
    
    .floating-navbar.hidden {
        transform: translateX(-50%) translateY(-120%) !important;
        opacity: 0 !important;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
    }
}

/* Mobile - Navbar embaixo */
@media (max-width: 768px) {
    .floating-navbar {
        top: 0.75rem;
        bottom: auto;
        width: calc(100% - 1rem);
        max-width: 640px;
        left: 50%;
        right: auto;
    }
    
    .floating-navbar.hidden {
        transform: translateX(-50%) translateY(-120%) !important;
        opacity: 0 !important;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
    }
}

@media (max-width: 480px) {
    .floating-navbar {
        top: 0.5rem;
        width: calc(100% - 0.5rem);
    }
    
    .floating-navbar-container {
        padding: 0.5rem 0.25rem;
        gap: 0.15rem;
    }
    
    .floating-nav-item {
        padding: 0.4rem 0.5rem;
        min-width: 45px;
    }
    
    .floating-nav-item .nav-icon {
        width: 16px;
        height: 16px;
    }
    
    .floating-nav-item .nav-text {
        font-size: 0.6rem;
    }
}

.floating-navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: hsl(220 15% 12% / 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px hsl(var(--border) / 0.2);
    border: 1px solid hsl(var(--border) / 0.3);
}

@media (max-width: 768px) {
    .floating-navbar-container {
        padding: 0.75rem 0.5rem;
        gap: 0.25rem;
    }
}

.floating-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    color: hsl(var(--foreground));
    transition: all 0.3s ease;
    position: relative;
    min-width: auto;
}

/* Desktop - Layout horizontal (ícone + texto lado a lado) */
@media (min-width: 769px) {
    .floating-nav-item {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Mobile - Layout vertical (ícone em cima, texto embaixo) */
@media (max-width: 768px) {
    .floating-nav-item {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.4rem 0.6rem;
        min-width: 44px;
        flex: 1 1 0;
        text-align: center;
    }
}

.floating-nav-item .nav-icon {
    stroke: currentColor;
    stroke-width: 2;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .floating-nav-item .nav-icon {
        width: 18px;
        height: 18px;
    }
}

.floating-nav-item .nav-text {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .floating-nav-item .nav-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .floating-nav-item .nav-text {
        font-size: 0.65rem;
    }
}

/* Item ativo - usando cores do site (gradiente gold padrão) */
.floating-nav-item.active {
    background: var(--gradient-gold);
    color: hsl(var(--background));
    box-shadow: 0 4px 12px hsl(45 100% 50% / 0.3);
}

.floating-nav-item.active .nav-icon {
    stroke: var(--gradient-gold);
}

/* Temas específicos para diferentes páginas - REMOVIDO: todas usam o mesmo estilo */
/* Padronizado para usar sempre o gradiente gold */
.mentoria-navbar .floating-nav-item.active,
.ebook-navbar .floating-nav-item.active,
.range-navbar .floating-nav-item.active,
.escola-navbar .floating-nav-item.active {
    background: var(--gradient-gold);
    box-shadow: 0 4px 12px hsl(45 100% 50% / 0.3);
}

.floating-nav-item:not(.active):hover {
    background: hsl(var(--muted) / 0.5);
    color: hsl(var(--foreground));
}

/* Mobile active: apenas brilho sutil, sem bloco grande */
@media (max-width: 768px) {
    .floating-nav-item.active {
        background: var(--gradient-gold);
        color: hsl(var(--background));
        box-shadow:
            0 2px 10px hsl(45 100% 50% / 0.35),
            0 0 0 1px hsl(45 100% 50% / 0.4);
        /* Garantir que o item ativo não mude de tamanho */
        flex: 1 1 0;
        min-width: 44px;
        padding: 0.4rem 0.6rem;
    }

    .floating-nav-item.active .nav-icon {
        stroke: hsl(var(--background));
    }

    /* Garantir que todos os temas tenham o mesmo comportamento no mobile */
    .escola-navbar .floating-nav-item.active,
    .mentoria-navbar .floating-nav-item.active,
    .range-navbar .floating-nav-item.active,
    .ebook-navbar .floating-nav-item.active {
        flex: 1 1 0;
        min-width: 44px;
        padding: 0.4rem 0.6rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

.btn-gold {
    background: linear-gradient(to right, hsl(45 100% 50%), hsl(48 100% 47%));
    color: hsl(var(--background));
    padding: 0.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    background: linear-gradient(to right, hsl(45 100% 47%), hsl(48 100% 44%));
    transform: scale(1.05);
    box-shadow: 0 0 20px hsl(45 100% 50% / 0.3);
}

.btn-hero {
    background: linear-gradient(to right, hsl(45 100% 50%), hsl(48 100% 47%), hsl(45 100% 50%));
    background-size: 200% 100%;
    color: hsl(var(--background));
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.5rem 2rem;
    border-radius: calc(var(--radius) + 2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: shimmer 3s linear infinite;
}

.btn-hero:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px hsl(45 100% 50% / 0.5);
}

.btn-hero:hover svg {
    transform: translateX(4px);
    transition: transform 0.3s;
}

.btn-hero svg {
    transition: transform 0.3s;
}

.btn-glass {
    background: hsl(var(--card) / 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--border) / 0.5);
    color: hsl(var(--foreground));
    padding: 0.75rem 1.5rem;
}

.btn-glass:hover {
    background: hsl(var(--card) / 0.6);
    border-color: hsl(var(--primary) / 0.5);
}

.btn-lg {
    height: 3rem;
    padding: 0 2rem;
    font-size: 1rem;
    border-radius: calc(var(--radius) - 2px);
}

.btn-xl {
    height: 3.5rem;
    padding: 0 2.5rem;
    font-size: 1.125rem;
    border-radius: calc(var(--radius) + 2px);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(var(--background) / 0.9), hsl(var(--background) / 0.7), hsl(var(--background)));
}

/* Hero Content Vertical - Layout como na imagem (apenas para index, cursos, mentoria) */
.hero-content-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Página ebook mantém layout lado a lado - não usar hero-content-vertical */
.hero-section .hero-content:not(.hero-content-vertical) {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
    justify-items: start !important;
    padding: 4rem 0 !important;
    position: relative !important;
    z-index: 10 !important;
}

.hero-section .hero-text:not(.hero-text-top) {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: flex-end !important;
    text-align: right !important;
    width: 100% !important;
}

.hero-section .hero-video:not(.hero-video-center) {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
}

/* Aumentar tamanho do vídeo na página ebook */
.hero-section .hero-video:not(.hero-video-center) .video-container {
    max-width: 50rem !important;
    width: 100% !important;
}

@media (max-width: 1023px) {
    .hero-section .hero-content:not(.hero-content-vertical) {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
    }

    .hero-section .hero-text:not(.hero-text-top) {
        align-items: center !important;
        text-align: center !important;
    }
}

.hero-text-top {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hero-video-center {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.video-caption {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
    text-align: center;
}

.hero-video-center .framer-embed-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.hero-video-center .video-container {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px -10px hsl(var(--accent) / 0.4);
    border: 2px solid hsl(var(--primary) / 0.3);
    transition: all 0.3s ease;
}

.hero-video-center .video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 80px -10px hsl(var(--accent) / 0.6);
    border-color: hsl(var(--primary));
}

/* Regras movidas para seção framer-embed-container abaixo */

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: hsl(var(--primary) / 0.2);
    color: hsl(var(--primary));
    border-radius: 9999px;
    border: 1px solid hsl(var(--primary) / 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    color: hsl(var(--foreground));
}

.text-gradient-red {
    background: linear-gradient(135deg, hsl(214, 70%, 55%), hsl(51, 80%, 50%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.3rem);
    color: hsl(var(--muted-foreground));
    max-width: 700px;
    margin: 0;
    line-height: 1.7;
    text-align: center;
    /* text-align: right; */
}

@media (max-width: 768px) {
    .hero-description {
        margin: 0 auto 2rem;
        text-align: center;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.stat-item {
    text-align: right;
}

@media (max-width: 768px) {
    .hero-stats {
        margin: 0 auto;
    }
    
    .stat-item {
        text-align: center;
    }
}

.stat-value {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: hsl(var(--muted-foreground));
    animation: bounce 2s infinite;
}

/* Products Section */
.products-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 9999px;
    border: 1px solid;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.products-grid-second {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 2rem auto 0;
}

@media (min-width: 768px) {
    .products-grid-second {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    position: relative;
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
    animation-fill-mode: forwards;
    will-change: transform;
}

.product-card:hover {
    transform: scale(1.02);
    border-color: hsl(var(--primary) / 0.5);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border-radius: 9999px;
}

.product-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    will-change: transform;
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--card)), transparent);
}

.product-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsl(var(--primary) / 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(var(--primary) / 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
}

.product-content {
    padding: 1.5rem;
}

.product-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--primary));
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.product-title {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.product-description {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    background: hsl(var(--muted) / 0.5);
    color: hsl(var(--muted-foreground));
    border-radius: 0.375rem;
}

.product-price {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.875rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.price-original {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-decoration: line-through;
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

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

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 2rem;
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 1rem;
    transition: transform 0.3s, border-color 0.3s;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
    animation-fill-mode: forwards;
    will-change: transform;
}

.benefit-card:hover {
    transform: scale(1.02);
    border-color: hsl(var(--primary) / 0.5);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.2), hsl(var(--secondary) / 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
    transition: transform 0.3s;
    will-change: transform;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.25rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, hsl(var(--muted) / 0.3), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    padding: 2rem;
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 1rem;
    transition: border-color 0.3s;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
    animation-fill-mode: forwards;
}

.testimonial-card:hover {
    border-color: hsl(var(--secondary) / 0.5);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--secondary)));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: hsl(var(--background));
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.testimonial-role {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.testimonial-profit {
    text-align: right;
}

.profit-value {
    font-size: 1.25rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    display: block;
}

.profit-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    font-size: 1rem;
    color: hsl(var(--secondary));
}

.testimonial-content {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
    overflow: hidden;
}

.cta-wrapper {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-bg-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.2), hsl(var(--card)), hsl(var(--secondary) / 0.2));
    border-radius: 1.5rem;
    filter: blur(48px);
}

.cta-card {
    position: relative;
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--primary) / 0.3);
    border-radius: 1.5rem;
    padding: 3rem 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 4rem;
    }
}

.cta-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, hsl(var(--secondary)), hsl(48 100% 47%));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: hsl(var(--background));
    animation: pulse-glow 3s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid hsl(var(--border) / 0.5);
    background: hsl(var(--card) / 0.3);
    backdrop-filter: blur(8px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (max-width: 767px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    font-size: 1.875rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsl(var(--muted) / 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.2);
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    border-top: 1px solid hsl(var(--border) / 0.5);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

/* Utility Classes */
.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Azul para Escola Básica */
.text-gradient-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-emerald {
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-foreground {
    color: hsl(var(--foreground));
}

.text-primary {
    color: hsl(var(--primary));
}

.text-secondary {
    color: hsl(var(--secondary));
}

.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

.bg-primary {
    background-color: hsl(var(--primary));
}

.bg-secondary {
    background-color: hsl(var(--secondary));
}

.bg-emerald {
    background-color: hsl(var(--emerald));
}

.font-semibold {
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

@keyframes card-spin {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-fill-mode: forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out infinite 2s;
}

.animate-shimmer {
    animation: shimmer 3s linear infinite;
}

.animate-card-spin {
    animation: card-spin 20s linear infinite;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out forwards;
}

/* Courses Page Styles */
.courses-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 0;
}

.courses-hero-section .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.courses-hero-section .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(var(--background) / 0.9), hsl(var(--background) / 0.7), hsl(var(--background)));
}

/* Cursos e Mentoria usam o mesmo layout vertical */
.courses-hero-section .hero-content-vertical,
.mentoria-hero-section .hero-content-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Regras movidas para seção framer-embed-container abaixo */

.courses-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.course-card {
    position: relative;
    background: hsl(var(--card) / 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
    animation-fill-mode: forwards;
}

.course-card:hover {
    transform: scale(1.02);
    border-color: hsl(var(--primary) / 0.5);
    box-shadow: 0 20px 40px -10px hsl(var(--primary) / 0.2);
}

.course-card.course-popular {
    border: 2px solid hsl(var(--secondary) / 0.5);
    box-shadow: 0 0 40px hsl(var(--secondary) / 0.2);
}

.course-card.course-popular:hover {
    border-color: hsl(var(--secondary) / 0.8);
    box-shadow: 0 0 60px hsl(var(--secondary) / 0.4);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(48, 100%, 47%));
    color: hsl(var(--background));
    border-radius: 9999px;
    box-shadow: 0 4px 12px hsl(45, 100%, 50% / 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.course-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--card)), transparent);
}

.course-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsl(var(--primary) / 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(var(--primary) / 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary));
}

.course-content {
    padding: 1.5rem;
}

.course-subtitle {
    font-size: 0.875rem;
    color: hsl(var(--primary));
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.course-title {
    font-size: 1.75rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.course-description {
    color: hsl(var(--muted-foreground));
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.course-price {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.courses-benefits-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

/* Mentoria Page - Blue Theme Styles */
.mentoria-page {
    --mentoria-primary: 210 70% 50%;
    --mentoria-primary-dark: 210 70% 40%;
    --mentoria-primary-light: 210 70% 60%;
    --mentoria-blue: 210 70% 50%;
    --mentoria-blue-glow: 210 80% 60%;
    --gradient-blue: linear-gradient(135deg, hsl(210 70% 50%), hsl(200 80% 45%));
    --shadow-blue: 0 0 60px hsl(210 70% 50% / 0.3);
}

/* Mentoria Background */
.mentoria-bg .grid-overlay.mentoria-grid {
    background-image: 
        linear-gradient(hsl(210, 70%, 50%) 1px, transparent 1px),
        linear-gradient(90deg, hsl(210, 70%, 50%) 1px, transparent 1px);
}

.mentoria-bg::before {
    background: linear-gradient(180deg, hsl(220 20% 4%), hsl(220 25% 8%));
}

/* Mentoria Navbar */
.mentoria-navbar.scrolled {
    background: hsl(220 20% 4% / 0.8);
    border-bottom-color: hsl(210 70% 50% / 0.3);
}

/* Mentoria Hero Section */
.mentoria-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 0;
}

.mentoria-hero-section .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/matheus2.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.mentoria-hero-section .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(220 20% 4% / 0.9), hsl(220 20% 4% / 0.7), hsl(220 20% 4%));
}

.mentoria-badge {
    background: hsl(210 70% 50% / 0.2);
    color: hsl(210 70% 50%);
    border-color: hsl(210 70% 50% / 0.3);
}

/* Blue Gradient Text */
.text-gradient-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blue Buttons */
.btn-blue {
    background: linear-gradient(to right, hsl(210 70% 50%), hsl(200 80% 45%));
    color: hsl(220 20% 4%);
    padding: 0.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-blue:hover {
    background: linear-gradient(to right, hsl(210 70% 47%), hsl(200 80% 42%));
    transform: scale(1.05);
    box-shadow: 0 0 20px hsl(210 70% 50% / 0.3);
}

.btn-blue-hero {
    background: linear-gradient(to right, hsl(210 70% 50%), hsl(200 80% 45%), hsl(210 70% 50%));
    background-size: 200% 100%;
    color: hsl(220 20% 4%);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.5rem 2rem;
    border-radius: calc(var(--radius) + 2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: shimmer 3s linear infinite;
}

.btn-blue-hero:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px hsl(210 70% 50% / 0.5);
}

.btn-blue-hero:hover svg {
    transform: translateX(4px);
    transition: transform 0.3s;
}

.btn-blue-hero svg {
    transition: transform 0.3s;
}

/* Green Gradient Text (Ebook) */
.text-gradient-green {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Green Buttons (Ebook) */
.btn-green {
    background: linear-gradient(to right, hsl(140 70% 50%), hsl(150 80% 45%));
    color: hsl(220 20% 4%);
    padding: 0.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-green:hover {
    background: linear-gradient(to right, hsl(140 70% 47%), hsl(150 80% 42%));
    transform: scale(1.05);
    box-shadow: 0 0 20px hsl(140 70% 50% / 0.3);
}

/* Ebook Navbar - REMOVIDO: estilos específicos removidos para padronizar */
/* Navbar flutuante não usa esses estilos, todos usam o mesmo comportamento */

.btn-glass-blue {
    background: hsl(220 15% 8% / 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(210 70% 50% / 0.5);
    color: hsl(45 100% 96%);
    padding: 0.75rem 1.5rem;
}

.btn-glass-blue:hover {
    background: hsl(220 15% 8% / 0.6);
    border-color: hsl(210 70% 50% / 0.8);
}

/* Mentoria Section */
.mentoria-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

.mentoria-section-badge {
    background: hsl(210 70% 50% / 0.2);
    color: hsl(210 70% 50%);
    border-color: hsl(210 70% 50% / 0.3);
}

.mentoria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mentoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mentoria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mentoria-card {
    position: relative;
    background: hsl(220 15% 8% / 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(220 15% 20% / 0.5);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
    animation-fill-mode: forwards;
}

.mentoria-card:hover {
    transform: scale(1.02);
    border-color: hsl(210 70% 50% / 0.5);
    box-shadow: 0 20px 40px -10px hsl(210 70% 50% / 0.2);
}

.mentoria-card.mentoria-popular {
    border: 2px solid hsl(210 70% 50% / 0.5);
    box-shadow: 0 0 40px hsl(210 70% 50% / 0.2);
}

.mentoria-card.mentoria-popular:hover {
    border-color: hsl(210 70% 50% / 0.8);
    box-shadow: 0 0 60px hsl(210 70% 50% / 0.4);
    transform: scale(1.03);
}

.mentoria-popular-badge {
    background: linear-gradient(135deg, hsl(210 70% 50%), hsl(200 80% 45%));
    color: hsl(220 20% 4%);
    box-shadow: 0 4px 12px hsl(210 70% 50% / 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.mentoria-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.mentoria-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.mentoria-card:hover .mentoria-image img {
    transform: scale(1.1);
}

.mentoria-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(220 15% 8%), transparent);
}

.mentoria-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsl(210 70% 50% / 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(210 70% 50% / 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(210 70% 50%);
}

.mentoria-content {
    padding: 1.5rem;
}

.mentoria-subtitle {
    font-size: 0.875rem;
    color: hsl(210 70% 50%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.mentoria-title {
    font-size: 1.75rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(45 100% 96%);
    margin-bottom: 0.75rem;
}

.mentoria-description {
    color: hsl(220 10% 60%);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mentoria-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mentoria-tag {
    background: hsl(210 70% 50% / 0.15);
    color: hsl(210 70% 60%);
    border: 1px solid hsl(210 70% 50% / 0.3);
}

.mentoria-price {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Mentoria Benefits */
.mentoria-benefits-section {
    position: relative;
    padding: 6rem 0;
    z-index: 10;
}

.mentoria-benefit-card {
    border-color: hsl(220 15% 20% / 0.5);
}

.mentoria-benefit-card:hover {
    border-color: hsl(210 70% 50% / 0.5);
}

.mentoria-benefit-icon {
    background: linear-gradient(to bottom right, hsl(210 70% 50% / 0.2), hsl(200 80% 45% / 0.2));
    color: hsl(210 70% 50%);
}

/* Mentoria CTA */
.mentoria-cta .mentoria-cta-blur {
    background: linear-gradient(to bottom right, hsl(210 70% 50% / 0.2), hsl(220 15% 8%), hsl(200 80% 45% / 0.2));
}

.mentoria-cta .cta-card {
    border-color: hsl(210 70% 50% / 0.3);
}

.mentoria-cta-icon {
    background: linear-gradient(to bottom right, hsl(210 70% 50%), hsl(200 80% 45%));
    color: hsl(220 20% 4%);
}

.mentoria-trust-dot {
    background-color: hsl(210 70% 50%);
}

/* ============================================
   ESCOLA PAGE - PREMIUM DESIGN
   ============================================ */

.escola-page {
    --premium-primary: 280 70% 60%;
    --premium-primary-dark: 280 70% 50%;
    --premium-primary-light: 280 70% 70%;
    --premium-secondary: 320 70% 60%;
    --premium-gold: 45 100% 60%;
    --gradient-premium: linear-gradient(135deg, hsl(280 70% 60%), hsl(320 70% 60%), hsl(45 100% 60%));
    --gradient-premium-subtle: linear-gradient(135deg, hsl(280 70% 60% / 0.8), hsl(320 70% 60% / 0.8));
    --shadow-premium: 0 0 80px hsl(280 70% 60% / 0.4);
    --shadow-premium-glow: 0 0 120px hsl(280 70% 60% / 0.6);
}

/* Premium Background */
.escola-bg .grid-overlay.escola-grid {
    background-image: 
        linear-gradient(hsl(280, 70%, 60%) 1px, transparent 1px),
        linear-gradient(90deg, hsl(280, 70%, 60%) 1px, transparent 1px);
    opacity: 0.08;
}

.escola-bg::before {
    background: linear-gradient(180deg, hsl(220 20% 4%), hsl(240 30% 6%));
}

/* Premium Navbar - REMOVIDO: navbar flutuante não usa esses estilos */
/* Estilos específicos removidos para padronizar com outras páginas */

.escola-logo {
    position: relative;
}

.premium-badge-nav {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    border: 1px solid hsl(280 70% 60% / 0.3);
    border-radius: 4px;
    background-color: hsl(280 70% 60% / 0.1);
    -webkit-text-fill-color: hsl(280 70% 60%);
}

.escola-nav-active {
    color: hsl(280 70% 60%);
    position: relative;
}

.escola-nav-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-premium);
    border-radius: 2px;
}

/* Premium Text Gradient */
.text-gradient-premium {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Premium Buttons */
.btn-premium {
    background: var(--gradient-premium);
    color: hsl(220 20% 4%);
    padding: 0.5rem 2rem;
    font-weight: 700;
    box-shadow: 0 4px 20px hsl(280 70% 60% / 0.3);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, hsl(280 70% 70% / 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-premium:hover::before {
    transform: translateX(100%);
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px hsl(280 70% 60% / 0.5);
}

.btn-premium-hero {
    background: var(--gradient-premium);
    background-size: 200% 200%;
    color: hsl(220 20% 4%);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: 0 20px 40px hsl(280 70% 60% / 0.4);
    animation: shimmer-premium 3s linear infinite, gradient-shift 5s ease infinite;
    position: relative;
    overflow: hidden;
}

.btn-premium-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, hsl(280 70% 80% / 0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shimmer-premium {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) translateY(200%) rotate(45deg);
    }
}

.btn-premium-hero:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 50px hsl(280 70% 60% / 0.6);
}

.btn-premium-hero:hover svg {
    transform: translateX(4px);
    transition: transform 0.3s;
}

.btn-premium-hero svg {
    transition: transform 0.3s;
}

.btn-premium-glass {
    background: hsl(220 15% 8% / 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(280 70% 60% / 0.4);
    color: hsl(45 100% 96%);
    padding: 0.75rem 1.5rem;
}

.btn-premium-glass:hover {
    background: hsl(220 15% 8% / 0.8);
    border-color: hsl(280 70% 60% / 0.6);
    box-shadow: 0 0 20px hsl(280 70% 60% / 0.3);
}

/* Premium Hero Section */
.escola-hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .escola-hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.escola-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3) contrast(1.2);
}

.escola-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(220 20% 4% / 0.95), hsl(240 30% 6% / 0.9), hsl(220 20% 4%));
}

.escola-hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(280 70% 60% / 0.15), transparent 70%);
    filter: blur(100px);
    animation: pulse-glow-premium 4s ease-in-out infinite;
}

@keyframes pulse-glow-premium {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.escola-hero-section .container.escola-hero-content {
    position: relative;
    z-index: 10;
    text-align: right;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    order: 1;
}

@media (max-width: 768px) {
    .escola-hero-section .container.escola-hero-content {
        text-align: center;
        align-items: center;
        order: 1;
    }
}

.escola-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: hsl(280 70% 60% / 0.15);
    backdrop-filter: blur(10px);
    color: hsl(280 70% 60%);
    border-radius: 9999px;
    border: 1px solid hsl(280 70% 60% / 0.3);
    box-shadow: 0 0 20px hsl(280 70% 60% / 0.2);
}

.premium-sparkle {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.escola-hero-title {
    font-size: clamp(3.5rem, 10vw, 5rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.escola-title-sub {
    font-size: 0.6em;
    display: block;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.escola-hero-description {
    font-size: clamp(1.25rem, 2.5vw, 0.75rem);
    color: hsl(220 10% 70%);
    max-width: 48rem;
    margin: 0 0 3rem 0;
    margin-left: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .escola-hero-description {
        margin: 0 auto 3rem;
    }
}

.escola-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 48rem;
    margin-left: auto;
}

@media (min-width: 640px) {
    .escola-hero-buttons {
        flex-direction: row;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .escola-hero-buttons {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
}

.escola-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 40rem;
    margin: 0 0 0 auto;
    padding: 1rem;
    background: hsl(220 15% 8% / 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid hsl(280 70% 60% / 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px hsl(280 70% 60% / 0.1);
}

@media (max-width: 768px) {
    .escola-hero-stats {
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .escola-hero-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

.escola-stat-item {
    text-align: center;
}

.escola-stat-value {
    font-size: clamp(2rem, 5vw, 2rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.escola-stat-label {
    font-size: 0.875rem;
    color: hsl(220 10% 60%);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.escola-stat-divider {
    width: 1px;
    background: hsl(280 70% 60% / 0.2);
    display: none;
}

@media (min-width: 768px) {
    .escola-stat-divider {
        display: block;
    }
}

/* Floating Premium Elements */
.escola-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-card-premium {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float-premium 8s ease-in-out infinite;
    animation-delay: var(--delay);
    left: var(--x);
    top: 20%;
    filter: drop-shadow(0 0 10px hsl(280 70% 60% / 0.5));
}

@keyframes float-premium {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg) scale(1);
    }
    75% {
        transform: translateY(-30px) rotate(3deg) scale(1.1);
    }
}

/* Premium Features Section */
.escola-features-section {
    position: relative;
    padding: 8rem 0;
    z-index: 10;
}

.escola-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.escola-section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: hsl(280 70% 60% / 0.15);
    color: hsl(280 70% 60%);
    border-radius: 9999px;
    border: 1px solid hsl(280 70% 60% / 0.3);
}

.escola-section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.escola-section-description {
    font-size: 1.25rem;
    color: hsl(220 10% 60%);
    max-width: 42rem;
    margin: 0 auto;
}

.escola-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .escola-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .escola-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.escola-feature-card {
    position: relative;
    padding: 2.5rem;
    background: hsl(220 15% 8% / 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(280 70% 60% / 0.2);
    border-radius: 1.5rem;
    transition: all 0.5s;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
    animation-fill-mode: forwards;
    overflow: hidden;
}

.premium-card {
    position: relative;
}

.premium-card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-premium);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    filter: blur(20px);
}

.escola-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: hsl(280 70% 60% / 0.5);
    box-shadow: 0 20px 60px hsl(280 70% 60% / 0.3);
}

.escola-feature-card:hover .premium-card-glow {
    opacity: 0.6;
}

.escola-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--gradient-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: hsl(220 20% 4%);
    box-shadow: 0 10px 30px hsl(280 70% 60% / 0.3);
}

.escola-feature-title {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(45 100% 96%);
    margin-bottom: 0.75rem;
}

.escola-feature-description {
    color: hsl(220 10% 60%);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.escola-feature-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsl(280 70% 60% / 0.15);
    color: hsl(280 70% 60%);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid hsl(280 70% 60% / 0.3);
}

/* Premium Pricing Section */
.escola-pricing-section {
    position: relative;
    padding: 8rem 0;
    z-index: 10;
}

.escola-pricing-wrapper {
    max-width: 50rem;
    margin: 0 auto;
}

.escola-pricing-card {
    position: relative;
    padding: 4rem 3rem;
    background: hsl(220 15% 8% / 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid hsl(280 70% 60% / 0.3);
    border-radius: 2rem;
    box-shadow: 0 30px 80px hsl(280 70% 60% / 0.2);
    overflow: hidden;
}

.premium-pricing-card {
    position: relative;
}

/* .premium-pricing-glow {
    position: absolute;
    inset: -4px;
    background: var(--gradient-premium);
    border-radius: 2rem;
    opacity: 0.3;
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow-premium 3s ease-in-out infinite;
} */

.premium-crown {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    animation: float-premium 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px hsl(45 100% 60% / 0.8));
}

.escola-pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.escola-pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient-premium);
    color: hsl(220 20% 4%);
    border-radius: 9999px;
}

.escola-pricing-title {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(45 100% 96%);
    margin-bottom: 0.5rem;
}

.escola-pricing-subtitle {
    color: hsl(220 10% 60%);
    font-size: 1.125rem;
}

.escola-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.escola-price-currency {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(220 10% 60%);
}

.escola-price-value {
    font-size: 5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.escola-price-period {
    font-size: 1.5rem;
    color: hsl(220 10% 60%);
}

.escola-pricing-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.escola-original-price {
    font-size: 1.25rem;
    color: hsl(220 10% 50%);
    text-decoration: line-through;
}

.escola-discount {
    padding: 0.25rem 0.75rem;
    background: hsl(320 70% 60% / 0.2);
    color: hsl(320 70% 60%);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid hsl(320 70% 60% / 0.3);
}

.escola-pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.escola-pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: hsl(220 10% 70%);
}

.escola-pricing-feature svg {
    color: hsl(280 70% 60%);
    flex-shrink: 0;
}

.escola-pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: hsl(280 70% 60% / 0.1);
    border-radius: 0.75rem;
    color: hsl(280 70% 60%);
    font-size: 0.875rem;
    border: 1px solid hsl(280 70% 60% / 0.2);
}

.escola-pricing-guarantee svg {
    flex-shrink: 0;
}

/* Premium CTA Section */
.escola-cta-section {
    position: relative;
    padding: 8rem 0;
    z-index: 10;
    overflow: hidden;
}

.escola-cta-wrapper {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.escola-cta-bg-blur {
    position: absolute;
    inset: 0;
    background: var(--gradient-premium);
    border-radius: 2rem;
    filter: blur(60px);
    opacity: 0.3;
}

.escola-cta-card {
    position: relative;
    padding: 4rem 2rem;
    background: hsl(220 15% 8% / 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid hsl(280 70% 60% / 0.3);
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 30px 80px hsl(280 70% 60% / 0.2);
}

@media (min-width: 768px) {
    .escola-cta-card {
        padding: 5rem 4rem;
    }
}

.escola-cta-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 1.5rem;
    background: var(--gradient-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: hsl(220 20% 4%);
    box-shadow: 0 20px 60px hsl(280 70% 60% / 0.4);
}

.escola-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.escola-cta-description {
    font-size: 1.25rem;
    color: hsl(220 10% 60%);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.escola-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .escola-cta-buttons {
        flex-direction: row;
    }
}

/* Premium Footer */
.escola-footer {
    border-top: 1px solid hsl(280 70% 60% / 0.2);
    background: hsl(220 15% 6% / 0.8);
    backdrop-filter: blur(20px);
}

.premium-badge-footer {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.5rem;
}

/* Premium Particles */
.escola-page .particle {
    background: hsl(280, 70%, 60%);
    box-shadow: 0 0 10px hsl(280 70% 60% / 0.8);
}

.escola-particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

/* ============================================
   TORNADO EFFECT - PREMIUM ANIMATION
   ============================================ */

.tornado-container {
    position: absolute;
    bottom: 0;
    width: 250px;
    height: 100vh;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
    animation: tornado-wobble 10s ease-in-out infinite;
    will-change: transform;
}

/* Funil shape - narrower at bottom, wider at top */
.tornado-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 200px;
    background: linear-gradient(to top, hsl(280 70% 60% / 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
    border-radius: 50% 50% 0 0;
}

.tornado-container::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 400px;
    background: radial-gradient(ellipse at center top, hsl(280 70% 60% / 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.tornado-container.tornado-left {
    left: 10%;
}

.tornado-container.tornado-right {
    right: 10%;
    left: auto;
}

@keyframes tornado-wobble {
    0%, 100% {
        transform: translateX(0) translateX(0);
    }
    25% {
        transform: translateX(10px);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-10px);
    }
}

.tornado-left {
    animation-name: tornado-wobble-left;
}

.tornado-right {
    animation-name: tornado-wobble-right;
}

@keyframes tornado-wobble-left {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(10px);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-10px);
    }
}

@keyframes tornado-wobble-right {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(10px);
    }
}

@media (max-width: 768px) {
    .tornado-container {
        width: 200px;
    }
    
    .tornado-container.tornado-left {
        left: 5%;
    }
    
    .tornado-container.tornado-right {
        right: 5%;
        left: auto;
    }
}

.tornado-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: hsl(280, 70%, 60%);
    border-radius: 50%;
    box-shadow: 0 0 10px hsl(280 70% 60% / 0.8), 0 0 20px hsl(280 70% 60% / 0.6);
    opacity: 0;
    animation: tornado-spiral 8s linear infinite;
    will-change: transform, opacity;
}

/* Tornado Cards */
.tornado-card {
    position: absolute;
    width: 30px;
    height: 42px;
    background: white;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    animation: tornado-card-spiral 10s linear infinite;
    will-change: transform, opacity;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tornado-card.red {
    color: #d32f2f;
}

.tornado-card.black {
    color: #212121;
}

/* Tornado Chips */
.tornado-chip {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    opacity: 0;
    animation: tornado-chip-spiral 9s linear infinite;
    will-change: transform, opacity;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.tornado-chip.orange {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: 2px solid #ff8c42;
}

.tornado-chip.gold {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border: 2px solid #ffb84d;
}

.tornado-chip::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes tornado-card-spiral {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.2);
    }
    5% {
        opacity: 0.9;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(12px) rotate(45deg) scale(0.25);
    }
    20% {
        transform: translateY(80vh) translateX(-15px) rotate(90deg) scale(0.35);
    }
    30% {
        transform: translateY(70vh) translateX(20px) rotate(135deg) scale(0.45);
    }
    40% {
        transform: translateY(60vh) translateX(-22px) rotate(180deg) scale(0.55);
    }
    50% {
        opacity: 0.95;
        transform: translateY(50vh) translateX(30px) rotate(225deg) scale(0.7);
    }
    60% {
        transform: translateY(40vh) translateX(-32px) rotate(270deg) scale(0.85);
    }
    70% {
        transform: translateY(30vh) translateX(42px) rotate(315deg) scale(1.1);
    }
    80% {
        opacity: 0.8;
        transform: translateY(20vh) translateX(-48px) rotate(360deg) scale(1.4);
    }
    90% {
        opacity: 0.5;
        transform: translateY(10vh) translateX(60px) rotate(405deg) scale(1.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) rotate(450deg) scale(2.3);
    }
}

@keyframes tornado-chip-spiral {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.15);
    }
    5% {
        opacity: 0.8;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) rotate(60deg) scale(0.2);
    }
    20% {
        transform: translateY(80vh) translateX(-12px) rotate(120deg) scale(0.3);
    }
    30% {
        transform: translateY(70vh) translateX(18px) rotate(180deg) scale(0.4);
    }
    40% {
        transform: translateY(60vh) translateX(-20px) rotate(240deg) scale(0.5);
    }
    50% {
        opacity: 0.9;
        transform: translateY(50vh) translateX(26px) rotate(300deg) scale(0.65);
    }
    60% {
        transform: translateY(40vh) translateX(-28px) rotate(360deg) scale(0.8);
    }
    70% {
        transform: translateY(30vh) translateX(38px) rotate(420deg) scale(1.1);
    }
    80% {
        opacity: 0.7;
        transform: translateY(20vh) translateX(-42px) rotate(480deg) scale(1.5);
    }
    90% {
        opacity: 0.4;
        transform: translateY(10vh) translateX(52px) rotate(540deg) scale(1.9);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) rotate(600deg) scale(2.4);
    }
}

.tornado-particle:nth-child(2n) {
    background: hsl(320, 70%, 60%);
    box-shadow: 0 0 10px hsl(320 70% 60% / 0.8), 0 0 20px hsl(320 70% 60% / 0.6);
}

.tornado-particle:nth-child(3n) {
    background: hsl(45, 100%, 60%);
    box-shadow: 0 0 10px hsl(45 100% 60% / 0.8), 0 0 20px hsl(45 100% 60% / 0.6);
    width: 5px;
    height: 5px;
}

@keyframes tornado-spiral {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.15);
    }
    5% {
        opacity: 0.8;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(8px) rotate(36deg) scale(0.2);
    }
    20% {
        transform: translateY(80vh) translateX(-10px) rotate(72deg) scale(0.3);
    }
    30% {
        transform: translateY(70vh) translateX(15px) rotate(108deg) scale(0.4);
    }
    40% {
        transform: translateY(60vh) translateX(-18px) rotate(144deg) scale(0.5);
    }
    50% {
        opacity: 0.9;
        transform: translateY(50vh) translateX(25px) rotate(180deg) scale(0.65);
    }
    60% {
        transform: translateY(40vh) translateX(-28px) rotate(216deg) scale(0.8);
    }
    70% {
        transform: translateY(30vh) translateX(38px) rotate(252deg) scale(1);
    }
    80% {
        opacity: 0.8;
        transform: translateY(20vh) translateX(-42px) rotate(288deg) scale(1.3);
    }
    90% {
        opacity: 0.5;
        transform: translateY(10vh) translateX(55px) rotate(324deg) scale(1.7);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) rotate(360deg) scale(2.2);
    }
}

/* Tornado layers - diferentes velocidades e tamanhos */
.tornado-layer-1 .tornado-particle {
    animation-duration: 6s;
    animation-timing-function: linear;
}

.tornado-layer-2 .tornado-particle {
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-delay: -1s;
}

.tornado-layer-3 .tornado-particle {
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: -2s;
}

.tornado-layer-4 .tornado-particle {
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-delay: -3s;
}

/* Tornado spiral variations for different layers */
.tornado-layer-1 .tornado-particle {
    animation-name: tornado-spiral;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.tornado-layer-2 .tornado-particle {
    animation-name: tornado-spiral-reverse;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Right tornado - reverse all animations */
.tornado-right .tornado-layer-1 .tornado-particle,
.tornado-right .tornado-layer-3 .tornado-particle {
    animation-name: tornado-spiral-reverse;
}

.tornado-right .tornado-layer-2 .tornado-particle,
.tornado-right .tornado-layer-4 .tornado-particle {
    animation-name: tornado-spiral;
}

.tornado-layer-3 .tornado-particle {
    animation-name: tornado-spiral-wide;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.tornado-layer-4 .tornado-particle {
    animation-name: tornado-spiral-tight;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tornado-spiral-reverse {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.15);
    }
    5% {
        opacity: 0.8;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(-8px) rotate(-36deg) scale(0.2);
    }
    20% {
        transform: translateY(80vh) translateX(10px) rotate(-72deg) scale(0.3);
    }
    30% {
        transform: translateY(70vh) translateX(-15px) rotate(-108deg) scale(0.4);
    }
    40% {
        transform: translateY(60vh) translateX(18px) rotate(-144deg) scale(0.5);
    }
    50% {
        opacity: 0.9;
        transform: translateY(50vh) translateX(-25px) rotate(-180deg) scale(0.65);
    }
    60% {
        transform: translateY(40vh) translateX(28px) rotate(-216deg) scale(0.8);
    }
    70% {
        transform: translateY(30vh) translateX(-38px) rotate(-252deg) scale(1);
    }
    80% {
        opacity: 0.7;
        transform: translateY(20vh) translateX(42px) rotate(-288deg) scale(1.3);
    }
    90% {
        opacity: 0.5;
        transform: translateY(10vh) translateX(-55px) rotate(-324deg) scale(1.7);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) rotate(-360deg) scale(2.2);
    }
}

@keyframes tornado-spiral-wide {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.15);
    }
    5% {
        opacity: 0.8;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(25px) rotate(36deg) scale(0.25);
    }
    20% {
        transform: translateY(80vh) translateX(-20px) rotate(72deg) scale(0.35);
    }
    30% {
        transform: translateY(70vh) translateX(30px) rotate(108deg) scale(0.45);
    }
    40% {
        transform: translateY(60vh) translateX(-25px) rotate(144deg) scale(0.55);
    }
    50% {
        opacity: 0.9;
        transform: translateY(50vh) translateX(35px) rotate(180deg) scale(0.65);
    }
    60% {
        transform: translateY(40vh) translateX(-30px) rotate(216deg) scale(0.8);
    }
    70% {
        transform: translateY(30vh) translateX(42px) rotate(252deg) scale(1);
    }
    80% {
        opacity: 0.7;
        transform: translateY(20vh) translateX(-38px) rotate(288deg) scale(1.3);
    }
    90% {
        opacity: 0.5;
        transform: translateY(10vh) translateX(50px) rotate(324deg) scale(1.7);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) rotate(360deg) scale(2.2);
    }
}

@keyframes tornado-spiral-tight {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.25);
    }
    5% {
        opacity: 0.8;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(8px) rotate(36deg) scale(0.3);
    }
    20% {
        transform: translateY(80vh) translateX(-6px) rotate(72deg) scale(0.4);
    }
    30% {
        transform: translateY(70vh) translateX(10px) rotate(108deg) scale(0.5);
    }
    40% {
        transform: translateY(60vh) translateX(-8px) rotate(144deg) scale(0.6);
    }
    50% {
        opacity: 0.9;
        transform: translateY(50vh) translateX(12px) rotate(180deg) scale(0.7);
    }
    60% {
        transform: translateY(40vh) translateX(-10px) rotate(216deg) scale(0.85);
    }
    70% {
        transform: translateY(30vh) translateX(15px) rotate(252deg) scale(1);
    }
    80% {
        opacity: 0.7;
        transform: translateY(20vh) translateX(-12px) rotate(288deg) scale(1.15);
    }
    90% {
        opacity: 0.5;
        transform: translateY(10vh) translateX(18px) rotate(324deg) scale(1.4);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) rotate(360deg) scale(1.8);
    }
}

/* Tornado core - partículas centrais mais brilhantes */
.tornado-core {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100vh;
    pointer-events: none;
    z-index: 4;
}

/* Core gets wider at top - funil shape */
.tornado-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 500px;
    background: radial-gradient(ellipse at center top, hsl(45 100% 70% / 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
}

/* Right tornado particles rotate in opposite direction */
.tornado-right .tornado-particle {
    animation-direction: reverse;
}

.tornado-right .tornado-core-particle {
    animation-direction: reverse;
}

/* Tornado card and chip colors for different pages */
.standard-tornado .tornado-card.red {
    background: linear-gradient(135deg, #fff, #ffe0e0);
    border-color: #ff6b6b;
}

.standard-tornado .tornado-card.black {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    border-color: #333;
}

.mentoria-tornado .tornado-card.red {
    background: linear-gradient(135deg, #fff, #e3f2fd);
    border-color: #2196f3;
}

.mentoria-tornado .tornado-card.black {
    background: linear-gradient(135deg, #fff, #e8eaf6);
    border-color: #3f51b5;
}

.escola-tornado .tornado-card.red {
    background: linear-gradient(135deg, #fff, #f3e5f5);
    border-color: #9c27b0;
}

.escola-tornado .tornado-card.black {
    background: linear-gradient(135deg, #fff, #ede7f6);
    border-color: #673ab7;
}

.tornado-core-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: hsl(45, 100%, 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 15px hsl(45 100% 70% / 1),
        0 0 30px hsl(45 100% 70% / 0.8),
        0 0 45px hsl(280 70% 60% / 0.6);
    opacity: 0;
    animation: tornado-core-spiral 7s linear infinite, tornado-core-pulse 2s ease-in-out infinite;
}

@keyframes tornado-core-pulse {
    0%, 100% {
        box-shadow: 
            0 0 15px hsl(45 100% 70% / 1),
            0 0 30px hsl(45 100% 70% / 0.8),
            0 0 45px hsl(280 70% 60% / 0.6);
    }
    50% {
        box-shadow: 
            0 0 25px hsl(45 100% 70% / 1),
            0 0 50px hsl(45 100% 70% / 0.9),
            0 0 75px hsl(280 70% 60% / 0.8);
    }
}

@keyframes tornado-core-spiral {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.15);
    }
    5% {
        opacity: 1;
    }
    20% {
        transform: translateY(80vh) translateX(0) rotate(180deg) scale(0.3);
    }
    40% {
        transform: translateY(60vh) translateX(0) rotate(360deg) scale(0.5);
    }
    60% {
        transform: translateY(40vh) translateX(0) rotate(540deg) scale(0.8);
    }
    80% {
        transform: translateY(20vh) translateX(0) rotate(720deg) scale(1.2);
    }
    95% {
        opacity: 0.9;
        transform: translateY(5vh) translateX(0) rotate(900deg) scale(1.6);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(0) rotate(1080deg) scale(2.2);
    }
}

/* Tornado base - partículas na base */
.tornado-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 250px;
    pointer-events: none;
    z-index: 2;
}

.tornado-right .tornado-base-particle {
    animation-direction: reverse;
}

.tornado-base-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: hsl(280, 70%, 50%);
    border-radius: 50%;
    box-shadow: 0 0 8px hsl(280 70% 50% / 0.6);
    opacity: 0.7;
    animation: tornado-base-swirl 4s ease-in-out infinite;
}

@keyframes tornado-base-swirl {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-40px) translateX(20px) rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-80px) translateX(0) rotate(180deg) scale(1.3);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-40px) translateX(-20px) rotate(270deg) scale(1.1);
        opacity: 0.5;
    }
}

/* Tornado para outras páginas também */
.tornado-container.standard-tornado {
    width: 300px;
}

.tornado-container.standard-tornado .tornado-particle {
    background: hsl(45, 100%, 50%);
    box-shadow: 0 0 10px hsl(45 100% 50% / 0.8), 0 0 20px hsl(45 100% 50% / 0.6);
}

.tornado-container.standard-tornado .tornado-chip.orange {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff8c42;
}

.tornado-container.mentoria-tornado {
    width: 300px;
}

.tornado-container.mentoria-tornado .tornado-particle {
    background: hsl(210, 70%, 50%);
    box-shadow: 0 0 10px hsl(210 70% 50% / 0.8), 0 0 20px hsl(210 70% 50% / 0.6);
}

.tornado-container.mentoria-tornado .tornado-chip.orange {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
    border-color: #64b5f6;
}

.tornado-container.escola-tornado .tornado-chip.orange {
    background: linear-gradient(135deg, #ab47bc, #8e24aa);
    border-color: #ba68c8;
}

/* Registration Section */
.registration-section {
    position: relative;
    padding: 6rem 0;
    min-height: 60vh;
    z-index: 10;
}

.registration-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.registration-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 20px 60px -10px hsl(var(--foreground) / 0.1);
    backdrop-filter: blur(10px);
}

.registration-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.registration-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.registration-subtitle {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
    color: hsl(var(--foreground));
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-input::placeholder {
    color: hsl(var(--muted-foreground));
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: hsl(var(--foreground));
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: hsl(var(--primary));
    flex-shrink: 0;
}

.link-terms {
    color: hsl(var(--primary));
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link-terms:hover {
    color: hsl(var(--primary) / 0.8);
}

.registration-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border));
}

.registration-login {
    color: hsl(var(--muted-foreground));
    font-size: 0.95rem;
}

.link-login {
    color: hsl(var(--primary));
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-login:hover {
    color: hsl(var(--primary) / 0.8);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
}

.btn-xl {
    padding: 1.125rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .registration-card {
        padding: 2rem 1.5rem;
    }

    .registration-title {
        font-size: 1.75rem;
    }
}

/* Terms Section */
.terms-section {
    position: relative;
    padding: 6rem 0;
    min-height: 60vh;
    z-index: 10;
}

.terms-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid hsl(var(--border));
}

.terms-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.terms-subtitle {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.terms-section-item {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px hsl(var(--foreground) / 0.05);
    transition: all 0.3s ease;
}

.terms-section-item:hover {
    box-shadow: 0 10px 15px -3px hsl(var(--foreground) / 0.1);
    transform: translateY(-2px);
}

.terms-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 1rem;
}

.terms-text {
    color: hsl(var(--foreground));
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

.terms-list {
    margin: 1rem 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.terms-list li {
    color: hsl(var(--foreground));
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.terms-list li::before {
    content: "•";
    color: hsl(var(--primary));
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid hsl(var(--border));
    text-align: center;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 4rem 0;
    }

    .terms-title {
        font-size: 2rem;
    }

    .terms-section-item {
        padding: 1.5rem;
    }

    .terms-section-title {
        font-size: 1.25rem;
    }
}

/* Login Form Additional Styles */
.form-options {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: -0.5rem;
}

.link-forgot {
    color: hsl(var(--primary));
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-forgot:hover {
    color: hsl(var(--primary) / 0.8);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Framer Embed Styles */
.framer-embed-container {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .framer-embed-container {
        justify-content: flex-start;
    }
}

/* Quando dentro de hero-video, ocupa 100% */
.hero-video .framer-embed-container,
.courses-hero-section .hero-video .framer-embed-container,
.mentoria-hero-section .hero-video .framer-embed-container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.framer-embed-container .video-container {
    position: relative;
    width: 100%;
    max-width: 64rem;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 80px -20px hsl(var(--accent) / 0.6);
    border: 2px solid hsl(var(--primary) / 0.3);
    transition: all 0.3s ease;
}

/* Quando dentro de hero-video, remove max-width */
.hero-video .framer-embed-container .video-container,
.courses-hero-section .hero-video .framer-embed-container .video-container,
.mentoria-hero-section .hero-video .framer-embed-container .video-container {
    max-width: 100%;
}

.framer-embed-container .video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 100px -20px hsl(var(--accent) / 0.8);
    border-color: hsl(var(--primary));
}

.framer-embed-container .video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Framer Embed dentro da Hero Section */
/* Removido - estrutura agora segue padrão range.php */

/* Escola hero section mantém estrutura própria */
.escola-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.escola-hero-section .framer-embed-container {
    order: 2;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 960px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.escola-hero-section .hero-content,
.escola-hero-section .escola-hero-content {
    order: 1;
    padding: 4rem 2rem;
    align-items: flex-end;
    text-align: right;
}

.escola-hero-section .escola-hero-content {
    order: 1;
    padding: 4rem 2rem;
    align-items: flex-end;
    text-align: right;
}

@media (max-width: 768px) {
    .courses-hero-section .hero-content,
    .mentoria-hero-section .hero-content,
    .escola-hero-section .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .escola-hero-section .escola-hero-content {
        align-items: center;
        text-align: center;
    }
}

/* Media queries para layout vertical */
@media (max-width: 768px) {
    .hero-content-vertical {
        padding: 3rem 0 4rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .escola-hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .escola-hero-section .hero-content,
    .escola-hero-section .escola-hero-content {
        align-items: center;
        text-align: center;
    }

    .escola-hero-section .framer-embed-container {
        order: 2;
        justify-content: center !important;
        width: 100%;
        padding: 0;
    }

    .framer-embed-container .video-container {
        max-width: 100%;
        box-shadow: 0 10px 40px -10px hsl(var(--accent) / 0.6);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(var(--foreground));
}

/* ============================================
   FOUNDERS SECTION
   ============================================ */
.founders-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: transparent;
    background-image: url('../img/backgroundsocios.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.founders-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, hsl(var(--background) / 0.85), hsl(var(--background) / 0.95));
    z-index: 1;
}

.founders-section > .container {
    position: relative;
    z-index: 2;
}

.founders-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.founder-profile-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: hsl(220 15% 8% / 0.8);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 8px 32px -8px hsl(var(--foreground) / 0.1);
    transition: all 0.3s;
}

.founder-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px -8px hsl(var(--foreground) / 0.15);
}

.founder-profile-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(142 76% 36% / 0.8), transparent);
    z-index: 1;
}

.founder-profile-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, hsl(142 76% 36% / 0.6), transparent);
    z-index: 1;
}

.founder-profile-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background: hsl(var(--card));
}

.founder-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    font-family: 'Oswald', sans-serif;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-profile-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, hsl(142 76% 36% / 0.2), transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.founder-profile-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}

.founder-profile-name {
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin: 0;
    line-height: 1.2;
}

.founder-profile-specialization {
    font-size: 1.125rem;
    color: hsl(var(--foreground));
    margin: 0;
    font-weight: 400;
}

.founder-profile-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder-profile-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: hsl(var(--foreground));
    font-size: 1rem;
    line-height: 1.6;
}

.achievement-icon {
    color: hsl(var(--gold));
    font-size: 0.75rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.founder-profile-description {
    font-size: 1rem;
    color: hsl(var(--foreground));
    line-height: 1.7;
    margin: 0;
}

.highlight-text {
    color: hsl(var(--gold));
    font-weight: 600;
}

@media (max-width: 968px) {
    .founder-profile-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-profile-image-wrapper {
        min-height: 300px;
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-profile-name {
        font-size: 2rem;
        text-align: center;
    }

    .founder-profile-specialization {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .founder-profile-card {
        padding: 1.5rem;
    }

    .founder-profile-image-wrapper {
        min-height: 250px;
    }

    .founder-profile-name {
        font-size: 1.75rem;
    }
}

/* ============================================
   PRODUCTS EXPLANATION SECTION
   ============================================ */
.products-explanation-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.products-explanation-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.product-explanation-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px -4px hsl(var(--foreground) / 0.1);
}

.product-explanation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px hsl(var(--foreground) / 0.15);
    border-color: hsl(var(--gold) / 0.5);
}

.product-explanation-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.product-explanation-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: hsl(var(--gold) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--gold));
    flex-shrink: 0;
}

.product-explanation-title-group {
    flex: 1;
}

.product-explanation-title {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: hsl(var(--foreground));
}

.product-explanation-subtitle {
    font-size: 0.95rem;
    color: hsl(var(--muted-foreground));
}

.product-explanation-content {
    color: hsl(var(--foreground));
}

.product-explanation-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.product-explanation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-explanation-list li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: hsl(var(--foreground));
}

.product-explanation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--gold));
    font-weight: 700;
}

.product-explanation-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: hsl(var(--gold) / 0.1);
    border-left: 3px solid hsl(var(--gold));
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: hsl(var(--foreground));
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: hsl(var(--background));
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.proof-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 16px -4px hsl(var(--foreground) / 0.1);
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px -4px hsl(var(--foreground) / 0.15);
    border-color: hsl(var(--gold) / 0.5);
}

.proof-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: hsl(var(--gold) / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--gold));
}

.proof-value {
    font-size: 3rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.proof-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.chip-ev-graph-container {
    margin-top: 4rem;
}

.chip-ev-graph-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 4px 16px -4px hsl(var(--foreground) / 0.1);
}

.chip-ev-title {
    font-size: 1.75rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.chip-ev-description {
    text-align: center;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.chip-ev-graph {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.graph-placeholder {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.graph-bar {
    width: 80px;
    background: var(--gradient-gold);
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem;
    position: relative;
    min-height: 200px;
    box-shadow: 0 4px 16px -4px hsl(var(--gold) / 0.4);
}

.graph-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--background));
    font-family: 'Oswald', sans-serif;
}

.graph-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.graph-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
}

.graph-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background: hsl(var(--background));
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    flex: 1;
    min-width: 120px;
}

.graph-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

.graph-stat-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
    }

    .product-explanation-header {
        flex-direction: column;
        text-align: center;
    }

    .graph-stats {
        flex-direction: column;
    }
}


