/* 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;
    }

}

/* ------------------------------------------------@----------------------------------------------- */





/* =====================================================
   BASE GERAL
===================================================== */

.hero-educacao,
.section-tne-intro,
.section-publico,
.section-material,
.section-objetivos,
.section-fundamentacao,
.section-estrategias,
.section-mercadinho,
.section-recursos,
.section-avaliacao,
.section-pesquisa,
.section-inclusao,
.section-help-prof{
    position:relative;
    overflow:hidden;
}

.section-tne-intro,
.section-material,
.section-fundamentacao,
.section-mercadinho,
.section-help-prof{
    padding:110px 0;
    background:#fff;
}

.section-publico,
.section-objetivos,
.section-recursos,
.section-inclusao{
    padding:110px 0;
    background:#f6f9fd;
}

.section-estrategias,
.section-avaliacao{
    padding:110px 0;
    background:#eef4fb;
}

.section-pesquisa{
    padding:130px 0;
}


/* =====================================================
   HERO
===================================================== */

.hero-educacao{
    min-height:75vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        120deg,
        rgba(26,70,155,.2),
        rgba(6,20,46,.02)
    ),
    url('../img/educacao/escola04.jpg')
    center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(7,20,45,.88),
        rgba(7,20,45,.20)
    );
}

.hero-educacao-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
    color: #fff;

    /* Alinhamento à esquerda com recuo */
    margin-left: 10px;
    margin-right: auto; /* Garante que o bloco não centralize e fique na esquerda */
}
.hero-educacao-content h1{
    font-size:4.8rem;
    line-height:1;

    margin:28px 0;
}

.hero-educacao-content p{
    font-size:1.08rem;
    line-height:2;

    opacity:.92;
}


/* =====================================================
   HEADER PADRÃO
===================================================== */

.section-header{
    text-align:left;
    margin-bottom:65px;
}

.section-header.center{
    text-align:center;
}

.section-header h2{
    font-size:3.2rem;
    line-height:1.1;

    color:#08275c;

    margin:18px 0;
}

.section-header p{
    max-width:760px;

    color:#5c6778;

    line-height:1.9;
}


/* =====================================================
   MINI TAG
===================================================== */

.mini-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#e9f2ff;

    color:#1463d9;

    padding:10px 18px;

    border-radius:999px;

    font-size:.78rem;
    font-weight:700;
    letter-spacing:.08em;

    text-transform:uppercase;
}

.mini-tag.white{
    background:rgba(255,255,255,.12);
    color:#fff;
}






/* --- CONFIGURAÇÃO DA SECTION (CENTRALIZAÇÃO COMPLETA) --- */
.section-hero-buttons {
    width: 100%;
    min-height: 20vh;          /* Define uma altura mínima para a seção */
    padding: 60px 20px;        /* Espaçamento interno para respiro */
    
    /* O Segredo da centralização da seção na tela */
    display: flex;
    justify-content: center;   /* Centraliza o conteúdo na horizontal */
    align-items: center;       /* Centraliza o conteúdo na vertical */
    
    position: relative;
    box-sizing: border-box;
}

/* --- CONFIGURAÇÕES DO CONTAINER DOS BOTÕES --- */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;           /* Permite que os botões quebrem de linha de forma elegante */
    justify-content: center;   /* SEGREDO: Mantém os botões centralizados quando quebrarem de linha */
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 1200px;         /* Limita a largura máxima do bloco de botões */
    margin: 0 auto;
}

/* --- ESTILO BASE DO BOTÃO --- */
.hero-btn {
    position: relative;
    display: inline-flex;      
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 28px;
    border-radius: 18px;

    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: .4px;
   margin-top: 20px;
    transition: all .35s ease;
    overflow: hidden;

    border: 1px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- EFEITO GLOW (BRILHO PASSANDO AO PASSAR O MOUSE) --- */
.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );
    transform: translateX(-120%);
    transition: .7s;
}

.hero-btn:hover::before {
    transform: translateX(120%);
}

/* --- COR 1: TREINI (AZUL GRADIENTE) --- */
.hero-btn.primary {
    background: linear-gradient(135deg, #ff7b00, #d97700);
    color: #ffffff;
   
}

.hero-btn.primary:hover {
    background: linear-gradient(135deg, #ff9100, #fe9719);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 40px rgba(37, 100, 235, 0.086);
}

/* --- COR 2: MIG (OTIMIZADO PARA FUNDO BRANCO) --- */
.hero-btn.secondary {
    /* Fundo branco puro ou levemente acetinado para dar contraste com o fundo da página */
    background-color: #00d0ff; 
    
    /* Borda sólida usando o azul escuro da sua marca com opacidade, dando leveza */
    border: 2px solid rgba(8, 39, 92, 0.15); 
    
    /* Texto em azul escuro para garantir leitura perfeita (acessibilidade) */
    color: #ffffff; 
    
    /* Sombra suave para o botão parecer "flutuar" discretamente no fundo branco */
    
}

.hero-btn.secondary:hover {
    /* No hover, o fundo ganha a cor do tom de azul da sua marca */
    background-color: #10e7ff;
    
    /* A borda acompanha a cor do fundo */
    border-color: #08275c;
    
    /* O texto muda para branco para contrastar com o novo fundo escuro */
    color: #ffffff;
    
    /* Efeito de elevação característico do seu layout */
    transform: translateY(-5px);
    
    /* Sombra projetada mais intensa e elegante */
    box-shadow: 0 12px 25px rgba(8, 39, 92, 0.103);
}

/* --- COR 3: HELP (BORDA AZUL) --- */
.hero-btn.outline {
    background: rgba(255, 213, 0, 0.918);
    border: 1px solid rgba(255, 149, 0, 0.45);
    color: #000000;
}

.hero-btn.outline:hover {
    background: rgba(255, 247, 0, 0.12);
    border: 1px solid rgba(255, 149, 0, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59, 131, 246, 0.125);
}

/* --- COR 4: GALÁXIA (ROXO PROFUNDO NEON) --- */
.hero-btn.galaxia {
    background: linear-gradient(135deg, #4c1d95, #6d28d9, #7c3aed);
    color: #ffffff;
    
}

.hero-btn.galaxia:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 45px rgba(40, 18, 77, 0.5);
}

/* --- RESPONSIVIDADE (CELULAR) --- */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch; /* Estica os botões para terem a mesma largura no mobile */
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}




.metodo-floating {
    position: absolute;
    bottom: 25px; 
    left: -20px;
    width: 260px;
    padding: 24px;
    border-radius: 26px 0px 26px 0px;
    background: rgba(8, 39, 92, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    
    /* z-index alto e isolamento para ignorar os hovers da tag img de trás */
    z-index: 10;
    pointer-events: auto; 
    
    /* Animação via bottom para evitar bugs com o transform global de escala */
    animation: flutuarFloating 4s ease-in-out infinite; 
}

/* Pausa a flutuação no mouse hover */
.metodo-floating:hover {
    animation-play-state: paused;
}

/* Animação limpa baseada em top/bottom */
@keyframes flutuarFloating {
    0% {
        bottom: 25px;
    }
    50% {
        bottom: 33px; /* Sobe suavemente 8px */
    }
    100% {
        bottom: 25px;
    }
}

/* Estilos internos mantidos */
.metodo-floating span {
    font-size: .9rem;
    letter-spacing: .12em;
    color: #c6f5ff;
    display: block; 
    margin-bottom: 10px;
}

.metodo-floating h4 {
    font-size: 1.2rem;
    line-height: 1.5;
}

.metodo-floating a {
    text-decoration: none;
    color: inherit; 
}

/* Ajuste fino para telas menores não esmagarem o card absoluto */
@media(max-width: 600px) {
    .metodo-floating {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: -40px;
        animation: none; /* Desativa no mobile seguindo seu padrão do outro card */
    }
}



/* =====================================================
   INTRO
===================================================== */

.tne-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:70px;
    align-items:center;
}

.tne-texto h2{
    font-size:3.5rem;
    line-height:1.08;

    color:#08275c;

    margin:25px 0;
}

.tne-texto p{
    color:#5b6472;
    line-height:2;

    margin-bottom:22px;
}

.tne-image{
    position:relative;
}

.tne-image img{
    width:100%;
    height:520px;

    object-fit:cover;

    border-radius:28px;

    box-shadow:
    0 20px 60px rgba(15,35,80,.10);
}

.floating-card{
    position:absolute;
    left:30px;
    bottom:30px;

    width:280px;

    background:#fff;

    border-radius:0px 26px 0px 26px;

    padding:24px;

    box-shadow:
    0 18px 45px rgba(10,35,80,.12);
}

.floating-card span{
    display:block;

    font-size:.72rem;
    font-weight:700;

    letter-spacing:.08em;

    color:#1463d9;

    margin-bottom:10px;
}

.floating-card h4{
    font-size:1.1rem;
    line-height:1.6;

    color:#08275c;
}


/* =====================================================
   PÚBLICO
===================================================== */

.publico-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.publico-card{
    background:#fff;

    border-radius:26px;

    overflow:hidden;

    border:1px solid #e6edf6;

    transition:.35s ease;
}

.publico-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 15px 40px rgba(10,35,80,.08);
}

.publico-card img{
    width:100%;
    height:220px;

    object-fit:cover;
}

/* Container Pai: agora com o mesmo nome do HTML */
.publico-content {
    padding: 28px;
    width: 100%;
    
    /* O sistema definitivo de centralização */
    display: flex;
    flex-direction: column;
    align-items: center;   /* Centraliza os blocos na horizontal */
    text-align: center;    /* Centraliza as linhas de texto */
}

/* Estilo para a mini-tag */
.publico-content .mini-tag {
    display: block;
    margin-bottom: 15px;
}

/* Estilo para o H2 (ajustei com base no seu HTML) */
.publico-content h2 {
    font-size: 2.5rem; /* Ajuste o tamanho se achar necessário */
    color: #08275c;
    margin-bottom: 20px;
    max-width: 780px;  /* Evita que o título estique demais */
}

/* Estilo para o Parágrafo */
.publico-content p {
    color: #5c6778;
    line-height: 1.9;
    max-width: 650px;  /* Largura ideal para leitura de parágrafo centralizado */
    margin: 0;         /* Limpa margens remanescentes */
}

/* =====================================================
   MATERIAL
===================================================== */

.material-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
}

/* 1. SEGREDO 1: Criar a âncora para o card absoluto não sumir nem quebrar o layout */
.material-image {
    position: relative;
    width: 100%;
}

.material-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:40px 0px 40px 0px;
    display: block; /* Remove espaços fantasmas abaixo da imagem */
}

.material-texto h2{
    font-size:3.2rem;
    line-height:1.1;
    color:#08275c;
    text-align: right;
    margin:22px 0;
}

.material-texto p{
    color:#5c6778;
    line-height:2;
    text-align: right;
    margin-bottom:35px;
}

.material-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.material-item{
    background:#e7f2ff;
    border:1px solid #e6edf6;
    padding:18px 20px;
    border-radius:18px 0px;
    color:#08275c;
    font-weight:600;
}


/* =====================================================
   OBJETIVOS
===================================================== */

.objetivos-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.objetivo-card{
    background:#fff;

    padding:38px;

    border-radius:24px;

    border:1px solid #e5edf7;

    transition:.3s;
}

.objetivo-card:hover{
    transform:translateY(-5px);
}

.objetivo-card h3{
    font-size:1.5rem;

    color:#08275c;

    margin-bottom:16px;
}

.objetivo-card p{
    color:#5c6778;
    line-height:1.9;
}


/* =====================================================
   FUNDAMENTAÇÃO
===================================================== */

.fundamentacao-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
}

.fundamentacao-texto h2{
    font-size:3.1rem;

    line-height:1.08;

    color:#08275c;

    margin:22px 0;
}

.fundamentacao-texto p{
    color:#5c6778;
    line-height:2;

    margin-bottom:22px;
}

.fundamentacao-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.fund-card{
    background:#eef6ff;

    border:1px solid #e7edf6;

    border-radius:20px 0px;

    padding:0px 50px;

    min-height:120px;

    display:flex;
    align-items:center;

    font-weight:600;

    color:#08275c;

    line-height:1.6;
}


/* =====================================================
   ESTRATÉGIAS
===================================================== */

.estrategias-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.estrategia-card{
    background:#fff;

    border-radius:18px;

    padding:22px 24px;

    border:1px solid #dfe9f5;

    color:#08275c;

    font-weight:600;

    transition:.3s;
}

.estrategia-card:hover{
    transform:translateY(-4px);

    background:#f8fbff;
}


/* =====================================================
   MERCADINHO
===================================================== */

.mercadinho-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.mercadinho-image img{
    width:100%;
    height:500px;

    object-fit:cover;

    border-radius:40px 0px 0px 40px;
}

.mercadinho-texto h2{
    font-size:3.1rem;
    line-height:1.08;

    color:#08275c;

    margin:22px 0;
}

.mercadinho-texto p{
    color:#5c6778;
    line-height:2;

    margin-bottom:22px;
}


/* =====================================================
   RECURSOS
===================================================== */

.recursos-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.recurso-card{
    background:#fff;

    border-radius:24px;

    padding:40px 34px;

    border:1px solid #e3ebf5;
}

/* Centralização definitiva do cabeçalho de recursos */
.recurso-header {
    width: 100%;
    margin-bottom: 40px; /* Espaço até os cartões virem abaixo */
    
    display: flex;
    flex-direction: column;
    align-items: center;   /* Centraliza os blocos na horizontal */
    text-align: center;    /* Centraliza as linhas de texto */
}

.recurso-header .mini-tag {
    display: block;
    margin-bottom: 15px;
}

.recurso-header h2 {
    font-size: 3.2rem; /* Seguindo o padrão do seu layout */
    color: #08275c;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 780px;
}

.recurso-header p {
    color: #5c6778;
    line-height: 1.9;
    max-width: 650px;
    margin: 0;
}

/* =====================================================
   AVALIAÇÃO
===================================================== */

.avaliacao-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.avaliacao-box{
    background:#fff;

    padding:45px;

    border-radius:28px;

    border:1px solid #dce7f5;
}

.avaliacao-box h2{
    font-size:2.4rem;

    line-height:1.15;

    color:#08275c;

    margin:20px 0;
}

.avaliacao-box p{
    color:#5c6778;
    line-height:2;
}


/* =====================================================
   PESQUISA
===================================================== */

.section-pesquisa{
    background:
    linear-gradient(
        135deg,
        rgba(9,30,70,.92),
        rgba(2,20,49,.10)
    ),
    url('../img/educacao/tecnologia.jpg')
    center/cover no-repeat;
}

.pesquisa-content{
    max-width:760px;

    color:#fff;
}

.pesquisa-content h2{
    font-size:3.5rem;
    line-height:1.08;

    margin:24px 0;
}

.pesquisa-content p{
    line-height:2;

    opacity:.92;
}


/* =====================================================
   INCLUSÃO
===================================================== */

.inclusao-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.inclusao-card{
    background:#fff;

    border:1px solid #e2ebf5;

    border-radius:22px;

    padding:30px;

    min-height:140px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#08275c;

    font-weight:600;

    line-height:1.7;
}


/* =====================================================
   HELP PROFESSORES
===================================================== */

.help-prof-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.help-prof-texto h2{
    font-size:3.3rem;
    line-height:1.08;

    color:#08275c;

    margin:24px 0;
}

.help-prof-texto p{
    color:#5c6778;
    line-height:2;

    margin-bottom:35px;
}

.help-prof-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.help-prof-item{
    background:#f7fbff;

    border:1px solid #e3ebf5;

    border-radius:18px 0px;

    padding:18px 20px;

    color:#08275c;

    font-weight:600;

    line-height:1.6;
}

.help-prof-image img {
    padding: 10px;
    width: 100%;       /* Largura total do container */
    max-width: 250px;  /* REGULE O TAMANHO AQUI (Largura máxima) */
    height: auto;      /* ALTURA AUTOMÁTICA: evita que a imagem corte ou achate */
    object-fit: contain; /* Garante que a imagem inteira apareça sem cortes */
    border-radius: 30px;
    display: block;    /* Para centralizar com margin auto */
    margin: 0 auto;    /* Centraliza a imagem no meio da tela/container */
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:992px){

    .tne-grid,
    .material-grid,
    .fundamentacao-grid,
    .mercadinho-grid,
    .help-prof-grid,
    .avaliacao-grid{
        grid-template-columns:1fr;
    }

    .publico-grid,
    .recursos-grid,
    .inclusao-grid,
    .estrategias-grid,
    .objetivos-grid{
        grid-template-columns:1fr;
    }

    .fundamentacao-cards,
    .material-list,
    .help-prof-list{
        grid-template-columns:1fr;
    }

    .hero-educacao-content h1{
        font-size:3.8rem;
    }

    .section-header h2,
    .tne-texto h2,
    .material-texto h2,
    .fundamentacao-texto h2,
    .mercadinho-texto h2,
    .help-prof-texto h2,
    .pesquisa-content h2{
        font-size:2.6rem;
    }

}

@media(max-width:600px){

    .hero-educacao{
        min-height:65vh;
    }

    .hero-educacao-content h1{
        font-size:3rem;
    }

    .section-header h2,
    .tne-texto h2,
    .material-texto h2,
    .fundamentacao-texto h2,
    .mercadinho-texto h2,
    .help-prof-texto h2,
    .pesquisa-content h2,
    .avaliacao-box h2{
        font-size:2rem;
    }

    .section-tne-intro,
    .section-publico,
    .section-material,
    .section-objetivos,
    .section-fundamentacao,
    .section-estrategias,
    .section-mercadinho,
    .section-recursos,
    .section-avaliacao,
    .section-pesquisa,
    .section-inclusao,
    .section-help-prof{
        padding:80px 0;
    }

    .floating-card{
        position:relative;

        left:auto;
        bottom:auto;

        width:100%;

        margin-top:-40px;
    }

    .tne-image img,
    .material-image img,
    .mercadinho-image img,
    .help-prof-image img{
        height:340px;
    }

}



/* ------------------------------------------------@------------------------------------------------------- */



/* ================= 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;
    }

}