@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
--header-height: 6rem; /* Variável para a altura do menu */

/* Paleta Dark Premium */
--bg-dark: #0f1219;
--bg-light: rgba(255, 255, 255, 0.082);
--bg-white: #f3f3f3;
--bg-card: var(--bg-dark); 
--border-subtle: rgba(255, 255, 255, 0.226); 

            
--gold-primary: #cca471;
--gold-hover: #b58f5e;


--text-white: #ffffff;
--text-soft: #e2e2e2;
--text-gray: #d1d5db;
--text-muted: #9ca3af;

--radius-lg: 40px; /* Curvatura acentuada como na referência */
--radius-sm: 8px;

/* para menu */
--nav-height: 80px;
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
font-family: "Figtree", sans-serif;
line-height: 1.6;
color: #333;
background-color: var(--bg-white);
position: relative;
}

body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%; 
pointer-events: none;
z-index: -1;
}

/* Trava o scroll do corpo quando o menu está aberto */
body.menu-open {
overflow: hidden;
}

/* Header */

        /* --- MENU STICKY LIQUID GLASS --- */
        .navbar {
            position: fixed;
            top: 20px; /* Levemente afastado do topo para efeito flutuante */
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1400px;
            height: var(--nav-height);
            z-index: 1000;
            background: var(--bg-light);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;            
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 32px;
            transition: var(--transition);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.233);
            overflow: hidden;
        }
      
        /* Ajuste do layout para grudar no topo ao rolar muito (opcional, remove o float) */
        .navbar.scrolled {
            top: 0;
            border-radius: 0 0 16px 16px; 
            border-top: none;
            border-left: none;
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            
        }

        .navbar.scrolled svg {
            fill: var(--text-soft);
            height: 50px;
            transition: var(--transition);
        }

        /* --- LOGO --- */
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-soft);
            text-decoration: none;
            transition: var(--transition);
            z-index: 2; /* Garante que o logo fique acima do fundo expandido */
        }

        .nav-brand svg {
            fill: var(--text-gray);
            height: 52px;
            width: auto;
            transition: var(--transition);
        }
        
        .brand-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.2rem;
            line-height: 1;
            letter-spacing: -0.5px;
        }
        
        .brand-text span {
            display: block;
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 2px;
            color: var(--gold-primary);
        }       

        /* --- LINKS DE NAVEGAÇÃO --- */
        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-link {
            color: var(--text-soft);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover { color: var(--text-gray); }
        
        /* Indicador Hover */
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold-primary);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }

        /* Light Theme - Mudança de cor no modo claro */
        .navbar.nav-light-mode .nav-brand { color: var(--text-dark); }
        .navbar.nav-light-mode .nav-link { color: var(--text-dark); }
        .navbar.nav-light-mode svg { fill: var(--text-dark); }
        .navbar.nav-light-mode .nav-link:hover { color: var(--text-dark); }

        /* --- BOTÕES COM EFEITO DE ÍCONE DESLIZANTE --- */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-nav {
            padding: 10px 24px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            
            /* Flex para alinhar ícone e texto */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0; /* Começa sem espaço extra */
        }

        /* Estilo do Ícone (Inicialmente Oculto) */
        .btn-nav i {
            max-width: 0;
            opacity: 0;
            overflow: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        /* Efeito Hover: Revela o Ícone */
        .btn-nav:hover {
            gap: 8px; /* Cria o espaço */
        }

        .btn-nav:hover i {
            max-width: 20px;
            opacity: 1;
            transform: translateX(0);
        }

        /* Cores dos Botões */
        .btn-outline {
            background: transparent;
            color: var(--text-white);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .btn-outline:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
        }

        .btn-solid {
            background: var(--gold-primary);
            color: #0f1219;
            border: 1px solid var(--gold-primary);
        }
        .btn-solid:hover {
            background: var(--gold-hover);
            border-color: var(--gold-hover);
        }

        .btn-gradient {
            background: #dfdfdf;
            color: var(--text-dark);
            border: 1px solid var(--gold-primary);
        }
        .btn-gradient:hover {
            border-color: var(--bg-dark);
            color: var(--text-dark);
        }        

        /* Botões Escuros quando em fundo claro */
        .navbar.nav-light-mode .btn-outline {
            color: var(--text-dark);
            border-color: rgba(0, 0, 0, 0.2);
        }
        .navbar.nav-light-mode .btn-outline:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
        }

        /* Mudança de cor dos botões no modo claro */
        .navbar.nav-light-mode .btn-outline {
            color: var(--text-dark);
            border-color: rgba(0, 0, 0, 0.2);
        }
        .navbar.nav-light-mode .btn-outline:hover {
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            /*transform: translateY(-3px);*/
        }

        /* --- CONTROLE DO BOTÃO MOBILE (Hamburguer / Fechar) --- */
        .menu-toggle {
            display: none;
            color: white;
            cursor: pointer;
            z-index: 1001; /* Alto z-index para garantir clique */
        }
        .navbar.nav-light-mode .menu-toggle { color: var(--text-dark); }
        
        /* Configuração dos ícones SVG */
        .icon-menu, .icon-close {
            width: 32px;
            height: 32px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* Estado Inicial */
        .icon-menu { display: block; }
        .icon-close { display: none; }


        /* --------------------------------------------- */
        /* --- ADIÇÕES PARA O MENU MOBILE FUNCIONAR --- */
        /* --------------------------------------------- */

        @media (max-width: 1024px) {
            /* 1. Esconder os links e botões no estado normal mobile */
            .nav-links, .nav-actions {
                display: none;
            }
            
            /* 2. Mostrar o botão de toggle */
            .menu-toggle {
                display: block;
            }

            /* 3. ESTADO ATIVO: Quando a classe .mobile-active é adicionada via JS */
            .navbar.mobile-active {
                /* Ocupar a tela toda */
                height: 100vh;
                width: 100%;
                top: 0;
                left: 0;
                transform: none; /* Remove a centralização horizontal */
                border-radius: 0; /* Remove bordas arredondadas */
                
                /* Layout vertical */
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 100px; /* Espaço para não ficar em cima do logo */
                
                /* Fundo sólido para garantir leitura (ou glass muito forte) */
                background: #0f1219; 
            }

            /* Ajuste de cor do fundo no modo claro mobile */
            .navbar.nav-light-mode.mobile-active {
                background: #ffffff;
            }

            /* 4. TRANSFORMAÇÃO DOS ÍCONES (Hamburguer vira X) */
            .navbar.mobile-active .icon-menu {
                display: none;
            }
            .navbar.mobile-active .icon-close {
                display: block;
                animation: rotateIn 0.4s ease forwards;
            }

            /* 5. Mostrar e animar os Links no Mobile */
            .navbar.mobile-active .nav-links {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 32px;
                margin-bottom: 40px;
                width: 100%;
            }

            .navbar.mobile-active .nav-link {
                font-size: 1.5rem; /* Letra maior */
                opacity: 0;
                transform: translateY(20px);
                animation: slideUp 0.4s forwards;
            }
            
            /* Animação em cascata (um por um) */
            .navbar.mobile-active .nav-link:nth-child(1) { animation-delay: 0.1s; }
            .navbar.mobile-active .nav-link:nth-child(2) { animation-delay: 0.2s; }
            .navbar.mobile-active .nav-link:nth-child(3) { animation-delay: 0.3s; }
            .navbar.mobile-active .nav-link:nth-child(4) { animation-delay: 0.4s; }
            .navbar.mobile-active .nav-link:nth-child(5) { animation-delay: 0.5s; }

            /* 6. Mostrar e animar os Botões no Mobile */
            .navbar.mobile-active .nav-actions {
                display: flex;
                flex-direction: column;
                gap: 16px;
                width: 100%;
                align-items: center;
                opacity: 0;
                animation: slideUp 0.4s forwards 0.6s; /* Aparece por último */
            }
            
            .navbar.mobile-active .btn-nav {
                width: 80%; /* Botão largo */
                text-align: center;
                padding: 16px;
            }

            /* Fixar o logo e o botão de fechar no topo */
            .navbar.mobile-active .nav-brand {
                position: absolute;
                top: 24px;
                left: 24px;
            }
            .navbar.mobile-active .menu-toggle {
                position: absolute;
                top: 24px;
                right: 24px;
            }
        }

        @keyframes slideUp {
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes rotateIn {
            from { transform: rotate(-90deg); opacity: 0; }
            to { transform: rotate(0); opacity: 1; }
        }



    /* --- CSS DA HERO SECTION --- */
    
    /* Container principal */
    .hero-frame {
        /* Ajuste a altura conforme necessário (ex: 600px, 80vh) */
        height: 65vh; 
        min-height: 600px;
        width: 100%; /* Largura responsiva com margem lateral */    
        background-color: #0f1219;
        position: relative;
        overflow: hidden;
        color: #ffffff;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20% 0;
    }
 
 
    @media (max-width: 568px) {

      .hero-frame {padding: 90% 0;}
    
}    

    /* Imagem de fundo com zoom suave */
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/static/images/bg-hero-mba-gino-terentim.png'); /*https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=2070&auto=format&fit=crop*/
        background-size: cover;
        background-position: center;
        z-index: 1;
        transition: transform 30s ease;
    }
    
    .hero-frame:hover .hero-bg {
        transform: scale(1.38);
    }

    /* Camada escura para leitura do texto */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(15,18,25,0.5) 0%, rgba(5,5,5,0.9) 90%);
        z-index: 2;
    }

    /* Conteúdo central */
    .hero-content-wrapper {
        position: relative;
        z-index: 10;
        padding: 0 20px;
        max-width: 90%;
    }

    /* Tipografia */
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsivo: entre 2.5rem e 4.5rem */
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: 40px;
        color: #fff;
    }

    .highlight-gold {
        color: #cca471;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        position: relative;
        white-space: nowrap;
        padding: 0 10px;
    }

    /* Estilo da Tag/Badge do Curso */
    .hero-badge {
        display: inline-block;
        padding: 8px 20px;
        margin-bottom: 24px;
        border: 1px solid rgba(204, 164, 113, 0.3);
        border-radius: 50px;
        background-color: rgba(204, 164, 113, 0.1);
        color: #cca471;
        font-size: 0.8rem;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 2px;
        backdrop-filter: blur(4px);
    }

        .badge-dark {
        display: inline-block;
        padding: 8px 20px;
        margin-bottom: 24px;
        border: 1px solid #ffffff34;
        border-radius: 50px;
        background-color: #ffffff34;       
        color: #684c28;
        font-size: 0.8rem;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 2px;
        backdrop-filter: blur(4px);
        box-shadow: 0 4px 15px rgba(77, 64, 45, 0.144);
    }

    /* Animação do Risco Sublinhado */
    .highlight-gold::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0; /* Começa invisível (sem largura) */
        height: 4px; /* Espessura do risco */
        background-color: #cca471;
        border-radius: 2px;
        /* Animação: desenha em 0.8s após 0.5s de espera */
        animation: underlineAnim 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.5s;
    }

    @keyframes underlineAnim {
        to { width: 100%; }
    }

    .hero-subtitle {
        font-size: clamp(0.8rem, 5vw, 1.2rem); 
        color: #d1d5db;
        margin: 40px;
        line-height: 1.6;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Botão */
    .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #cca471;
        color: #0f1219;
        padding: 16px 40px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: transform 0.3s, background-color 0.3s;
    }

    .btn-cta:hover {
        background-color: #ffffff;
        transform: translateY(-3px);
    }

.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
border-radius: 6px;
}

.btn {
padding: 0.6rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
border: none;
cursor: pointer;
font-size: 1rem;
}

.btn-primary {
/*background: #C4A575;*/
background: linear-gradient(90deg,rgba(196, 165, 117, 1) 0%, rgba(244, 212, 162, 1) 100%);
color: #00122a;
border: none;
border-radius: 6px;
box-shadow: 0 4px 15px rgb(77 64 45 / 34%);
font-weight: 500;
font-family: 'Figtree', sans-serif;

}

.btn-primary:hover {
background: linear-gradient(135deg, rgba(244, 212, 162, 1) 0%, rgba(196, 165, 117, 1) 100%);
transform: translateY(-2px);
animation: fadeIn 5s;
opacity: 1;
box-shadow: 0 6px 20px rgba(73, 61, 43, 0.438);
transition: all 0.5s ease-in-out, color 0.5s ease-in-out;

}

.btn-secondary {
background: rgba(255,255,255,0.1);
color: white;
border: 2px solid rgba(255,255,255,0.3);
border-radius: 6px;
font-weight: 500;
font-family: 'Figtree', sans-serif;
animation: fadeIn 5s;
}

.btn-secondary:hover {
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
animation: fadeIn 5s;
opacity: 1;
}

/* Stats */
.stats {
display: flex;
justify-content: center;
gap: 4rem;
margin-top: 4rem;
flex-wrap: wrap;
}

.stat {
text-align: center;
}

.stat-number {
font-size: 3rem;
font-weight: 700;
color: #F59E0B;
display: block;
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 
0 0 15px rgba(0, 0, 0, 0.5);
}

.stat-label {
font-size: 1rem;
opacity: 0.9;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about {
padding: 6rem 2rem;
background: #c4a575;
}

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

.section-title {
font-size: 3rem;
font-weight: 700;
text-align: center;
margin-bottom: 3rem;
color: #14171f;
}

.about-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
margin-top: 3rem;
}

.about-card {
text-align: center;
padding: 2rem;
}

.about-card h4 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
color: #1e293b;
}

.about-card p {
color: #1e293b;
line-height: 1.6;
}

/* Professores Section */

.profes{
padding: 6rem 2rem;
background: var(--bg-dark);
}

.profes .container {
/*max-width: 70%;*/
margin: 0 auto;
}
    
    /* Container principal da seção */
    .faculty-section {
        padding-top: 80px;
        background-color: var(--bg-dark, #0f1219); /* Fallback se a variável falhar */
        position: relative;
        overflow: hidden;
    }

    /* Texto decorativo de fundo */
    .faculty-bg-text {
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Playfair Display', serif;
        font-size: 15vw;
        opacity: 0.03;
        color: var(--text-white, #ffffff);
        white-space: nowrap;
        pointer-events: none;
        z-index: 0;
        font-weight: 700;
        line-height: 1;
    }

    /* Container específico para não conflitar com o .container global */
    .prof-container {
        /*max-width: 1280px;*/
        margin: 0 auto;
        position: relative;
        z-index: 1;
        width: 100%;
    }

    /* --- CABEÇALHO DA SEÇÃO --- */
    .prof-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .prof-tag {
        color: var(--gold-primary, #cca471);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 16px;
        display: inline-block;
        border: 1px solid rgba(204, 164, 113, 0.3);
        padding: 8px 16px;
        border-radius: 50px;
    }

    /* Nome específico para não herdar cor preta do .section-title global */
    .prof-title {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        color: var(--text-white, #ffffff);
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .prof-title span {
        color: var(--gold-primary, #cca471);
        font-style: italic;
    }

    .prof-subtitle {
        color: var(--text-gray, #d1d5db);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
        font-weight: 300;
    }

    /* --- GRID DE PROFESSORES --- */
    .faculty-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    /* CARD DO PROFESSOR */
    .prof-card {
        background-color: #0a0c10; /* Um tom levemente diferente do bg-dark para contraste */
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .prof-card:hover {
        border-color: var(--gold-primary, #cca471);
        /*transform: translateY(-10px);*/
        box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    }

    /* Área da Imagem */
    .prof-image-wrapper {
        height: 380px;
        overflow: hidden;
        position: relative;
    }

    .prof-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transition: all 1.2s ease;
    }

    .prof-card:hover .prof-image {
        filter: grayscale(0%);
        transform: scale(1.2);
        transition: all 1.2s ease;
    }

    .prof-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, #0a0c10 10%, transparent 80%);
        z-index: 1;
    }

    /* Conteúdo do Card */
    .prof-content {
        padding: 24px 30px 40px;
        position: relative;
        z-index: 2;
        margin-top: -60px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .prof-role {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--gold-primary, #cca471);
        margin-bottom: 8px;
        font-weight: 600;
    }

    .prof-name {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 1.8rem;
        color: var(--text-white, #ffffff);
        margin-bottom: 16px;
        line-height: 1.1;
        font-weight: 700;
    }

    .prof-bio {
        color: var(--text-gray, #9ca3af);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 8px;
        opacity: 0.8;
        /*border-left: 2px solid rgba(255,255,255,0.1);
        padding-left: 15px;*/
    }

    /* Bottom Action Area */
    .prof-actions {
        margin-top: auto;
        display: flex;
   
        gap: 1rem;
        /*justify-content: center;*/
        flex-wrap: wrap;

        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding-top: 20px;
    }

    /* Badge */
    .prof-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.05);
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        color: #d1d5db;
    }
    
    .prof-badge i { color: var(--gold-primary, #cca471); }

    /* Botão do Card (Novo) */
    .btn-prof-details {
        background: transparent;
        border: 1px solid var(--gold-primary, #cca471);
        color: var(--gold-primary, #cca471);
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 0.8rem;
        text-transform: uppercase;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        font-family: 'Figtree', sans-serif;
    }

    .btn-prof-details:hover {
        background: var(--gold-primary, #cca471);
        color: #0f1219;
    }

    /* Destaque para o Coordenador */
    .prof-card.highlight {
        border-color: rgba(204, 164, 113, 0.3);
        background: #0a0c10;
    }

    /* Rodapé da seção */
    .prof-footer {
        text-align: center;
        margin-top: 80px;
    }
    
    .btn-gold-outline {
        display: inline-block;
        padding: 14px 40px;
        border: 1px solid var(--gold-primary, #cca471);
        color: var(--gold-primary, #cca471);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        transition: all 0.4s ease;
        border-radius: 4px;
        font-weight: 600;
    }
    
    .btn-gold-outline:hover {
        background-color: var(--gold-primary, #cca471);
        color: #000;
    }

    /* --- MODAL STYLES --- */
    .prof-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        z-index: 10000; /* Muito alto para cobrir tudo */
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        padding: 20px;
    }

    .prof-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .prof-modal-content {
        background-color: #0f1219;
        width: 100%;
        max-width: 900px;
        border-radius: 20px; /* Borda arredondada como na ref */
        display: flex;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0,0,0,0.5);
        border: 1px solid rgba(204, 164, 113, 0.2);
        transform: scale(0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .prof-modal-overlay.active .prof-modal-content {
        transform: scale(1);
    }

    /* Botão Fechar (X) */
    .prof-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
        border: none;
    }

    .prof-modal-close:hover {
        background: var(--gold-primary, #cca471);
        color: #000;
        transform: rotate(90deg);
    }

    /* Lado Esquerdo (Imagem) */
    .prof-modal-image-col {
        width: 40%;
        background-color: #050505;
        position: relative;
        overflow: hidden;
    }

    .prof-modal-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%); /* Estilo do site */
    }

    /* Lado Direito (Texto) */
    .prof-modal-text-col {
        width: 60%;
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        background: linear-gradient(145deg, #151b2b 0%, #0f1219 100%);
    }

    .prof-modal-label {
        color: var(--gold-primary, #cca471);
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .prof-modal-name {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 5px;
        line-height: 1;
    }

    .prof-modal-role {
        font-size: 0.7rem;
        color: var(--text-gray, #9ca3af);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 10px 0 20px 0;
    }

    .prof-modal-bio-title {
        color: var(--gold-primary, #cca471); /* Ou branco */
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .prof-modal-bio-text {
        color: #d1d5db;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        font-weight: 300;
        height: 30%;
        overflow: visible;
    }

    .prof-modal-footer {
        margin-top: auto;
        display: flex;
        /*justify-content: space-between;*/
        gap: 30px;
        align-items: center;
    }

    .prof-modal-social {
        font-size: 1.5rem;
        color: #fff;
        transition: 0.3s;
    }
    .prof-modal-social:hover { color: var(--gold-primary, #cca471); }

    .prof-modal-btn-close {
        background-color: #050505;
        color: #fff;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 10px 30px;
        border-radius: 50px;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1px;
        cursor: pointer;
        transition: 0.3s;
       
    }
    
    .prof-modal-btn-close:hover {
        border-color: var(--gold-primary, #cca471);
        color: var(--gold-primary, #cca471);
    }

    @media (max-width: 768px) {
        .prof-title { font-size: 2.5rem; }
        .faculty-bg-text { font-size: 20vw; top: 10%; }
        
        /* Mobile Modal */
        .prof-modal-content { flex-direction: column; height: auto; overflow-y: auto; }
        .prof-modal-image-col { width: 0; height: 0; visibility: hidden; }
        .prof-modal-text-col { width: 100%; padding: 30px 20px; }
    }    



/*Modalidades */
/* Container principal - centraliza os cards */
.gino-pricing-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 40px;
padding: 20px 0;
box-sizing: border-box;
}

/* Estilo base do Card */
.gino-card {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 30px 20px;
width: 100%;
max-width: 290px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
transition: transform 0.2s ease, box-shadow 0.2s ease;
display: flex;
flex-direction: column;
color: #333;
text-align: left;
}

.gino-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Títulos e Preços */
.gino-title {
font-size: 1.2rem;
font-weight: 700;
color: #0f172a; /* Azul Marinho */
margin: 0 0 5px 0;
}

.gino-price {
font-size: 1.8rem;
font-weight: 800;
color: #0f172a;
margin: 15px 0 5px 0;
}

.gino-sub {
font-size: 0.85rem;
color: #64748b;
margin-bottom: 20px;
}

/* Botão Padrão */
.gino-btn {
display: block;
width: 100%;
padding: 10px;
background-color: transparent;
border: 2px solid #14171f;
color: #14171f;
text-align: center;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
margin-bottom: 20px;
transition: 0.2s;
cursor: pointer;
}

.gino-btn:hover {
background-color: #14171f;
color: #fff;
}

/* Card Destaque (Advanced) */
.gino-card.highlight {
background-color: #14171f;
color: #ffffff;
border: none;
transform: scale(1.05);
z-index: 2;
}

/* NOVO: Efeito Hover específico para o destaque */
.gino-card.highlight:hover {
transform: scale(1.08) translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Fix para mobile: remove o scale se a tela for pequena */
@media (max-width: 768px) {
.gino-card.highlight { transform: none; }
.gino-card.highlight:hover { transform: translateY(-5px); }
}

.gino-card.highlight .gino-title,
.gino-card.highlight .gino-price { color: #ffffff; }
.gino-card.highlight .gino-sub { color: #94a3b8; }

.gino-card.highlight .gino-btn {
background-color: #ba955f; /* Verde */
border-color: #ba955f;
color: #ffffff;
}

.gino-card.highlight .gino-btn:hover {
background-color: #997a4b;
}

/* Lista de Benefícios */
.gino-list {
list-style: none;
padding: 0;
margin: 0;
font-size: 0.9rem;
}

.gino-list li {
margin-bottom: 10px;
display: flex;
align-items: center;
}

.gino-check {
color: #10b981; /* Verde */
margin-right: 10px;
font-weight: bold;
}


/* --- TOOLTIP MOBILE FRIENDLY --- */
.gino-info {
display: inline-flex;
justify-content: center;
align-items: center;
width: 18px;
height: 18px;
border-radius: 50%;
background-color: #e2e8f0;
color: #64748b;
font-size: 11px;
font-family: monospace; /* Aparência de código/info */

margin-left: 8px;
cursor: pointer;
position: relative;
outline: none; /* Remove borda azul nativa ao clicar */
flex-shrink: 0; /* Não deixa o ícone amassar */
}

.gino-card.highlight .gino-info {
background-color: rgba(255,255,255,0.2);
color: #fff;
}

/* Conteúdo do Tooltip (Balão) */
.gino-info::after {
content: attr(data-tooltip);
position: absolute;
bottom: 135%; /* Sobe um pouco mais */
left: 50%;
transform: translateX(-50%);
background-color: #1e293b; /* Fundo bem escuro */
color: #fff;
padding: 8px 12px;
border-radius: 6px;
font-size: 12px;
line-height: 1.4;
font-family: 'Figtree', sans-serif;
white-space: normal;
width: max-content;
max-width: 200px;
text-align: center;
z-index: 100;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);

/* Estado inicial: invisível */
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease, visibility 0.2s;
pointer-events: none;
}

/* Setinha do Tooltip */
.gino-info::before {
content: "";
position: absolute;
bottom: 115%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #1e293b transparent transparent transparent;

opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease;
}

/* Ativa no Hover (Desktop) OU no Focus (Clique/Toque Mobile) */
.gino-info:hover::after,
.gino-info:hover::before,
.gino-info:focus::after,
.gino-info:focus::before {
opacity: 1;
visibility: visible;
}

/* --- BOX DE VAGAS LIMITADAS --- */
.gino-limited-slots {
background-color: #303647;
color: #ffffff;
padding: 12px 15px;
border-radius: 8px; 
margin-top: auto; /* Empurra para o final do card */
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 600;
text-align: center;
gap: 8px; /* Espaço entre ícone e texto */
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
line-height: 1.3;
}

.gino-limited-slots .icon {
font-size: 1.1em; /* Tamanho do ícone */
line-height: 1; /* Alinhamento do ícone */
}

.gino-limited-slots-v2 {
background-color: #3036473a;
color: var(--text-dark);
padding: 12px 15px;
border-radius: 8px; 
margin-top: auto; /* Empurra para o final do card */
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 600;
text-align: center;
gap: 8px; /* Espaço entre ícone e texto */
/*box-shadow: 0 2px 4px rgba(0,0,0,0.2);*/
line-height: 1.3;
}


/* Pricing Section */
.pricing {
padding: 6rem 2rem;
background: #f0f4f8;;
}

/* CTA Section */
.cta {
padding: 8rem 3rem;
background: linear-gradient(349deg,rgba(0, 18, 42, 1) 0%, rgba(46, 71, 104, 1) 50%, rgba(63, 93, 140, 1) 100%);
background-image: url('/static/images/carrers-mba-gino-terentim.jpg');
background-size: cover;
background-position: top; /* 3. Centraliza a imagem na div */
background-repeat: no-repeat; /* 4. Evita que a imagem se repita */ 

color: white;
text-align: center;
}

.cta h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.cta p {
font-size: 1.25rem;
margin-bottom: 3rem;
opacity: 0.9;
}

/* Form */
.form-container {
max-width: 600px;
margin: 0 auto;
background: white;
padding: 3rem;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-bottom: 1.5rem;
}

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

.form-group label {
font-weight: 600;
margin-bottom: 0.5rem;
color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 0.75rem;
border: 2px solid #e5e7eb;
border-radius: 8px;
font-size: 1rem;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #7C3AED;
box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.required {
color: #ef4444;
}

.submit-btn {
width: 100%;
padding: 1rem;
background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
color: white;
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.submit-btn:hover {
background: linear-gradient(135deg, #6D28D9 0%, #9333EA 100%);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.payment-section {
display: none;
margin-top: 1rem;
}

.payment-section.show {
display: block;
}

/* Success/Error Messages */
.message {
padding: 1rem;
border-radius: 8px;
margin-bottom: 1rem;
display: none;
}

.message.success {
background: #dcfce7;
color: #166534;
border: 1px solid #bbf7d0;
}

.message.error {
background: #fef2f2;
color: #dc2626;
border: 1px solid #fecaca;
}

.message.show {
display: block;
}



/* New Features Banner */
.new-features-banner {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 3rem 0;
padding: 2rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
backdrop-filter: blur(10px);
}

.feature-highlight {
text-align: center;
padding: 1.5rem;
background: rgba(255, 255, 255, 0.9);
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.feature-highlight:hover {
transform: translateY(-10px);
}

.feature-highlight i {
font-size: 2rem;
color: #7C3AED;
margin-bottom: 1rem;
}

.feature-highlight h3 {
color: #1f2937;
margin-bottom: 1rem;
font-size: 1.25rem;
}

.feature-highlight p {
color: #6b7280;
font-size: 0.95rem;
margin: 0;
}


/* Container do FAQ */
.gino-faq-container {width: 100%;    background-color: #f3f3f3;}

.gino-faq-wrapper {
max-width: 800px;
margin: 0 auto;
color: #f0f4f8;
padding: 20px;
}

.gino-faq-title {
text-align: center;
color: #0f172a;
font-size: 2rem;
font-weight: 700;
margin-bottom: 10px;
}

.gino-faq-subtitle {
text-align: center;
color: #64748b;
margin-bottom: 40px;
font-size: 1rem;
}

/* Estilo de cada item (pergunta) */
.gino-faq-item {
background-color: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
margin-bottom: 15px;
overflow: hidden;
transition: all 0.3s ease;
}

.gino-faq-item:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
border-color: #cbd5e1;
}

/* O cabeçalho da pergunta (onde clica) */
.gino-faq-summary {
list-style: none;
padding: 20px;
cursor: pointer;
font-weight: 600;
color: #0f172a;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
}

/* Remove a seta padrão do navegador */
.gino-faq-summary::-webkit-details-marker {
display: none;
}

/* Ícone de + personalizado */
.gino-faq-summary::after {
content: '+';
font-size: 1.5rem;
color: var(--gold-primary);
font-weight: 400;
transition: transform 0.3s ease;
line-height: 1;
}

/* Quando aberto, o ícone vira um X (gira) */
.gino-faq-item[open] .gino-faq-summary::after {
transform: rotate(45deg);
}

.gino-faq-item[open] .gino-faq-summary {
border-bottom: 1px solid #f1f5f9;
background-color: #f8fafc;
}

/* O texto da resposta */
.gino-faq-content {
padding: 20px;
line-height: 1.6;
color: #475569;
font-size: 0.95rem;
background-color: #ffffff;
}

/* Destaques no texto */
.gino-faq-content strong {
color: #0f172a;
}


        /* --- CONTAINER FLUTUANTE --- */
        

        .footer-floating-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            /*padding: 0 20px;   */
            margin-bottom: 3rem;         
        }

        .div-img-footer {margin: 0 auto; align-items: center; justify-content: center; text-align: center}
        .div-img-footer img {width: 5%;}

        .footer-card {
            background-color: var(--bg-dark);
            border-radius: var(--radius-lg);
            padding: 60px 60px 30px;
            position: relative;
            border: 1px solid var(--border-subtle);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            overflow: hidden;
            margin: 1rem;
        }

        /* Efeito de brilho no topo da borda */
        .footer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        /* --- SEÇÃO SUPERIOR: CTA --- */
        .footer-cta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-subtle);
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .cta-text h2 {
            font-size: 2rem;
            margin: 0 0 6px 0;
            color: var(--text-soft);
        }

        .cta-text p {
            color: var(--text-muted);
            margin: 0;
            font-size: 1rem;
        }

        .cta-btn {
            background: var(--gold-primary);
            color: #0f1219;
            padding: 16px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            color: #000;
        }

        /* --- SEÇÃO PRINCIPAL: GRID --- */
        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Logo ocupa mais espaço */
            gap: 40px;
            margin: 40px 0;
        }

        /* Coluna da Marca */
        .brand-col {
            padding-right: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            text-decoration: none;
            color: white;
        }
        
        .footer-logo svg {
            height: 52px;
            fill: var(--gold-primary);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1;
        }

        .logo-text span {
            display: block;
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold-primary);
            margin-top: 3px;
        }

        .brand-tagline {
            color: var(--text-soft);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .social-row {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: var(--gold-primary);
            color: #000;
        }

        /* Colunas de Links */
        .link-col h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-white);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .link-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .link-col li {
            margin-bottom: 12px;
        }

        .link-col a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: 0.3s;
            position: relative;
            padding-left: 0;
        }

        .link-col a:hover {
            color: var(--gold-primary);
            padding-left: 5px;
        }

        /* --- RODAPÉ INFERIOR --- */
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #6b7280;
            flex-wrap: wrap;
            gap: 15px;
        }

        .legal-links a {
            color: #6b7280;
            text-decoration: none;
            margin-left: 20px;
            transition: 0.3s;
        }

        .legal-links a:hover {
            color: var(--text-white);
        }

        /* Mobile Responsividade */


        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
            .brand-col {
                grid-column: 1 / -1;
                padding-right: 0;
                margin-bottom: 20px;
            }
            
        /* Grid Sobre o Programa */    
            .am-content-wrapper {
                grid-template-columns: 1fr !important; /* Força uma coluna */
                gap: 40px;
                display: flex;
                flex-direction: column;
        }
        
            .am-visual-area {
                height: 350px; /* Altura ajustada para mobile */
                width: 100%;
                order: -1; /* Move a imagem para o topo */
        }
        
        .am-header { 
            margin-bottom: 40px; 
        }
        
        .am-title { 
            font-size: 2.2rem; 
        }
        
        .am-feature-item {
            padding: 20px;
        }    
        }

        
       @media (max-width: 768px) {
        .cta-title { font-size: 2.5rem; }
        .cta-cards-grid { grid-template-columns: 5fr!important; }
        .cta-actions-row { flex-direction: column; width: 100%; }
        .btn-slide-icon { width: 100%; }
        .cta-card { align-items: center; text-align: center; }
        .cta-card::before { width: 100%; height: 4px; top: auto; bottom: 0; } /* Barra em baixo no mobile */
    }     
    
    
    @media (max-width: 600px) {
            .footer-card {
                padding: 40px 24px 24px;
            }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-btn {
                width: 100%;
                justify-content: center;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .legal-links {
                margin-left: -20px; /* Ajuste para o primeiro item */
            }
            
            .div-img-footer img {width: 15%;}

        }


/* --- CLASSE PADRÃO: Ícone Deslizante no Hover --- */

.btn-slide-icon {
    /* Estrutura Flex para alinhar texto e ícone */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0; /* Inicia sem espaço entre os elementos */
    
    /* Transição suave para o gap e padding */
    transition: gap 0.3s ease, padding 0.3s ease, transform 0.3s ease;
}

/* Estilo do ícone (<i> ou <svg>) dentro do botão */
.btn-slide-icon i,
.btn-slide-icon svg {
    max-width: 0;       /* Largura zero esconde o elemento */
    opacity: 0;         /* Invisível */
    overflow: hidden;   /* Garante que nada vaze */
    transform: translateX(-10px); /* Começa deslocado para a esquerda */
    transition: all 0.3s ease;    /* Animação de entrada */
    white-space: nowrap;          /* Impede quebra de linha */
}

/* --- EFEITO HOVER --- */

.btn-slide-icon:hover {
    gap: 10px; /* Cria o espaço entre texto e ícone */
    
    /* Opcional: Adiciona um padding extra na direita para compensar o ícone */
    /* Se o seu botão tiver padding fixo, você pode remover isso ou ajustar */
    padding-right: 24px; 
}

.btn-slide-icon:hover i,
.btn-slide-icon:hover svg {
    max-width: 20px; /* Define a largura do ícone (ajuste conforme necessário) */
    opacity: 1;      /* Torna visível */
    transform: translateX(0); /* Volta para o lugar original */
}    


    /* --- SEÇÃO SOBRE MODERN (SCOPED) --- */
    
    .about-modern-section {
        padding: 120px 20px;
        background-color: var(--gold-primary, #cca471);
        position: relative;
        overflow: hidden;
        font-family: 'Figtree', sans-serif;
    }

    .am-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* Cabeçalho */
    .am-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px;
    }

    .am-tag {
        color: var(--text-white, #ffffff);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 600;
        margin-bottom: 15px;
        display: block;
    }

    .am-title {
        font-size: 3rem;
        color: var(--bg-dark, #0f1219);
        margin: 0 0 25px 0;
        line-height: 1.1;
    }

    .am-desc {
        font-size: 1.1rem;
        color: var(--bg-dark, #0f1219);
        line-height: 1.7;
        font-weight: 300;
    }

    /* --- LAYOUT PRINCIPAL --- */
    .am-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        min-height: 500px;
    }

    /* Lista Interativa (Esquerda) */
    .am-features-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .am-feature-item {
        padding: 30px;
        border-left: 3px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all 0.4s ease;
        position: relative;
        border-radius: 16px;
    }

    /* Estado Ativo/Hover da Lista */
    .am-feature-item.active,
    .am-feature-item:hover {
        border-left-color: var(--bg-dark, #0f1219);
        background: linear-gradient(90deg, #b7884c 0%, transparent 100%);
    }

    .am-feature-title {
        font-size: 1.5rem;
        font-weight: 300;
        color: #f5e8d7;
        margin: 0 0 10px 0;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .am-feature-item.active .am-feature-title {
        color: var(--bg-dark, #0f1219);
        font-weight: 700;
    }

    .am-feature-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
    }

    /* Expandir texto no ativo */
    .am-feature-item.active .am-feature-desc {
        max-height: 150px;
        opacity: 1;
        margin-top: 15px;
    }

    .am-arrow {
        font-size: 1rem;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s;
    }

    .am-feature-item.active .am-arrow {
        opacity: 1;
        transform: translateX(0);
        color: var(--bg-dark, #0f1219);
    }

    /* Área Visual (Direita) */
    .am-visual-area {
        position: relative;
        height: 500px;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .am-image-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
        transform: scale(1.1);
        z-index: 1;
    }

    .am-image-panel.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    /* Overlay na imagem */
    .am-image-panel::after {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(180deg, rgba(15, 18, 25, 0.2) 0%, rgba(15, 18, 25, 0.8) 100%);
    }

    /* Conteúdo flutuante sobre a imagem */
    .am-visual-content {
        position: absolute;
        bottom: 40px;
        left: 40px;
        z-index: 3;
        max-width: 80%;
    }

    .am-visual-icon {
        width: 60px;
        height: 60px;
        background: var(--gold-primary, #cca471);
        color: #0f1219;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

 /* --- SEÇÃO CTA PREMIUM (SCOPED) --- */
    
    .cta-premium-section {
        position: relative;
        padding: 120px 20px;
        background-color: var(--bg-dark, #0f1219);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cta-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        filter: grayscale(100%) contrast(1.2);
        opacity: 0.15; /* Bem sutil */
        z-index: 0;
        transition: transform 15s ease;
    }

    /* Animação lenta de zoom no fundo */
    .cta-premium-section:hover .cta-bg-image {
        transform: scale(1.55);
        transition: transform 20s ease;
    }

    /* Gradiente Overlay para focar no centro */
    .cta-bg-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: radial-gradient(circle, transparent 0%, var(--bg-dark, #0f1219) 90%);
        z-index: 1;
    }

    .cta-container {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        width: 100%;
        text-align: center;
    }

    /* --- CABEÇALHO --- */
    .cta-header {
        margin-bottom: 60px;
    }

    .cta-subtitle {
        font-size: 1.2rem;
        color: var(--text-gray, #d1d5db);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
        font-weight: 300;
    }

    /* --- CARDS DE DESTAQUE --- */
    .cta-cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .cta-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 16px;
        text-align: left;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: var(--gold-primary, #cca471);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    /* Brilho dourado no hover */
    .cta-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 4px; height: 100%;
        background: var(--gold-primary, #cca471);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .cta-card:hover::before {
        opacity: 1;
    }

    .card-icon-large {
        font-size: 2.5rem;
        color: var(--gold-primary, #cca471);
        margin-bottom: 20px;
    }

    .card-title-cta {
        font-size: 1.5rem;
        color: var(--text-white, #ffffff);
        margin: 0 0 10px 0;
    }

    .card-desc-cta {
        font-size: 0.95rem;
        color: var(--text-gray, #9ca3af);
        line-height: 1.6;
        margin: 0;
    }

    /* --- BOTÕES DE AÇÃO (Com sua classe btn-slide-icon) --- */
    .cta-actions-row {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Replicando a classe btn-slide-icon aqui para garantir funcionamento */
    .btn-slide-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        transition: gap 0.3s ease, padding 0.3s ease, transform 0.3s ease;
        font-family: 'Figtree', 'sans-serif';
    }
    .btn-slide-icon i {
        max-width: 0; opacity: 0; overflow: hidden; transform: translateX(-10px);
        transition: all 0.3s ease; white-space: nowrap;
    }
    .btn-slide-icon:hover { gap: 10px; padding-right: 24px; transform: translateY(-3px); }
    .btn-slide-icon:hover i { max-width: 20px; opacity: 1; transform: translateX(0); }

    /* Estilos Específicos dos Botões CTA */
    .btn-cta-primary {
        background: var(--gold-primary, #cca471);
        color: #0f1219;
        padding: 18px 40px;
        border-radius: 6px;
        font-weight: 700;
        text-decoration: none;
        font-size: 1.1rem;
        border: 1px solid var(--gold-primary, #cca471);
    }
    
    .btn-cta-primary:hover {
        background: #fff;
        border-color: #fff;
    }

    .btn-cta-secondary {
        background: transparent;
        color: var(--text-white, #ffffff);
        padding: 18px 40px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        font-size: 1.1rem;
        border: 1px solid rgba(255,255,255,0.3);
        backdrop-filter: blur(5px);
    }

    .btn-cta-secondary:hover {
        border-color: var(--gold-primary, #cca471);
        color: var(--gold-primary, #cca471);
    }

/* --- TABELA EXPANSÍVEL (INLINE) --- */

.table-trigger-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Container que expande/colapsa */
.table-expand-container {
    max-height: 0; /* Altura zero inicial = oculto */
    overflow: hidden; /* Esconde conteúdo que excede */
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease; /* Animação suave */
    opacity: 0;
    background: #f8fafc; /* Fundo claro para contraste na área de pricing */
    border-radius: 16px;
    margin: 0 auto;
    max-width: 1200px;
    border: 1px solid #e2e8f0;
}

/* Classe ativa para mostrar a tabela */
.table-expand-container.active {
    max-height: 3000px; /* Valor alto o suficiente para caber todo o conteúdo */
    opacity: 1;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.table-inner-content {
    padding: 40px 20px;
}

/* Cabeçalho Interno */
.table-header-inline {
    text-align: center;
    margin-bottom: 30px;
}

.table-title-inline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    color: #0f172a;
    margin: 0 0 10px;
}

.table-subtitle-inline {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Wrapper com Scroll Horizontal (para mobile) */
.table-scroll-wrapper-inline {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) #e2e8f0;
}

/* Estilos da Tabela */
.pricing-table-inline {
    width: 100%;
    min-width: 800px; /* Garante largura mínima */
    border-collapse: collapse;
}

.pricing-table-inline th, 
.pricing-table-inline td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.9rem;
    vertical-align: middle;
}


/* Coluna de Recursos (Esquerda - Sticky) */
.feature-col-inline {
    text-align: left;
    position: sticky;
    left: 0;
    background: #f8fafc; /* Mesma cor do fundo */
    z-index: 2;
    width: 30%;
    border-right: 1px solid #e2e8f0;
    padding-right: 20px;
}

/* Cabeçalho da Tabela */
.pricing-table-inline thead th {
    position: sticky;
    top: 0;
    background: #f8fafc;
    z-index: 3;
    padding-bottom: 20px;
    border-bottom: 2px solid #cbd5e1;
    vertical-align: bottom;
}

/* Coluna de Destaque (Estratégica) */
.highlight-th-inline {
    background: rgba(204, 164, 113, 0.08);
    border-bottom: 2px solid var(--gold-primary) !important;
    border-radius: 8px 8px 0 0;
}

/* Elementos de Texto */
.th-title-inline {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.th-price-inline {
    display: block;
    font-size: 0.85rem;
    color: #b7884c; /* Gold escuro para fundo claro */
    font-weight: 600;
}

.th-tag-inline {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold-primary);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
    margin: 0 auto 8px;
    font-weight: 700;
}

/* Linhas de Seção */
.section-row-inline td {
    background: #f1f5f9;
    text-align: left;
    padding: 10px 15px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    border-top: 2px solid #e2e8f0;
}

/* Hover nas Linhas */
.pricing-table-inline tbody tr:hover td {
    background: #ffffff;
}

.pricing-table-inline tbody tr:hover .feature-col-inline {
    background: #ffffff; /* Garante que a coluna sticky também mude */
}

/* Detalhes */
.feature-name-inline {
    display: block;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.feature-desc-inline {
    display: block;
    text-align: left;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.3;
}

.check-green {
    color: #10b981;
    font-size: 1.1rem;
}

/* Rotação do Ícone do Botão */
.rotate-icon {
    transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 768px) {
    .feature-col-inline {
        min-width: 150px;
        background: #f8fafc; /* Reinforça background */
        border-right: 2px solid #e2e8f0; /* Borda mais forte para separar */
    }
    .feature-desc-inline {
        display: none; /* Esconde descrição detalhada no mobile para economizar espaço */
    }
}

/* --- LINKS SAIBA MAIS (Nos Cards) --- */
.modal-trigger-link {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 15px;
    border-bottom: 1px dashed #cbd5e1;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: color 0.3s;
}

.modal-trigger-link:hover {
    color: var(--gold-primary);
    border-bottom-color: var(--gold-primary);
}

/* Link dentro do card destaque */
.highlight-link {
    color: #94a3b8; /* Cinza claro para fundo escuro */
    border-bottom-color: #475569;
}
.highlight-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* --- MODAL DE MODALIDADE (OVERLAY) --- */
.modalidade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10005; /* Acima de tudo */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modalidade-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- CAIXA DO MODAL --- */
.modalidade-box {
    background: #ffffff;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Para o scroll interno */
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modalidade-overlay.active .modalidade-box {
    transform: scale(1);
}

/* Imagem de Cabeçalho do Modal (NOVO) */
.modalidade-header-image {
    width: 100%;
    height: 400px; /* Altura fixa para a imagem */
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9; /* Cor de fundo padrão */
}

.modalidade-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cobre a área sem distorcer */
    object-position: center;
}

/* Botão Fechar */
.modalidade-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}
.modalidade-close:hover { color: #0f172a; transform: rotate(90deg); }

/* Conteúdo Interno com Scroll */
.modalidade-content {
    padding: 40px;
    overflow-y: auto;
    /* Scrollbar personalizada */
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.modalidade-content::-webkit-scrollbar { width: 8px; }
.modalidade-content::-webkit-scrollbar-track { background: #f1f5f9; }
.modalidade-content::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 4px; }

/* Tipografia do Modal */
.modalidade-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 5px;
    line-height: 1.1;
}

.modalidade-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
}

.modalidade-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 25px;
}

/* Corpo do Texto */
.modalidade-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
}

.modalidade-body h4 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modalidade-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.modalidade-body li {
    margin-bottom: 8px;
}

/* Footer do Modal */
.modalidade-footer {
    margin-top: 30px;
    text-align: center;
}

/* Mobile */
@media (max-width: 600px) {
    .modalidade-box { max-height: 95vh; }
    .modalidade-content { padding: 30px 20px; }
    .modalidade-title { font-size: 1.8rem; }
}