/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{

--blue:#146ff8;
--dark:#00318a;
--light:#f4f8fd;
--white:#fff;
--text-gray:#5b6472;
--border-color: rgba(0, 0, 0, .05);

/* FALTAVAM */
--primary:#00318a;
--secondary:#38c6d9;
--text:#5b6472;

--shadow:
0 15px 40px rgba(0,0,0,.08);

}

body{

font-family:'Segoe UI',sans-serif;
background:#ffffff;
overflow-x:hidden;

}

.container{

width:100%;
max-width:1400px;
margin:auto;
padding:0 25px;

}

/* HEADER */

.main-header{

position:sticky;
top:0;
z-index:9999;

background:rgba(255,255,255,.95);

backdrop-filter:blur(20px);

border-bottom:1px solid rgba(0,0,0,.05);

}

.nav-container{

height:110px;

display:flex;
align-items:center;
justify-content:space-between;

}

.logo img{

height:90px;

}

/* MENU */

.nav-menu ul{

display:flex;
align-items:center;
gap:30px;

list-style:none;

}

.nav-menu a{

text-decoration:none;

font-size:15px;
font-weight:700;

color:#16306b;

display:flex;
align-items:center;
gap:8px;

padding:10px 0;

transition:.3s;

}

.arrow{

font-size:10px;
transition:.3s;

}

/* DROPDOWN */

.dropdown{

position:relative;

}

.submenu{

position:absolute;

top:100%;
left:50%;

transform:
translateX(-50%)
translateY(15px);

background:#fff;

min-width:300px;

padding:20px;

border-radius:18px;

box-shadow:
0 15px 40px rgba(0,0,0,.12);

opacity:0;
visibility:hidden;

transition:.3s;

z-index:1000;

}

.dropdown:hover .submenu{

opacity:1;
visibility:visible;

transform:
translateX(-50%)
translateY(0);

}

.dropdown:hover .arrow{

transform:rotate(180deg);

}

.submenu-grid{

display:grid;
gap:10px;

}

.submenu-grid a{

padding:12px 15px;

border-radius:12px;

font-size:14px;
font-weight:600;

color:#444;

display:flex;
align-items:center;
gap:12px;

}

.submenu-grid a:hover{

background:#f5f9ff;
color:var(--blue);

}

.submenu-grid a i{

width:32px;
height:32px;

background:#eef5ff;
color:var(--blue);

border-radius:10px;

display:flex;
align-items:center;
justify-content:center;

}

/* BOTÃO */

.btn-header{

background:var(--dark);
color:#fff;

padding:13px 24px;

border-radius:14px;

text-decoration:none;
font-weight:700;

transition:.3s;

}

.btn-header:hover{

transform:translateY(-3px);

}



/* =========================================
   BOTÃO MOBILE
========================================= */

.mobile-menu-btn{

    display:none;

    width:52px;
    height:52px;

    border:none;
    border-radius:14px;

    background:#f3f7ff;

    color:var(--primary);

    font-size:22px;

    cursor:pointer;

    align-items:center;
    justify-content:center;

    transition:.3s ease;

    z-index:10001;
}

.mobile-menu-btn:hover{
    background:#e7efff;
}

/* =========================================
   MENU MOBILE
========================================= */

@media(max-width:1024px){

    .nav-container{
        height:90px;
    }

    .mobile-menu-btn{
        display:flex;
    }

    .btn-header{
        display:none;
    }

    /* MENU */

    .nav-menu{

        position:fixed;

        top:90px;
        left:0;

        width:100%;

        background:#ffffff;

        padding:25px;

        box-shadow:
        0 20px 50px rgba(0,0,0,.08);

        transform:
        translateY(-20px);

        opacity:0;
        visibility:hidden;

        transition:.35s ease;

        z-index:9999;
    }

    /* MENU ABERTO */

    .nav-menu.open{

        transform:
        translateY(0);

        opacity:1;
        visibility:visible;
    }

    /* UL */

    .nav-menu ul{

        flex-direction:column;

        align-items:flex-start;

        gap:5px;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu a{

        width:100%;

        padding:16px 10px;

        justify-content:space-between;

        border-radius:14px;
    }

    .nav-menu a:hover{
        background:#f5f9ff;
    }

    /* SUBMENU MOBILE */

    .submenu{

        position:static;

        transform:none;

        opacity:1;
        visibility:visible;

        display:none;

        margin-top:10px;

        width:100%;
        min-width:100%;

        box-shadow:none;

        border:
        1px solid rgba(0,0,0,.05);

        border-radius:18px;

        padding:12px;
    }

    /* DROPDOWN ABERTO */

    .dropdown.active .submenu{
        display:block;
    }

    .dropdown.active .arrow{
        transform:rotate(180deg);
    }

    /* REMOVE HOVER DESKTOP */

    .dropdown:hover .submenu{
        transform:none;
    }

}

/* ------------------------------------------------@----------------------------------------------- */





/* ---------- */

.container-flex,
.container-biografia,
.container-timeline,
.container-paixao{
    width:min(1180px,90%);
    margin:auto;
}

/* ====================================================
   TAGS
==================================================== */

.mini-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(56,198,217,.12);
    color:var(--secondary);
    font-weight:700;
    font-size:.7rem;
    letter-spacing:2px;
    margin-bottom:25px;
}

.mini-tag.white{
    background:rgba(255,255,255,.12);
    color:#fff;
}

.center{
    display:flex;
    justify-content:center;
    width:fit-content;
    margin:auto auto 20px;
}

/* ====================================================
   HERO
==================================================== */

.hero-escola-full{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
    url('../img/quem_somos/congresso2025.png')
    center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    120deg,
    rgba(4,15,40,.92),
    rgba(4,15,40,.55),
    rgba(4,15,40,.82));
}

.hero-escola-container{
    position:relative;
    z-index:2;
    width:min(1180px,90%);
}

.hero-badge{
    width:fit-content;
    padding:14px 24px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    color:#fff;
    margin-bottom:30px;
    font-weight:600;
}

.escola-card-floating{
    margin-left: 30px;
    max-width:720px;
    color:#fff;
}

.escola-card-floating h1{
    margin-top: 100px;
    font-size:clamp(3rem,6vw,6.5rem);
    line-height:.95;
    font-weight:800;
    margin-bottom:25px;
}

.escola-card-floating h1 span{
    color:var(--secondary);
}

.escola-card-floating p{
    max-width:580px;
    font-size:1.1rem;
    line-height:1.9;
    opacity:.92;
}

.hero-wave{
    position:absolute;
    bottom:0;
    width:100%;
    height:120px;

    background:
    linear-gradient(to top,#fff,transparent);
}







/* ====================================================
   PAIXÃO
==================================================== */

.secao-paixao{
    padding:130px 0;
    position:relative;
    overflow:hidden;
}

.bg-circle{
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(56,198,217,.10);
    right:-120px;
    top:-120px;
}

.container-paixao{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.titulo-secao{
    font-size:4rem;
    line-height:1.05;
    color:var(--primary);
    margin-bottom:25px;
}

.texto-paixao p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:39px;
    font-weight: 500;
}

.stats-grid{
    display:flex;
    gap:20px;
}

.stat-box{
    background:#fff;
    padding:28px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.stat-box h3{
    font-size:2rem;
    color:var(--primary);
}

.stat-box span{
    color:var(--text);
}

.imagem-container {
    position: relative;
   
}

.imagem-glow{
    position:absolute;
    width:100%;
    height:100%;
    background:var(--secondary);
    filter:blur(80px);
    opacity:.15;
   
   

}

.foto-equipe{
    width:100%;
    border-radius:40px;
    position:relative;
    z-index:2;
    box-shadow:var(--shadow);
    transition:.5s;

    z-index: 2;
    border-radius: 40px 0px 40px 10px; 
    
}

.foto-equipe:hover{
    transform:translateY(-10px) scale(1.01);
}

/* ====================================================
   BIOGRAFIA PREMIUM
==================================================== */

.section-biografia-video{
    padding:140px 0;
    background:
    linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef4ff 100%
    );
    position:relative;
    overflow:hidden;
}

.section-biografia-video::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,119,255,.05);
    top:-180px;
    right:-120px;
}

.section-biografia-video::after{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(0,180,216,.08);
    bottom:-120px;
    left:-100px;
}

/* ====================================================
   CONTAINER
==================================================== */

.container-biografia{
    width:min(1200px,92%);
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:60px;

    position:relative;
    z-index:2;
}

/* ====================================================
   CARD BIO
==================================================== */

.bio-card{
    background:rgba(255,255,255,.85);

    border:1px solid rgba(255,255,255,.7);

    border-radius:42px;
    overflow:hidden;

    box-shadow:
    0 15px 50px rgba(15,23,42,.08);

    backdrop-filter:blur(12px);

    transition:.45s ease;
}

.bio-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 25px 70px rgba(15,23,42,.12);
}

/* ====================================================
   ÁREA DA IMAGEM
==================================================== */

.bio-image-area{
    position:relative;

    overflow:hidden;

    width:100%;

    min-height:320px;
    height:clamp(320px,55vw,580px);

    border-radius:40px 40px 0 0;

    background:#eef3fb;

    display:flex;
    align-items:center;
    justify-content:center;
}

.bio-image-area::after{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.08) 45%,
        rgba(0,0,0,0)
    );

    z-index:2;
}

.bio-foto{
 background: linear-gradient(to top, rgb(36 62 75), rgb(43 79 111) 45%, rgb(18 43 86));
    
    width:100%;
    height:100%;

    display:block;

    object-fit:contain;
    object-position:center top;

    transition:
    transform 1s ease,
    object-position .5s ease;
}

.bio-card:hover .bio-foto{
    transform:scale(1.04);
}

/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:992px){

    .bio-image-area{
        height:500px;
    }

    .bio-foto{
        object-position:center top;
    }
}

@media(max-width:768px){

    .bio-image-area{
        height:420px;

        border-radius:30px 30px 0 0;
    }

    .bio-foto{
        object-fit:contain;

        padding-top:10px;

        background:#eef3fb;
    }
}

@media(max-width:520px){

    .bio-image-area{
        height:340px;

        border-radius:24px 24px 0 0;
    }

    .bio-foto{
        object-fit:contain;

        padding:10px 10px 0;
    }
}

/* ====================================================
   FLOATING TAG
==================================================== */

.bio-floating{
    position:absolute;
    bottom:35px;
    left:35px;

    z-index:2;

    background:rgba(255,255,255,.18);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.25);

    padding:14px 24px;

    border-radius:60px;

    color:#fff;
    font-weight:700;
    letter-spacing:.5px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
}

/* ====================================================
   TEXTO
==================================================== */

.bio-texto{
    padding:60px;
}

.bio-texto .mini-tag{
    display:inline-block;

    background:#e8f0ff;
    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:.78rem;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:24px;
}

.bio-texto h2{
    font-size:3.2rem;
    line-height:1.08;

    color:var(--primary);

    margin-bottom:28px;

    font-weight:800;

    max-width:800px;
}

.bio-texto p{
    line-height:2;
    color:var(--text);
    font-size:1.05rem;
    font-weight: 500;
    margin-bottom:22px;

    max-width:1000px;
}

/* ====================================================
   QUALIFICAÇÕES
==================================================== */

.bio-qualificacoes{
    margin-top:40px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.qualificacao-item{
    background:#fff;

    border:1px solid #edf2f7;

    border-radius:22px;

    padding:18px 20px;

    display:flex;
    align-items:flex-start;
    gap:12px;

    line-height:1.7;

    transition:.3s ease;

    box-shadow:
    0 4px 15px rgba(15,23,42,.04);
}

.qualificacao-item:hover{
    transform:translateY(-5px);

    border-color:#cfe1ff;

    box-shadow:
    0 15px 35px rgba(0,119,255,.08);
}

.qualificacao-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #00b4d8,
        #0077ff
    );

    margin-top:9px;

    flex-shrink:0;
}

/* ====================================================
   TAGS
==================================================== */

.bio-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;

    margin-top:45px;
}

.bio-tags span{
    padding:12px 18px;

    border-radius:50px;

    background:#f1f6ff;

    color:var(--primary);

    font-weight:700;

    transition:.3s ease;
}

.bio-tags span:hover{
    background:var(--primary);
    color:#fff;

    transform:translateY(-3px);
}

/* ====================================================
   VIDEO
==================================================== */
.video-container{
    position:relative;

    width:100vw;

    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);

    background:linear-gradient(135deg,#06142e,#0b2f6b);

    color:#ffffff;

    padding:110px 0;

    overflow:hidden;
}

/* efeito decorativo */
.video-container::before{
    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-180px;
    right:-120px;
}

.video-container::after{
    content:'';

    position:absolute;

    width:380px;
    height:380px;

    border-radius:50%;

    background:rgba(56,198,217,.08);

    bottom:-160px;
    left:-120px;
}

.video-content{
    width:min(1180px,90%);
    margin:auto;

    position:relative;
    z-index:2;
}

.video-header{
    text-align:center;
    margin-bottom:50px;
}

.video-header span{
    display:inline-block;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);

    color:#ffffff;

    padding:10px 18px;

    border-radius:50px;

    font-size:.78rem;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:18px;
}

/* --- RODAPÉ BRANCO --- */
.mvw-footer {

    padding: 0px 0;
   
}

.footer-container {
   
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-brand {
    color: #ffffff;
    font-size: 55px;
    font-weight: 900;
    margin: 0;
}

.footer-tagline {
    color: #388a97;
    font-size: 33px;
    font-style:italic;
    margin: 0;
    
}

.footer-tagline i {
    font-size: 24px;
    margin-left: 10px;
}

.video-frame{
    position:relative;

     z-index: 2;
    border-radius: 0px 40px 0px 40px; 

    margin: 90px;
    overflow:hidden;

    box-shadow:
    0 30px 80px rgba(0,0,0,.55);
}

.video-frame::before{
    content:'';

    position:absolute;

    inset:0;

    border-radius:40px;

    border:1px solid rgba(255,255,255,.12);

    z-index:2;

    pointer-events:none;
}

.video-container iframe{
    width:100%;

    height:720px;

    border:none;

    display:block;
}

/* ====================================================
   RESPONSIVO
==================================================== */

@media(max-width:992px){

    .video-container{
        padding:90px 0;
    }

    .video-container iframe{
        height:460px;
    }

    .video-header h3{
        font-size:2.4rem;
    }
}

@media(max-width:768px){

    .video-container{
        padding:70px 0;
    }

    .video-frame{
        border-radius:28px;
    }

    .video-container iframe{
        height:320px;

        border-radius:28px;
    }

    .video-header h3{
        font-size:1.9rem;
    }

    .video-header p{
        font-size:.95rem;
    }
}

@media(max-width:520px){

    .video-container iframe{
        height:240px;
    }

    .video-header h3{
        font-size:1.6rem;
    }

    .video-header span{
        font-size:.72rem;
    }
}
/* ====================================================
   TIMELINE NOVA
==================================================== */

.timeline-section{
    position:relative;
    padding:150px 0;
    background:#fff;
    overflow:hidden;
}

.timeline-bg{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(56,198,217,.10),
    transparent 40%);
}

.timeline-header{
    text-align:center;
    margin-bottom:100px;
}

.timeline-header h2{
    font-size:clamp;
    font-size:4.5rem;
    color:var(--primary);
    margin-bottom:15px;
}

.timeline-header p{
    font-size:clamp;
    color:var(--text);
    max-width:650px;
    margin:auto;
    line-height:1.9;
}

.timeline{
    position:relative;
    max-width:950px;
    margin:auto;
}

.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:6px;
    height:100%;
    border-radius:50px;

    background:
    linear-gradient(
    to bottom,
    var(--secondary),
    var(--primary));
}

.timeline-item{
    width:50%;
    padding:20px 50px;
    position:relative;
}

.timeline-item:nth-child(odd){
    left:0;
}

.timeline-item:nth-child(even){
    left:50%;
}




/* =========================================
   DOT ANIMADO DESCENDO
========================================= */

.timeline-dot{
    position:absolute;

    top:50px;

    width:24px;
    height:24px;

    border-radius:50%;

    background:var(--secondary);

    border:4px solid #29afce;

    box-shadow:
    0 0 0 8px rgba(56,198,217,.12),
    0 0 25px rgba(56,198,217,.35);

    z-index:3;

    animation:
    pulseDot 3s ease-in-out infinite,
    moveDownDot 4s linear infinite;
}

/* posição */
.timeline-item:nth-child(odd) .timeline-dot{
    right:-13px;
}

.timeline-item:nth-child(even) .timeline-dot{
    left:-11px;
}

/* brilho */
@keyframes pulseDot{

    0%{
        box-shadow:
        0 0 0 0 rgba(56,198,217,.28),
        0 0 15px rgba(56,198,217,.20);
    }

    50%{
        box-shadow:
        0 0 0 12px rgba(56,198,217,0),
        0 0 30px rgba(56,198,217,.45);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(56,198,217,0),
        0 0 15px rgba(56,198,217,.20);
    }
}

/* animação descendo */
@keyframes moveDownDot{

    0%{
        transform:translateY(0px);
        opacity:1;
    }

    70%{
        transform:translateY(55px);
        opacity:1;
    }

    90%{
        transform:translateY(70px);
        opacity:0;
    }

    91%{
        transform:translateY(-8px);
        opacity:0;
    }

    100%{
        transform:translateY(0px);
        opacity:1;
    }
}

/* delays suaves */
.timeline-item:nth-child(2) .timeline-dot{
    animation-delay:.3s;
}

.timeline-item:nth-child(3) .timeline-dot{
    animation-delay:.6s;
}

.timeline-item:nth-child(4) .timeline-dot{
    animation-delay:.9s;
}

.timeline-item:nth-child(5) .timeline-dot{
    animation-delay:1.2s;
}

.timeline-item:nth-child(6) .timeline-dot{
    animation-delay:1.5s;
}

.timeline-item:nth-child(7) .timeline-dot{
    animation-delay:1.8s;
}

.timeline-item:nth-child(8) .timeline-dot{
    animation-delay:2.1s;
}


.timeline-content-box{
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:var(--shadow);
    transition:.4s;
}

.timeline-content-box:hover{
    transform:translateY(-8px);
}

.timeline-year {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 20px 0px 20px 5px; 
    background: var(--primary);
    color: #ececec;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-content-box h3{
    font-size:1.5rem;
    color:var(--primary);
    margin-bottom:15px;
}

.timeline-content-box p{
    font-weight: 700;
    color:var(--text);
    line-height:1.8;
}

/* ====================================================
   PRINCÍPIOS
==================================================== */

.section-principios{
    padding:140px 0;
    background:var(--light);
}

.section-title2{
    text-align:center;
    font-size:4rem;
    color:var(--primary);
    margin-bottom:90px;
}

/* =========================================
   SOBREPOSIÇÃO LATERAL SUAVE
========================================= */

.card-principio{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:0;

    align-items:center;

    margin-bottom:80px;

    position:relative;
}

/* card texto */
.card-content{
    position:relative;

    z-index:2;

    background:#fff;

    padding:55px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    margin-right:-40px; /* sobrepõe na imagem */
}

/* imagem */
.card-image{
    position:relative;
    z-index:1;
    
}

.card-image img{
    width:100%;
    display:block;
    height:520px;
    object-fit:cover;
   
}

/* invertido */
.card-principio.reverse .card-content{
    order:2;

    margin-right:0;
    margin-left:-40px; /* sobreposição inversa */
}

.card-principio.reverse .card-image{
    order:1;
}

/* hover elegante */
.card-principio:hover .card-content{
    transform:translateY(-6px);

    transition:.35s ease;
}

/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:992px){

    .card-principio{
        grid-template-columns:1fr;

        gap:25px;
    }

    .card-content,
    .card-principio.reverse .card-content{
        margin:0;
    }

    .card-image img{
        height:400px;
    }

    .card-principio.reverse .card-content,
    .card-principio.reverse .card-image{
        order:unset;
    }
}

@media(max-width:520px){

    .card-content{
        padding:30px;

        
    }

    .card-image img{
        height:300px;

       
    }
}

.card-content{
    background:#fff;
    padding:60px;
    box-shadow:var(--shadow);
}

.card-content h3{
    font-size:2.8rem;
    color:var(--primary);
    margin-bottom:20px;
}

.card-content p {
    font-size: 22px;
    color: var(--text);
    line-height: 1.;
    font-weight: 500;
}

.card-image img{
    width:100%;
    border-radius:35px;
    box-shadow:var(--shadow);
}

/* ====================================================
   TURMINHA
==================================================== */

.section-turminha{
    position:relative;
    padding:150px 0;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #081f46,
    #0a2d67);
}

.turminha-blur{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(56,198,217,.20);
    filter:blur(120px);
    right:-100px;
    top:-100px;
}

.container-flex{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.turminha-texto{
    color:#fff;
}

.turminha-texto h2{
    font-size:4.5rem;
    line-height:1;
    margin-bottom:25px;
}

.turminha-texto p{
    line-height:1.9;
    opacity:.92;
    margin-bottom:35px;
}

.link-conheca{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 30px;
    border-radius:50px;

    background:#fff;
    color:var(--primary);

    text-decoration:none;
    font-weight:700;

    transition:.4s;
}

.link-conheca:hover{
    transform:translateY(-6px);
}

.glass-card{
   
    padding:30px;
    border-radius:40px;
}

.img-personagens{
    width:100%;
    display:block;
}

/* ====================================================
   RESPONSIVO
==================================================== */

@media(max-width:992px){

    .container-paixao,
    .container-biografia,
    .card-principio,
    .container-flex{
        grid-template-columns:1fr;
    }

    .timeline::before{
        left:30px;
    }

    .timeline-item{
        width:100%;
        left:0 !important;
        padding-left:90px;
        padding-right:0;
        margin-bottom:40px;
    }

    .timeline-dot{
        left:18px !important;
    }

    .titulo-secao,
    .timeline-header h2,
    .section-title2,
    .turminha-texto h2{
        font-size:2.8rem;
    }

    .bio-texto h2{
        font-size:2.3rem;
    }

    .video-container iframe{
        height:450px;
    }
}

@media(max-width:600px){

    .hero-escola-full{
        min-height:80vh;
    }

    .escola-card-floating h1{
        font-size:3rem;
    }

    .titulo-secao,
    .timeline-header h2,
    .section-title2,
    .turminha-texto h2{
        font-size:2.2rem;
    }

    .card-content,
    .bio-texto,
    .timeline-content-box{
        padding:28px;
    }

    .stats-grid{
        flex-direction:column;
    }

    .section-principios,
    .timeline-section,
    .section-biografia-video,
    .section-turminha,
    .secao-paixao{
        padding:90px 0;
    }
}











/* ------------------------------------------------@------------------------------------------------------- */



/* ================= FOOTER ================= */

.main-footer{

background:
linear-gradient(
180deg,
#05245f 0%,
#001b4d 100%
);

color:#fff;

margin-top:80px;

overflow:hidden;

}

/* TOPO */

.footer-top{

padding:70px 0 50px;

border-bottom:
1px solid rgba(255,255,255,.08);

}

.footer-top-grid{

display:grid;

grid-template-columns:
1.4fr
1fr
1fr
1.1fr;

gap:50px;

}

/* BRAND */

.footer-brand img{

height:95px;
margin-bottom:20px;

}

.footer-brand p{

color:
rgba(255,255,255,.75);

line-height:1.8;

font-size:15px;

max-width:420px;

}

.footer-social{

display:flex;
gap:12px;

margin-top:25px;

}

.footer-social a{

width:45px;
height:45px;

border-radius:14px;

background:
rgba(255,255,255,.08);

display:flex;
align-items:center;
justify-content:center;

text-decoration:none;

color:#fff;

font-size:18px;

transition:.3s;

}

.footer-social a:hover{

background:#146ff8;

transform:
translateY(-4px);

}

/* LINKS */

.footer-links h3,
.footer-contact h3{

font-size:20px;
margin-bottom:22px;

position:relative;

}

.footer-links h3::after,
.footer-contact h3::after{

content:'';

position:absolute;

left:0;
bottom:-10px;

width:45px;
height:3px;

border-radius:10px;

background:#146ff8;

}

.footer-links{

display:flex;
flex-direction:column;
gap:14px;

}

.footer-links a{

text-decoration:none;

color:
rgba(255,255,255,.75);

font-size:15px;

transition:.3s;

}

.footer-links a:hover{

color:#4ac0fd;

padding-left:6px;

}

/* CONTATO */

.footer-contact{

display:flex;
flex-direction:column;
gap:16px;

}

.contact-item{

display:flex;
align-items:flex-start;
gap:14px;

color:
rgba(255,255,255,.78);

font-size:15px;
line-height:1.6;

}

.contact-item i{

min-width:42px;
height:42px;

border-radius:12px;

background:
rgba(255,255,255,.08);

display:flex;
align-items:center;
justify-content:center;

color:#4ac0fd;

}

/* BOTÃO */

.footer-btn{

margin-top:10px;

display:inline-flex;
align-items:center;
justify-content:center;

width:max-content;

padding:14px 24px;

background:#146ff8;

color:#fff;

text-decoration:none;
font-weight:700;

border-radius:14px;

transition:.3s;

}

.footer-btn:hover{

transform:
translateY(-4px);

background:#2b82ff;

}

/* ESTATÍSTICAS */

.footer-stats{

padding:30px 0;

background:
rgba(255,255,255,.03);

border-top:
1px solid rgba(255,255,255,.05);

border-bottom:
1px solid rgba(255,255,255,.05);

}

.footer-stats-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;

}

.footer-stat{

display:flex;
align-items:center;
gap:18px;

padding:15px;

border-radius:18px;

background:
rgba(255,255,255,.04);

backdrop-filter:
blur(10px);

transition:.3s;

}

.footer-stat:hover{

transform:
translateY(-5px);

background:
rgba(255,255,255,.08);

}

.footer-stat i{

font-size:32px;

color:#4ac0fd;

min-width:50px;

}

.footer-stat h2{

font-size:24px;
margin-bottom:4px;

}

.footer-stat p{

font-size:14px;

color:
rgba(255,255,255,.72);

}

/* BOTTOM */

.footer-bottom{

padding:25px 0;

}

.footer-bottom-content{

display:flex;
align-items:center;
justify-content:space-between;
gap:20px;

}

.footer-bottom p{

font-size:14px;

color:
rgba(255,255,255,.65);

}

.footer-bottom-links{

display:flex;
gap:20px;

}

.footer-bottom-links a{

text-decoration:none;

font-size:14px;

color:
rgba(255,255,255,.65);

transition:.3s;

}

.footer-bottom-links a:hover{

color:#4ac0fd;

}

/* RESPONSIVO */

@media(max-width:1100px){

.footer-top-grid{

grid-template-columns:
1fr 1fr;

}

.footer-stats-grid{

grid-template-columns:
1fr 1fr;

}

}

@media(max-width:768px){

.footer-top{

padding:50px 0 40px;

}

.footer-top-grid{

grid-template-columns:
1fr;

gap:40px;

}

.footer-stats-grid{

grid-template-columns:
1fr;

}

.footer-bottom-content{

flex-direction:column;
text-align:center;

}

.footer-bottom-links{

flex-wrap:wrap;
justify-content:center;

}

.footer-brand img{

height:80px;

}

.footer-stat{

padding:18px;

}

}


/* ----- */

/* =====================================================
   TREINI GLOBAL MOTION SYSTEM
   CSS GLOBAL PARA TODAS AS PÁGINAS
===================================================== */

/* ---------- BASE ---------- */

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;

    animation:
    bodyFade 1s ease;
}

/* ---------- BODY FADE ---------- */

@keyframes bodyFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

/* =====================================================
   NAVBAR
===================================================== */

header,
.navbar,
nav{

    animation:
    navbarDown .9s ease;
}

@keyframes navbarDown{

    from{
        opacity:0;

        transform:
        translateY(-30px);
    }

    to{
        opacity:1;

        transform:
        translateY(0);
    }

}

/* =====================================================
   SECTIONS
===================================================== */

section{

    position:relative;

    animation:
    sectionFade 1s ease;
}

@keyframes sectionFade{

    from{
        opacity:0;

        transform:
        translateY(35px);
    }

    to{
        opacity:1;

        transform:
        translateY(0);
    }

}

/* =====================================================
   TITULOS
===================================================== */

h1,
h2,
h3{

    animation:
    titleFade 1s ease;
}

@keyframes titleFade{

    from{
        opacity:0;

        transform:
        translateY(20px);
    }

    to{
        opacity:1;

        transform:
        translateY(0);
    }

}

/* =====================================================
   TEXTOS
===================================================== */

p,
span,
li{

    animation:
    textFade 1.2s ease;
}

@keyframes textFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

/* =====================================================
   IMAGENS
===================================================== */

img{

    transition:
    transform .7s ease,
    filter .7s ease,
    box-shadow .7s ease;

    animation:
    imageFade 1.1s ease;
}

@keyframes imageFade{

    from{
        opacity:0;

        transform:
        scale(.97);
    }

    to{
        opacity:1;

        transform:
        scale(1);
    }

}

img:hover{

    transform:
    scale(1.02);

    filter:
    saturate(1.02);

}

/* =====================================================
   CARDS GERAIS
===================================================== */

div[class*="card"],
div[class*="box"],
div[class*="item"]{

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

div[class*="card"]:hover,
div[class*="box"]:hover,
div[class*="item"]:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 18px 35px rgba(0,0,0,.06);

}

/* =====================================================
   BOTÕES
===================================================== */

button,
.btn,
a{

    transition:
    transform .3s ease,
    opacity .3s ease,
    background .3s ease;
}

button:hover,
.btn:hover,
a:hover{

    transform:
    translateY(-2px);

}

/* =====================================================
   BACKGROUNDS
===================================================== */

.hero,
[class*="hero"],
[class*="banner"]{

    animation:
    heroZoom 1.4s ease;
}

@keyframes heroZoom{

    from{
        opacity:0;

        transform:
        scale(1.03);
    }

    to{
        opacity:1;

        transform:
        scale(1);
    }

}

/* =====================================================
   OVERLAY SUAVE
===================================================== */

[class*="overlay"]{

    animation:
    overlayFade 1.5s ease;
}

@keyframes overlayFade{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

/* =====================================================
   GRID SUAVE
===================================================== */

[class*="grid"]{

    animation:
    gridFade 1.1s ease;
}

@keyframes gridFade{

    from{
        opacity:0;

        transform:
        translateY(25px);
    }

    to{
        opacity:1;

        transform:
        translateY(0);
    }

}

/* =====================================================
   FLOATING SUAVE
===================================================== */

[class*="floating"]{

    animation:
    floatingSoft 5s ease-in-out infinite;
}

@keyframes floatingSoft{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:768px){

    section{
        animation-duration:.8s;
    }

    img:hover{
        transform:none;
    }

}