/* Reset padrão para remover espaços indesejados */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden; /* Evita barra de rolagem lateral */
}

/* --- MANTER ESTA ESTRUTURA PARA O RODAPÉ NÃO SUBIR --- */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o corpo ocupe a tela toda */
    margin: 0;
    background-color: #f8f9fc !important; /* Tira o 'branco morto' sem escurecer tudo */
}

main, .conteudo-principal {
    flex: 1; /* Isso aqui é o que 'empurra' o rodapé para o fim */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f9fc;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* AJUSTE DO TOPO PARA CENTRALIZAR TUDO */
header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  flex-direction: column; /* Coloca logo em cima e botão embaixo se quiser */
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

/* Ajuste da Logo para remover o aspecto de "moldura" */
.logo-img {
    width: 180px;      /* Tamanho ajustado conforme sua preferência */
    height: auto;
    display: block;
    margin: 0;         /* Alinha à esquerda para o menu ficar ao lado */
    
    /* TRUQUE PARA TIRAR O FUNDO BRANCO DA IMAGEM */
    mix-blend-mode: multiply; 
    
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1));
}

/* Ajuste do Menu para não sumir o botão */
.nav-menu a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: 0.3s;
}

.btn-header {
    background-color: #1e3a8a !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.nav {
  display: flex;
  justify-content: center; /* Mudado para center para ajudar a logo */
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.btn-header {
  background: #1e3a8a;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
}

/* SEÇÃO HERO (MENININHA) */
.hero {
    /* Substitua pelo nome correto da sua imagem */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                      url('../imagens/topo.jpg'); 
    
    /* Faz a imagem cobrir toda a área sem esticar */
    background-size: cover; 
    
    /* Centraliza a imagem na seção */
    background-position: center; 
    
    /* Define uma altura mínima para a seção aparecer bem */
    min-height: 60vh; 
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* Cor do texto sobre a imagem */
}


.hero h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #1e3a8a;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* OUTRAS SEÇÕES */
section {
  padding: 70px 0;
}

.sobre h2, .galeria h2, .localizacao h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.galeria .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.galeria img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  margin-bottom: 30px;
}

footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 40px 0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
}
/* --- RECUPERAÇÃO DOS TÓPICOS (CARDS) --- */
.topicos {
  background: #ffffff;
  padding: 80px 0;
}

.titulo-secao {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #f3f4f6;
  padding: 30px;
  border-radius: 16px;
  width: 300px;
  text-decoration: none; /* Remove o sublinhado azul */
  color: #333;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
  display: block; /* Garante que o card se comporte como um bloco */
}

/* Efeito de levantar ao passar o mouse */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: #ffffff; /* Dá um leve destaque no fundo */
}

.card h3 {
  margin-bottom: 15px;
  color: #1e3a8a;
  font-size: 20px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
/* Layout do Cabeçalho */
.header-wrapper {
    display: flex;
    justify-content: space-between; /* Logo na esquerda, Menu na direita */
    align-items: center;
    padding: 10px 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px; /* Espaço entre os links */
}

.nav-menu a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #ffcc00; /* Cor de destaque ao passar o mouse */
}

/* Esconde o ícone de 3 linhas no Desktop */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #1e3a8a;
    border-radius: 5px;
}

/* --- RESPONSIVIDADE (CELULAR) --- */
@media (max-width: 768px) {
    .header-wrapper {
        justify-content: center; /* Centraliza a logo no celular */
        position: relative;
    }

    .menu-toggle {
        display: flex; /* Mostra o ícone no celular */
        position: absolute;
        right: 0;
    }

    /* Menu Suspenso na Direita */
    .nav-menu {
        display: none; /* Escondido por padrão */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: -5%;
        background: white;
        width: 200px;
        padding: 20px;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 0 10px;
        z-index: 1000;
    }

    /* Classe para mostrar o menu quando clicado */
    .nav-menu.active {
        display: flex;
    }
}
/* Estilo padrão do botão (Sempre visível) */
.btn-header {
    background-color: #1e3a8a !important; /* Azul escuro fixo */
    color: white !important;              /* Texto branco sempre visível */
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid #1e3a8a;
}

/* Efeito ao passar o mouse (Hover) */
.btn-header:hover {
    background-color: #ffcc00 !important; /* Muda para amarelo ao passar o mouse */
    color: #1e3a8a !important;            /* Texto muda para azul para dar contraste */
    border-color: #ffcc00;
}
/* Container para colocar texto e imagem lado a lado */
.sobre-wrapper {
    display: flex;
    align-items: center; /* Centraliza o texto verticalmente com a foto */
    gap: 40px;           /* Espaço entre o texto e a imagem */
    padding: 20px 0;
}

/* Garante que o texto ocupe metade da largura */
.sobre-texto {
    flex: 1;
    text-align: left;    /* Texto alinhado à esquerda como em livros */
}

/* Garante que a imagem ocupe a outra metade e fique bonita */
.sobre-imagem {
    flex: 1;
}

.sobre-imagem img {
    width: 100%;         /* Ajusta a foto ao tamanho da coluna */
    max-width: 500px;    /* Impede que a foto fique gigante */
    border-radius: 15px; /* Bordas arredondadas para combinar com o site */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- AJUSTE PARA CELULAR --- */
@media (max-width: 768px) {
    .sobre-wrapper {
        flex-direction: column; /* No celular, a foto fica embaixo do texto */
        text-align: center;
    }
}
.estrutura-moderna {
    background-color: #1e3a8a; /* Azul da Educarmais */
    color: white;
    padding: 80px 0;
    text-align: center;
}

.pilares-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.pilar-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icone-circulo {
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.pilar-card:hover .icone-circulo {
    background: white;
    color: #1e3a8a;
    transform: scale(1.1);
}

.pilar-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.pilar-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Ajuste para celular */
@media (max-width: 768px) {
    .pilares-container {
        flex-direction: column;
        align-items: center;
    }
}
/* --- SEÇÃO ESTRUTURA PREMIUM (LADO A LADO) --- */
.estrutura-premium {
    background-color: #ffffff; /* Fundo branco para a seção inteira */
    padding: 80px 0;
    text-align: center;
}

/* CONTAINER PRINCIPAL PARA O LADO A LADO */
.container-flex-lado-a-lado {
    display: flex; /* Aqui é a mágica do lado a lado */
    align-items: center;  /* Alinha a foto com o meio do texto */
    justify-content: space-between;
    gap: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* AJUSTE DA COLUNA DA FOTO */
.coluna-imagem-premium {
    flex: 1; /* A foto pega metade do espaço */
}

.coluna-imagem-premium img {
    width: 100%;
    max-width: 500px; /* Impede que a foto do bebê fique gigante */
    border-radius: 20px; /* Bordas arredondadas */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block; /* Remove espaços vazios abaixo da imagem */
}

/* AJUSTE DA COLUNA DO TEXTO */
.coluna-conteudo-premium {
    flex: 1.2; /* O texto pega um pouco mais de espaço */
    text-align: left; /* Texto alinhado à esquerda para combinar com a foto */
    color: #333; /* Cor escura para o texto no fundo branco */
}

.titulo-secao-premium {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #363636; /* Azul escuro da Educarmais */
}

/* CONTAINER QUE DEIXA OS CARDS EM GRADE */
.pilares-container-premium {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deixa os cards em 2 colunas ao lado da foto */
    gap: 20px;
}

/* ESTILO DOS CARTÕES INDIVIDUAIS */
.pilar-card-premium {
    background-color: #f8f9fc; /* Leve cor de fundo nos cards */
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icone-circulo-premium {
    width: 70px;
    height: 70px;
    border: 2px solid #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.pilar-card-premium h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

.pilar-card-premium p {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
}

/* --- AJUSTE PARA CELULAR (FOTO EM CIMA, TEXTO EMBAIXO) --- */
@media (max-width: 700px) {
    .container-flex-lado-a-lado {
        flex-direction: column;
        text-align: center;
    }
    
    .coluna-conteudo-premium {
        text-align: center;
    }
    
    .pilares-container-premium {
        grid-template-columns: 1fr; /* No celular, eles ficam em uma coluna */
    }
}
/* Estilo do Botão Flutuante */
.whatsapp-float {
    position: fixed;        /* Deixa o botão parado na tela mesmo ao rolar */
    width: 60px;
    height: 60px;
    bottom: 30px;           /* Distância do fundo da tela */
    right: 30px;            /* Distância da lateral direita */
    background-color: #25d366; /* Verde oficial do WhatsApp */
    color: #FFF;
    border-radius: 50px;    /* Faz o fundo ficar redondo */
    text-align: center;
    font-size: 35px;        /* Tamanho do ícone */
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;          /* Garante que fique na frente de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);  /* Aumenta levemente ao passar o mouse */
    background-color: #128c7e;
}
.selector-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    background-color: #ffffff; /* Fundo branco minimalista */
    border-bottom: 1px solid #eee;
}

.selector-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.selector-card {
    flex: 1;
    border: 1px solid #ddd; /* Quadro minimalista */
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    background: #fff;
    min-width: 250px;
}

.selector-card:hover {
    border-color: #1e3a8a; /* Cor da sua logo ao passar o mouse */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.selector-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    mix-blend-mode: multiply; /* Remove fundo branco da logo */
}

.selector-card span {
    display: block;
    color: #666;
    font-weight: 500;
    font-size: 14px;
}
/* Fundo que escurece o site */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Fundo escuro */
    backdrop-filter: blur(8px); /* Desfoca o site atrás */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Fica na frente de TUDO */
}

/* Caixa branca centralizada */
.modal-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    width: 90%;
}

.modal-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.modal-card {
    flex: 1;
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-card:hover {
    border-color: #1e3a8a;
    transform: translateY(-5px);
}

.modal-card img {
    width: 100%;
    max-width: 140px;
    margin-bottom: 10px;
}

.modal-card span {
    color: #333;
    font-weight: 600;
}
/* Forçar o verde no botão flutuante */
.whatsapp-float {
    background-color: #25d366 !important; /* Verde WhatsApp */
    color: white !important;
}

.whatsapp-float i {
    color: white !important;
}
/* Isso vai forçar o ícone a ser verde em todas as páginas */
.whatsapp-float {
    background-color: #25d366 !important; /* Verde original */
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.whatsapp-float i {
    color: white !important;
}
/* Estilo das 3 linhas (Menu Mobile) */
.mobile-menu-icon {
    display: none; /* Escondido no computador */
    font-size: 28px;
    background: none;
    border: none;
    color: #1e3a8a; /* Azul original */
    cursor: pointer;
}

/* --- AJUSTE PARA CELULAR --- */
@media (max-width: 768px) {
    /* 1. Força o menu de links a sumir da tela inicial */
    .nav-menu {
        display: none !important; 
        flex-direction: column;
        position: absolute;
        top: 80px; /* Ajusta a altura para baixo do cabeçalho */
        left: 0;
        width: 100%;
        background-color: white;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* 2. Mostra o menu APENAS quando ele tiver a classe 'active' */
    .nav-menu.active {
        display: flex !important;
    }

    /* 3. Garante que as 3 linhas fiquem azuis e visíveis na direita */
    .mobile-menu-icon {
        display: block !important;
        font-size: 30px;
        color: #1e3a8a !important; /* Azul da sua marca */
        background: none;
        border: none;
        cursor: pointer;
    }
}
    
    /* 4. Ajusta a logo para não ficar gigante no celular */
    .logo-img {
        height: 150px !important;
    }
/* Ajuste do Cabeçalho para Desktop */
.header-wrapper {
    display: flex;
    justify-content: space-between; /* Logo na esquerda, Menu na direita */
    align-items: center; /* Alinha os itens verticalmente pelo centro */
    padding: 10px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 80px; /* Reduzi o tamanho para não quebrar o layout */
    width: auto;
    display: block;
}

.nav-menu {
    display: flex; /* Garante que os links fiquem lado a lado no desktop */
    gap: 25px;
    align-items: center;
}
/* Fundo Lúdico Premium para Kids */
.kids-bg-decor {
    position: relative;
    overflow: hidden;
    background-color: #ffffff; /* Mantém o branco premium */
}

/* Criando elementos decorativos minimalistas (Stickers) */
.kids-bg-decor::before, .kids-bg-decor::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.05; /* Bem clarinho para ser minimalista */
    z-index: 0;
    pointer-events: none;
}

/* Sticker 1: Topo Esquerda (Ex: Um Sol ou Círculo) */
.kids-bg-decor::before {
    top: 10%;
    left: -30px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/4814/4814268.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-15deg);
}

/* Sticker 2: Meio Direita (Ex: Um Lápis ou Cubo) */
.kids-bg-decor::after {
    top: 50%;
    right: -20px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/3461/3461320.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(20deg);
}

/* Garante que o conteúdo fique na frente dos desenhos */
.container, .hero, .cards {
    position: relative;
    z-index: 1;
}
/* Container que abraça o conteúdo com os desenhos no fundo */
.kids-bg-decor {
    position: relative;
    background-color: #ffffff; /* Branco Premium */
    overflow: hidden;
}

/* Elementos de fundo (Stickers) */
.kids-bg-decor::before, .kids-bg-decor::after, 
.sticker-3, .sticker-4 {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04; /* Quase invisível para ser minimalista */
    pointer-events: none;
    z-index: 0;
}

/* Sticker 1: Foguete (Topo Esquerda) */
.kids-bg-decor::before {
    top: 5%;
    left: 2%;
    background-image: url('https://cdn-icons-png.flaticon.com/512/1046/1046830.png');
    transform: rotate(-15deg);
}

/* Sticker 2: Lápis (Meio Direita) */
.kids-bg-decor::after {
    top: 35%;
    right: 3%;
    background-image: url('https://cdn-icons-png.flaticon.com/512/588/588395.png');
    transform: rotate(20deg);
}

/* Sticker 3: Cubos (Final Esquerda) */
.sticker-3 {
    bottom: 20%;
    left: 4%;
    background-image: url('https://cdn-icons-png.flaticon.com/512/3081/3081918.png');
}

/* Sticker 4: Estrela (Final Direita) */
.sticker-4 {
    bottom: 5%;
    right: 5%;
    background-image: url('https://cdn-icons-png.flaticon.com/512/1828/1828884.png');
}
/* Fundo Premium com Stickers */
.kids-bg-decor {
    position: relative;
    background-color: #ffffff; /* Branco Premium */
    overflow: hidden;
}

/* Criando os stickers flutuantes (Dê Ctrl+S após colar) */
/* Configuração Geral dos Stickers */
.kids-bg-decor::before, .kids-bg-decor::after, 
.sticker-3, .sticker-4, .sticker-5, .sticker-6 {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05; /* Tom suave para estilo Premium */
    pointer-events: none;
    z-index: 0;
}

/* 1. Sol (Topo Esquerda - já funcionando) */
.kids-bg-decor::before { top: 5%; left: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/4814/4814268.png'); }

/* 2. Lápis (Meio Direita) */
.kids-bg-decor::after { top: 25%; right: 3%; background-image: url('https://cdn-icons-png.flaticon.com/512/3461/3461320.png'); transform: rotate(15deg); }

/* 3. Cubos Mágicos (Meio Esquerda) */
.sticker-3 { top: 45%; left: 3%; background-image: url('https://cdn-icons-png.flaticon.com/512/3081/3081918.png'); }

/* 4. Estrela (Baixo Direita) */
.sticker-4 { top: 65%; right: 4%; background-image: url('https://cdn-icons-png.flaticon.com/512/1828/1828884.png'); transform: rotate(-10deg); }

/* 5. Foguete (Mais ao Fundo Esquerda) */
.sticker-5 { top: 80%; left: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/1046/1046830.png'); opacity: 0.04; }

/* 6. Livro (Final Direita) */
.sticker-6 { bottom: 5%; right: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/3389/3389081.png'); }
/* Configuração para cobrir o site inteiro */
.kids-bg-decor {
    position: relative;
    width: 100%;
    min-height: 100%; /* Garante que o fundo acompanhe o crescimento do site */
    overflow: hidden;
}

.kids-bg-decor::before, .kids-bg-decor::after, 
.sticker-3, .sticker-4, .sticker-5, .sticker-6 {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05; 
    pointer-events: none;
    z-index: 0;
}

/* Espalhando os desenhos de cima a baixo */
.kids-bg-decor::before { top: 5%; left: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/4814/4814268.png'); } /* Sol no topo */
.kids-bg-decor::after { top: 20%; right: 3%; background-image: url('https://cdn-icons-png.flaticon.com/512/3461/3461320.png'); } /* Lápis */
.sticker-3 { top: 40%; left: 4%; background-image: url('https://cdn-icons-png.flaticon.com/512/3081/3081918.png'); } /* Cubos no meio */
.sticker-4 { top: 60%; right: 4%; background-image: url('https://cdn-icons-png.flaticon.com/512/1828/1828884.png'); } /* Estrela */
.sticker-5 { top: 80%; left: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/1046/1046830.png'); } /* Foguete no final */
.sticker-6 { top: 92%; right: 3%; background-image: url('https://cdn-icons-png.flaticon.com/512/3389/3389081.png'); } /* Livro bem embaixo */
.kids-bg-decor {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.kids-bg-decor::before, .kids-bg-decor::after, 
.sticker-3, .sticker-4, .sticker-5, .sticker-6 {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05; 
    pointer-events: none;
    z-index: 0;
}

.kids-bg-decor::before { top: 5%; left: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/4814/4814268.png'); }
.kids-bg-decor::after { top: 20%; right: 3%; background-image: url('https://cdn-icons-png.flaticon.com/512/3461/3461320.png'); }
.sticker-3 { top: 40%; left: 4%; background-image: url('https://cdn-icons-png.flaticon.com/512/3081/3081918.png'); }
.sticker-4 { top: 60%; right: 4%; background-image: url('https://cdn-icons-png.flaticon.com/512/1828/1828884.png'); }
.sticker-5 { top: 80%; left: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/1046/1046830.png'); }
.sticker-6 { top: 92%; right: 3%; background-image: url('https://cdn-icons-png.flaticon.com/512/3389/3389081.png'); }
.logo-img {
    width: 100px; /* Largura igual */
    height: 100px; /* Altura igual */
    object-fit: contain; /* Garante que a logo inteira caiba sem distorção */
}
/* 1. AJUSTE DAS LOGOS PARA FICAREM IGUAIS */
.logo-img {
    height: 80px; /* Ajuste este valor para o tamanho que preferir */
    width: auto;
    object-fit: contain;
}

/* 2. CONFIGURAÇÃO DOS DESENHOS NO FUNDO TODO */
.kids-bg-decor {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.kids-bg-decor::before, .kids-bg-decor::after, 
.sticker-3, .sticker-4, .sticker-5, .sticker-6 {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05; 
    pointer-events: none;
    z-index: 0;
}

/* Espalhando os desenhos de cima a baixo do site */
.kids-bg-decor::before { top: 5%; left: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/4814/4814268.png'); }
.kids-bg-decor::after { top: 20%; right: 3%; background-image: url('https://cdn-icons-png.flaticon.com/512/3461/3461320.png'); }
.sticker-3 { top: 40%; left: 4%; background-image: url('https://cdn-icons-png.flaticon.com/512/3081/3081918.png'); }
.sticker-4 { top: 60%; right: 4%; background-image: url('https://cdn-icons-png.flaticon.com/512/1828/1828884.png'); }
.sticker-5 { top: 80%; left: 2%; background-image: url('https://cdn-icons-png.flaticon.com/512/1046/1046830.png'); }
.sticker-6 { top: 92%; right: 3%; background-image: url('https://cdn-icons-png.flaticon.com/512/3389/3389081.png'); }
/* --- INÍCIO DA CORREÇÃO DE ALINHAMENTO DAS LOGOS --- */

/* Esta regra força todas as imagens com a classe 'logo-img' a terem a mesma altura visual */
.logo-img {
    height: 80px; /* Altere este valor para o tamanho desejado em pixels */
    width: auto; /* Mantém a proporção correta da imagem */
    object-fit: contain; /* Garante que a imagem inteira caiba sem distorcer */
    display: block; /* Remove espaços vazios indesejados abaixo da imagem */
    margin: 0 auto; /* Centraliza a logo horizontalmente no contêiner */
}

/* --- FIM DA CORREÇÃO --- */
.proposta-pedagogica { padding: 60px 0; text-align: center; background: #fff; position: relative; z-index: 1; }
.subtitulo-proposta { color: #666; margin-bottom: 40px; }

.abas-container { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.aba-btn {
    background: #f8f9fa; border: 2px solid transparent; padding: 15px 25px; cursor: pointer;
    border-radius: 12px; transition: 0.3s; display: flex; flex-direction: column; align-items: center; gap: 10px;
    width: 180px; color: #555;
}
.aba-btn i { font-size: 24px; }
.aba-btn.active { border-color: #ffcc00; background: #fff; color: #333; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.conteudo-wrapper { max-width: 800px; margin: 0 auto; min-height: 150px; background: #fdfdfd; padding: 30px; border-radius: 15px; }
.aba-conteudo { display: none; animation: fadeIn 0.5s; }
.aba-conteudo.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.proposta-kids { padding: 80px 0; background: #fff; position: relative; z-index: 1; }

.pilares-grid { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    margin-bottom: 50px; 
    flex-wrap: wrap;
}

.pilar-item {
    width: 160px;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 30px; /* Bordas bem redondas para o público Kids */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid #f0f0f0;
    text-align: center;
}

.pilar-icone { 
    font-size: 30px; 
    margin-bottom: 15px; 
    color: #ffcc00; /* Cor da sua logo */
}

.pilar-item span { font-weight: 600; color: #444; font-size: 14px; }

/* Efeito de Destaque */
.pilar-item.active {
    transform: scale(1.1);
    border-color: #ffcc00;
    background: #fffdf0;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
}

.pilar-visor {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    min-height: 200px;
}

.pilar-texto { display: none; text-align: center; }
.pilar-texto.active { display: block; animation: zoomIn 0.4s ease; }
.pilar-texto h3 { color: #333; margin-bottom: 15px; font-size: 24px; }
.pilar-texto p { color: #666; line-height: 1.6; }

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.pilar-com-foto {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px; /* Aumentado para acomodar a foto */
}

.pilar-foto-container {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pilar-foto-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease; /* Transição suave de opacidade */
}

.pilar-textos-container {
    flex: 1.5;
}

@keyframes fadeInImage {
    from { opacity: 0; }
    to { opacity: 1; }
}

#pilar-foto-destaque.nova-foto {
    animation: fadeInImage 0.6s ease;
}
.proposta-mais { padding: 80px 0; background: #fff; }
.abas-mais { display: flex; justify-content: center; gap: 40px; margin-bottom: 50px; }

.aba-item {
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
    opacity: 0.5;
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
}

.aba-item i { font-size: 28px; display: block; margin-bottom: 10px; color: #333; }
.aba-item span { font-weight: 600; font-size: 15px; }

.aba-item.active {
    opacity: 1;
    border-color: #ffcc00; /* Destaque amarelo da marca */
}

.visor-mais {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.mais-foto { flex: 1; border-radius: 15px; overflow: hidden; height: 350px; }
.mais-foto img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.mais-texto { flex: 1; }
.pilar-txt { display: none; }
.pilar-txt.active { display: block; animation: fadeInRight 0.5s ease; }
.pilar-txt h3 { font-size: 28px; margin-bottom: 20px; color: #222; }
.pilar-txt p { font-size: 17px; line-height: 1.8; color: #555; }

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsividade para celular */
@media (max-width: 768px) {
    .visor-mais { flex-direction: column; padding: 20px; }
    .abas-mais { gap: 20px; }
    .mais-foto { height: 250px; width: 100%; }
}
.proposta-mais { padding: 60px 0; background: #fff; }

.abas-mais { 
    display: flex; 
    justify-content: center; 
    gap: 50px; 
    margin-bottom: 40px; 
    border-bottom: 1px solid #eee;
}

.aba-item {
    padding: 15px 0;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    opacity: 0.6;
}

.aba-item.active { 
    opacity: 1; 
    border-color: #ffcc00; /* Amarelo da logo */
}

.aba-item i { font-size: 24px; margin-bottom: 8px; }

/* O SEGREDO DA OTIMIZAÇÃO: LADO A LADO */
.visor-otimizado {
    display: flex;
    align-items: stretch; /* Garante alturas iguais */
    gap: 40px;
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.lado-foto { flex: 1; min-height: 350px; }
.lado-foto img { width: 100%; height: 100%; object-fit: cover; }

.lado-texto { 
    flex: 1.2; 
    padding: 40px; 
    display: flex; 
    align-items: center; 
}

.txt-pilar { display: none; }
.txt-pilar.active { display: block; animation: fadeIn 0.5s ease; }
.txt-pilar h3 { font-size: 26px; margin-bottom: 15px; color: #333; }
.txt-pilar p { font-size: 16px; line-height: 1.6; color: #666; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Ajuste Celular */
@media (max-width: 768px) {
    .visor-otimizado { flex-direction: column; }
    .lado-foto { min-height: 200px; }
}
.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); /* Sombra suave */
    border-top: 4px solid #ffcc00; /* Detalhe na cor da logo */
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Efeito de flutuar ao passar o mouse */
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.15); /* Sombra brilha em amarelo */
}
header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0; /* Linha divisória quase invisível */
    position: relative;
    z-index: 1000;
}

/* A "Assinatura" da marca no topo do site */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffcc00; /* O amarelo vivo da sua logo */
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: #333;
    margin: 0 15px;
    font-size: 15px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-menu a:hover {
    color: #ffcc00; /* Feedback visual elegante */
}

/* Botão com estilo "Outline" Premium */
.btn-header {
    border: 2px solid #1a2a6c; /* O azul escuro da logo */
    color: #ffffff !important;
    background: transparent;
    padding: 10px 25px !important;
    border-radius: 8px !important; /* Menos redondo, mais sério */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: #1a2a6c;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(26, 42, 108, 0.2);
}
#foto-pilar {
    background-color: #f0f0f0; /* Um cinza leve para não ficar vazio */
    min-height: 350px; /* Garante que o espaço já exista antes da foto carregar */
    display: block;
}
.visita-360 {
    padding: 80px 0;
    background: #fdfdfd;
}

.subtitulo {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* Centraliza e limita a largura para não ficar "gigante" na tela */
.moldura-360 {
    max-width: 900px; 
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Sombra suave premium */
    border: 1px solid #eee;
}

/* Detalhe que simula uma janela de navegador moderna */
.decoracao-topo {
    background: #ffcc00;
    padding: 10px 20px;
    display: flex;
    gap: 8px;
}

.decoracao-topo span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ponto-vermelho { background: #ff5f56; }
.ponto-amarelo { background: #1e13b3; }
.ponto-verde { background: #27c93f; }

iframe {
    display: block;
    filter: grayscale(10%); /* Toque artístico opcional */
    transition: 0.3s;
}

iframe:hover {
    filter: grayscale(0%);
}
.mapa-contato {
    filter: grayscale(100%) invert(90%) contrast(90%); /* Efeito monocromático chique */
    border-radius: 15px;
    opacity: 0.8;
    transition: 0.5s;
}

.mapa-contato:hover {
    filter: grayscale(0%); /* Volta ao normal quando o usuário interage */
    opacity: 1;
}
.contato-premium {
    padding: 100px 0;
    background: #fff;
}

.container-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.contato-info { flex: 1; }

.titulo-contato {
    font-size: 32px;
    color: #1a2a6c; /* Azul da sua marca */
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    color: #ffcc00; /* Amarelo da logo */
    font-size: 20px;
    margin-top: 5px;
}

.info-item strong { display: block; color: #333; font-size: 18px; }
.info-item p { color: #666; margin: 0; }

.btn-whatsapp-contato {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* O MAPA PREMIUM */
.contato-mapa { flex: 1.2; height: 450px; }

.moldura-mapa {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Sombra suave */
    border: 8px solid #fff; /* Moldura branca chique */
}

/* Responsividade */
@media (max-width: 768px) {
    .container-split { flex-direction: column; text-align: center; }
    .info-item { justify-content: center; }
    .contato-mapa { width: 100%; height: 300px; }
}
/* Ajusta o espaçamento interno de cada bloco de informação */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 35px; /* Aumenta o espaço entre Endereço e Telefone */
    align-items: flex-start;
}

/* O SEGREDO: Ajusta o título e o texto da rua */
.info-item strong {
    display: block;
    color: #333;
    font-size: 18px;
    margin-bottom: 8px; /* Cria o espaço exatamente onde você marcou em vermelho */
    line-height: 1.2;
}

.info-item p {
    color: #666;
    margin: 0;
    line-height: 2.6; /* Deixa o texto da rua mais fácil de ler */
    font-size: 16px;
}

/* Ajuste opcional para o ícone não ficar desalinhado com o novo espaço */
.info-item i {
    color: #ffcc00; /* Amarelo da logo */
    font-size: 20px;
    margin-top: 3px; 
}/* 1. Aumenta o espaço entre os blocos de Endereço e Telefone */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 45px; /* Aumenta o espaço entre cada item de contato */
    align-items: flex-start;
}

/* 2. Cria espaço entre o Título (Endereço) e a Rua (onde você marcou em vermelho) */
.info-item strong {
    display: block;
    color: #1a2a6c; /* Azul da marca */
    font-size: 19px;
    margin-bottom: 12px; /* O "respiro" que faltava entre as linhas */
    line-height: 1.2;
}

/* 3. Ajusta o texto da informação para não ficar sufocado */
.info-item p {
    color: #555;
    margin: 0;
    line-height: 1.6; /* Altura de linha mais confortável para leitura */
    font-size: 16px;
}

/* 4. Opcional: Empurra todo o bloco um pouco mais para baixo para preencher o verde */
.contato-info {
    padding: 40px 0; /* Aumenta o respiro no topo e na base */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza o bloco todo em relação ao mapa */
    height: 100%; /* Faz o container ter a mesma altura do mapa */
}

/* Força o espaçamento extra entre os blocos de texto */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 60px !important; /* Aumentamos para 60px para preencher o vazio */
    align-items: flex-start;
}

/* Espaço interno entre "Endereço" e a "Rua" */
.info-item strong {
    display: block;
    margin-bottom: 15px !important; /* Aumentado para descolar bem as linhas */
    font-size: 20px;
}
/* Este é o texto "Agende um horário..." */
.contato-info p:first-of-type {
    margin-bottom: 40px !important; /* Cria o espaço antes de começar o Endereço */
    line-height: 1.6;
    color: #666;
}

/* Garante que o bloco de informações se espalhe */
.info-item {
    display: flex;
    gap: 15px;
    margin-top: 20px; /* Ajuda a descolar do texto de cima */
    margin-bottom: 50px !important; /* Espaço entre Endereço e Telefone */
}
/* Ajustes finos para subir o Telefone e enquadrar com o mapa */
.contato-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Centraliza o bloco todo na altura do mapa */
    padding-top: 0 !important; /* Remove o peso do topo para o conteúdo subir */
}

.contato-info p:first-of-type {
    margin-bottom: 20px !important; /* Diminui o espaço inicial */
}

.info-item {
    margin-bottom: 25px !important; /* Aproxima o Telefone do Endereço para subir o bloco */
}

.btn-whatsapp-contato {
    margin-top: 10px !important; /* Garante que o botão também acompanhe a subida */
}
/* Garante que todos os ícones de contato tenham a mesma largura para alinhar os textos */
.info-item i {
    width: 30px; /* Largura fixa para o ícone */
    display: flex;
    justify-content: center; /* Centraliza o ícone dentro dessa largura */
    color: #ffcc00; /* Mantém o amarelo da logo */
    font-size: 20px;
    margin-right: 10px; /* Espaço entre o ícone e o texto */
}

/* Alinhamento fino para os títulos 'Endereço' e 'Telefone' */
.info-item strong {
    display: block;
    margin-bottom: 5px !important;
    text-align: left; /* Garante que o texto comece da esquerda */
}

/* Ajuste no container para evitar que o bloco se mova */
.info-item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-premium {
    background-color: #0a1128; /* Azul marinho extra escuro */
    color: #ffffff;
    padding: 70px 0 0px;
    margin-top: 50px;
}

.container-footer {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding: 0 20px 50px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Deixa a logo branca para o fundo escuro */
}

.footer-col h3 {
    color: #ffcc00; /* Amarelo da marca para os títulos */
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p, .footer-col a {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { color: #fff; padding-left: 8px; }

/* ESTILO DA SUA AGÊNCIA NO BOTTOM */
.footer-bottom {
    background-color: #050a18;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.container-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p { font-size: 0.85rem; color: #64748b; margin: 0; }

.upcode-link {
    color: #ffcc00 !important; /* Destaque para sua agência */
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.upcode-link:hover {
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Ajuste Responsivo */
@media (max-width: 768px) {
    .container-bottom { flex-direction: column; text-align: center; }
}

.social-links {
    display: flex;
    gap: 15px; /* Espaço entre os ícones marcados em vermelho */
    margin-top: 20px;
}

.social-links a {
    color: #ffffff;
    font-size: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffcc00; /* Fica amarelo ao passar o mouse, como o nome da sua agência */
    transform: translateY(-3px); /* Efeito de levante premium */
}

.footer-premium {
    background-color: #0a1128 !important; /* Sua cor escura */
    color: #ffffff;
    padding: 60px 0 0; /* Remove padding de baixo aqui para controlar no bottom */
    width: 100%;
    margin-top: auto !important; /* Truque mestre: empurra o rodapé para o fim da tela */
}

.footer-bottom {
    background-color: #050a18 !important; /* Cor ainda mais escura para o copyright */
    padding: 25px 0;
    width: 100%;
    margin: 0 !important; /* Garante que não haja espaço branco abaixo desta div */
}

/* --- LIMPEZA TOTAL E ENQUADRAMENTO --- */

/* 1. Define o fundo do navegador como a cor do rodapé */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    background-color: #050a18 !important; /* Cor exata do sub-rodapé */
    display: flex !important;
    flex-direction: column !important;
}
.selos-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.selo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.selo-item i {
    color: #ffcc00; /* Amarelo padrão da marca */
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
}

/* Efeito de destaque ao passar o mouse */
.selo-item:hover {
    color: #ffffff;
    transform: translateX(5px);
    transition: 0.3s;
}
/* --- TRAVA ANTI-ESPAÇO BRANCO --- */
html {
    background-color: #050a18 !important; /* Pinta o fundo 'infinito' do navegador */
}

body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    background-color: #050a18 !important;
    overflow-x: hidden; /* Evita barras de rolagem laterais fantasmas */
}

.footer-premium {
    margin-top: auto !important; /* Cola no fundo se a página for curta */
    background-color: #0a1128 !important;
    padding: 60px 0 0;
    width: 100% !important;
}

.footer-bottom {
    background-color: #050a18 !important;
    margin: 0 !important;
    padding: 25px 0 !important; /* Aumentamos o fundo para 'vazar' para baixo e cobrir o branco */
    width: 100% !important;
}

/* Estilo dos Selos */
.selos-container { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.selo-item { display: flex; align-items: center; gap: 10px; color: #cbd5e1; font-size: 0.9rem; }
.selo-item i { color: #ffcc00; font-size: 1rem; }
.footer-premium {
  margin-top: auto !important;
}
/* ====== AJUSTE PREMIUM FUNDO SOBRE ====== */

.sobre {
    background-color: #ffc813 !important; /* Amarelo claro elegante */
    padding: 100px 0 !important;
}

/* Deixa o texto mais bonito no fundo claro */
.sobre-texto h2 {
    color: #1a2a6c !important; /* Azul da marca */
    font-size: 32px;
}

.sobre-texto p {
    color: #444 !important;
    line-height: 1.8;
    font-size: 16px;
}

/* Cria um "card elegante" em cima do amarelo */
.sobre-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .sobre-wrapper {
        padding: 25px;
    }
}
/* ===== DESBLOQUEIO TOTAL DE SCROLL ===== */
html, body {
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
}

body {
  display: block !important; /* remove risco de flex travando altura */
}
/* Troca o Amarelo "cansado" por Azul Marinho Premium */
.secao-sobre { 
    background-color: #0a1128 !important; 
    color: #ffffff !important;
    padding: 80px 0;
}

.secao-sobre h2 { 
    color: #ffcc00 !important; /* Título em Amarelo para destacar */
}

/* Ajuste do Rodapé para não ter espaço branco */
html, body {
    background-color: #050a18 !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.footer-bottom {
    background-color: #050a18 !important;
    padding: 40px 0 100px 0 !important; /* "Vaza" a cor para baixo para cobrir o branco */
}

.upcode-link {
    color: #ffcc00 !important;
    font-weight: bold;
    text-decoration: none;
}
/* --- ESTILO PREMIUM PARA A SEÇÃO SOBRE (SUBSTITUINDO O AMARELO) --- */
.secao-sobre, #sobre, section[class*="sobre"] {
    background-color: #0a1128 !important; /* Azul Marinho da UpCode */
    color: #ffffff !important;
    padding: 100px 0 !important;
    border-top: 4px solid #ffcc00 !important; /* Detalhe em amarelo no topo */
    border-bottom: 4px solid #ffcc00 !important; /* Detalhe em amarelo embaixo */
}

/* Garante que o texto fique legível no fundo escuro */
.secao-sobre h2, .secao-sobre h3 {
    color: #ffcc00 !important; /* Títulos em Amarelo */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

.secao-sobre p {
    color: #cbd5e1 !important; /* Cinza claro para não cansar a vista */
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

/* Ajuste das imagens na seção para não ficarem "soltas" */
.secao-sobre img {
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    border: 3px solid #ffcc00 !important;
}
/* Efeito nos Cards de Diferenciais */
.educacao-cards .card, .feature-card { 
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    cursor: pointer;
}

.educacao-cards .card:hover, .feature-card:hover {
    transform: translateY(-12px) !important; /* Faz o card 'pular' suavemente */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important; /* Adiciona profundidade */
}

/* Efeito nas Imagens das seções */
.secao-sobre img, .interacionismo-img {
    transition: transform 0.5s ease !important;
}

.secao-sobre img:hover, .interacionismo-img:hover {
    transform: scale(1.03) rotate(1deg) !important; /* Zoom leve e rotação charmosa */
}
.secao-sobre {
    position: relative;
    background: #0a1128 !important;
    /* Cria um corte diagonal moderno no topo da seção */
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 120px 0 !important;
}
/* Adiciona sombra suave em todos os containers brancos */
.container-branco, .card-white {
    background: #ffffff !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important; /* Sombra sutil */
    border: 1px solid rgba(0,0,0,0.03) !important;
}
/* --- ANIMAÇÃO DE FLUTUAR (CARDS) --- */
.educacao-cards div, .card {
    transition: all 0.4s ease-in-out !important;
}

.educacao-cards div:hover, .card:hover {
    transform: translateY(-15px) !important; /* Card sobe suavemente */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* --- DIVISOR DE FORMA (QUEBRA O RETO) --- */
.secao-sobre {
    clip-path: ellipse(150% 100% at 50% 100%); /* Cria uma base arredondada moderna */
    padding-bottom: 100px !important;
}

/* --- PROFUNDIDADE NA IMAGEM --- */
.secao-sobre img {
    border-radius: 30px !important;
    transition: 0.5s !important;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.secao-sobre img:hover {
    transform: scale(1.05) rotate(-1deg);
}
/* O ponto (.) é obrigatório para classes! */
.educacao-cards div, .card, .feature-item {
    transition: all 0.4s ease !important;
}

.educacao-cards div:hover, .card:hover, .feature-item:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.secao-sobre {
    clip-path: ellipse(150% 100% at 50% 100%) !important;
    background-color: #0a1128 !important;
    color: white !important;
}
/* --- APLICANDO O VISUAL DA FOTO 1 NA FOTO 2 --- */
.secao-proposta, #proposta {
    background-color: #0a1128 !important; /* Mesmo azul marinho da primeira foto */
    padding: 100px 0 !important;
    color: white !important;
}

/* Transforma o conteúdo em um card branco 'saltando' do fundo azul */
.secao-proposta .container-conteudo, .proposta-box {
    background: #ffffff !important;
    color: #333 !important;
    border-radius: 30px !important;
    padding: 40px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important; /* Dá profundidade */
    margin-top: -50px !important; /* Faz o bloco 'subir' sobre a cor de fundo */
}

.secao-proposta h2 {
    color: #ffcc00 !important; /* Título em amarelo para destacar no azul */
    margin-bottom: 30px !important;
}
/* ===== REMOVE FUNDO BRANCO DA SEÇÃO PROPOSTA ===== */

section {
  background: transparent;
}

.proposta-pedagogica,
#proposta,
.section-proposta {
  background: #08142b !important;
}

/* Remove fundo branco de qualquer container interno */
.proposta-pedagogica .container,
#proposta .container,
.section-proposta .container {
  background: transparent !important;
}

/* Se existir algum "card" branco dentro */
.proposta-pedagogica div,
#proposta div,
.section-proposta div {
  background-color: transparent;
}
/* ====== CORRIGIR FUNDO BRANCO DA ÁREA "PROPOSTA PEDAGÓGICA" ====== */
/* 1) Fundo da seção principal */
.proposta-pedagogica,
.proposta-kids,
.proposta-mais,
#proposta,
.secao-proposta {
  background: linear-gradient(135deg, #08142b, #0d224f) !important;
  color: #fff !important;
}

/* 2) Se a proposta estiver dentro do wrapper que você usa no site todo */
.kids-bg-decor {
  background-color: transparent !important; /* ou troque por #08142b se quiser o site todo escuro */
}

/* 3) Mantém o conteúdo em “card” claro (bonito), mas sem aquele branco chapado na página */
.proposta-pedagogica .conteudo-wrapper,
.proposta-kids .pilar-visor,
.proposta-mais .visor-mais,
.proposta-mais .visor-otimizado {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(8px);
  color: #fff !important;
}

/* 4) Textos internos para ficarem legíveis no fundo escuro */
.proposta-pedagogica h2,
.proposta-kids h2,
.proposta-mais h2,
.proposta-pedagogica h3,
.proposta-kids h3,
.proposta-mais h3 {
  color: #ffcc00 !important;
}

.proposta-pedagogica p,
.proposta-kids p,
.proposta-mais p,
.proposta-pedagogica span,
.proposta-kids span,
.proposta-mais span {
  color: rgba(255,255,255,0.85) !important;
}

/* 5) Botões/abas com visual compatível */
.aba-btn {
  background: rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.85) !important;
}

.aba-btn.active {
  background: rgba(255,255,255,0.10) !important;
  color: #fff !important;
  border-color: #ffcc00 !important;
}

/* 6) Se algum bloco ainda estiver branco (segurança) */
.proposta-pedagogica .conteudo-wrapper *,
.proposta-kids .pilar-visor *,
.proposta-mais .visor-mais *,
.proposta-mais .visor-otimizado * {
  background-color: transparent;
}
/* ===== ÍCONES (DESENHOS) DAS ABAS EM BRANCO ===== */

/* Modelo 1 (aba-btn) */
.aba-btn i {
  color: #ffffff !important;
  opacity: 0.9;
}

/* Modelo 2 (aba-item) */
.aba-item i {
  color: #ffffff !important;
  opacity: 0.9;
}

/* Quando a aba estiver ativa, deixa 100% branco */
.aba-btn.active i,
.aba-item.active i {
  color: #ffffff !important;
  opacity: 1 !important;
}
/* ===== LINHAS AMARELAS SÓ NA FAIXA DAS ABAS ===== */
.abas-container,
.abas-mais {
  border-top: 2px solid #ffcc00 !important;
  border-bottom: 2px solid #ffcc00 !important;
  padding-top: 18px;
  padding-bottom: 18px;
}
/* ===== LINHAS AMARELAS (DIVISOR) NA SEÇÃO PROPOSTA ===== */
.proposta-pedagogica,
#proposta,
.secao-proposta {
  border-top: 2px solid #ffcc00 !important;
  border-bottom: 2px solid #ffcc00 !important;
}
/* ===== LINHAS DIVISÓRIAS PREMIUM ===== */

.proposta-pedagogica {
  position: relative;
}

/* Linha de cima */
.proposta-pedagogica::before {
  content: "";
  display: block;
  width: 85%;
  height: 3px; /* ESPESSURA AQUI */
  background-color: #ffcc00;
  margin: 0 auto 40px auto;
}

/* Linha de baixo */
.proposta-pedagogica::after {
  content: "";
  display: block;
  width: 85%;
  height: 3px; /* MESMA ESPESSURA */
  background-color: #ffcc00;
  margin: 40px auto 0 auto;
}
/* ===== DIVISOR ENTRE SEÇÕES (LINHA AMARELA MAIS GROSSA) ===== */

.proposta-pedagogica {
  border-bottom: 4px solid #ffcc00 !important; /* Ajuste a espessura aqui */
}

/* Se quiser também acima da seção */
.proposta-pedagogica {
  border-top: 4px solid #ffcc00 !important;
}
/* ===== DIVISOR ENTRE SEÇÕES (REAL) ===== */

.proposta-pedagogica + section {
  border-top: 4px solid #ffcc00 !important;
}
section + section {
  border-top: 4px solid #ffcc00;
}
/* ====== AJUSTE SEÇÃO "VENHA NOS VISITAR" (tirar linha + fundo bonito) ====== */

/* 1) Remove qualquer linha/divisor que esteja entrando nessa seção */
.contato-premium,
.visita-360 {
  border-top: none !important;
}

.contato-premium::before,
.visita-360::before {
  content: none !important;
}

/* Se você tiver usado algo como "section + section { border-top: ... }" antes,
   isso aqui garante que nessa área NÃO aparece */
.proposta-pedagogica + .contato-premium,
.proposta-pedagogica + .visita-360 {
  border-top: none !important;
}

/* 2) Fundo mais bonito (claro premium com degradê leve) */
.contato-premium {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 60%, #f8f9fc 100%) !important;
}

/* 3) Card elegante por cima do fundo (o bloco do conteúdo) */
.contato-premium .container-split {
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 40px 30px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
}

/* 4) Detalhezinho amarelo no topo do card (bem institucional) */
.contato-premium .container-split {
  border-top: 4px solid #ffcc00 !important;
}

/* 5) Deixa o mapa com cara premium */
.contato-premium .moldura-mapa {
  border: 6px solid #fff !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.10) !important;
}
/* ===== MOCKUP CELULAR ===== */
.device {
  margin: 0 auto;
  position: relative;
  background: #0b1020;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.10);
}

.device.phone {
  width: min(380px, 92vw);
  aspect-ratio: 9 / 19.5; /* proporção iPhone-like */
}

.device-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  position: relative;
}

.device-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Notch */
.device-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 16px;
  background: #0b1020;
  border-radius: 0 0 14px 14px;
  z-index: 3;
  box-shadow: 0 2px 0 rgba(255,255,255,0.05);
}
/* ===== MOCKUP ESTILO NOTEBOOK / TABLET ===== */

.device-laptop {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  background: #0a1128;
  padding: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.device-bar {
  height: 14px;
  width: 100%;
  background: #ffcc00;
  border-radius: 12px 12px 0 0;
  margin-bottom: 12px;
}

.device-screen {
  width: 100%;
  aspect-ratio: 16 / 9; /* PROPORÇÃO CERTA */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.device-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* ===== MOCKUP LAPTOP PREMIUM ===== */

.mockup-laptop{
  width: min(1000px, 92vw);
  margin: 60px auto;
  text-align: center;
}

/* Parte da tela */
.laptop-screen{
  background: #0a1128; /* azul escuro elegante */
  padding: 18px;
  border-radius: 18px 18px 12px 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

/* Iframe */
.laptop-screen iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 10px;
  display: block;
}

/* Base do notebook */
.laptop-base{
  height: 18px;
  width: 100%;
  background: linear-gradient(to bottom, #d9d9d9, #bfbfbf);
  border-radius: 0 0 25px 25px;
  margin: 0 auto;
  position: relative;
}

/* Detalhe central da base (trackpad visual) */
.laptop-base::after{
  content: "";
  width: 120px;
  height: 6px;
  background: #a6a6a6;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 6px;
}

/* Responsivo */
@media (max-width: 600px){
  .laptop-base{
    height: 12px;
  }
}
/* ===== LAPTOP REALISTA COMPLETO ===== */

.laptop{
  width: min(1000px, 92vw);
  margin: 80px auto;
  perspective: 1200px;
}

/* TELA */
.laptop-screen{
  background: #0a1128;
  padding: 18px;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.laptop-screen iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  display: block;
}

/* BASE */
.laptop-bottom{
  background: linear-gradient(to bottom, #dcdcdc, #c9c9c9);
  height: 70px;
  border-radius: 0 0 25px 25px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* TECLADO (efeito textura leve) */
.keyboard{
  width: 85%;
  height: 30px;
  background: repeating-linear-gradient(
    to right,
    #bfbfbf 0px,
    #bfbfbf 3px,
    #c9c9c9 3px,
    #c9c9c9 8px
  );
  border-radius: 6px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

/* TRACKPAD */
.trackpad{
  width: 120px;
  height: 18px;
  background: #b5b5b5;
  border-radius: 8px;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* SOMBRA NO CHÃO */
.laptop::after{
  content: "";
  display: block;
  width: 70%;
  height: 20px;
  margin: 15px auto 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, transparent 70%);
  filter: blur(6px);
}
/* ===== NOTEBOOK PRETO CENTRALIZADO ===== */

.notebook{
  width: min(1000px, 92vw);
  margin: 100px auto;
  text-align: center;
}

/* TELA */
.notebook-screen{
  background: #000;
  padding: 20px;
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.notebook-screen iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 6px;
  display: block;
}

/* BASE */
.notebook-base{
  background: #111;
  height: 120px;
  border-radius: 0 0 20px 20px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* TECLADO REALISTA */
.keyboard-grid{
  width: 85%;
  height: 60px;
  margin: 20px auto 0;
  background:
    repeating-linear-gradient(
      to right,
      #222 0px,
      #222 18px,
      #000 18px,
      #000 22px
    ),
    repeating-linear-gradient(
      to bottom,
      #222 0px,
      #222 18px,
      #000 18px,
      #000 22px
    );
  border-radius: 6px;
}

/* TRACKPAD */
.trackpad{
  width: 160px;
  height: 20px;
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

/* SOMBRA NO CHÃO */
.notebook::after{
  content: "";
  display: block;
  width: 70%;
  height: 30px;
  margin: 20px auto 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35), transparent 70%);
  filter: blur(8px);
}
/* ===== TOUR PREMIUM INTERATIVO ===== */

.tour-card{
  width: min(1000px, 92vw);
  margin: 80px auto;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 60px 120px rgba(0,0,0,0.25);
}

/* Barra superior minimal */
.tour-topbar{
  background: #ffcc00;
  padding: 12px 18px;
  display: flex;
  gap: 8px;
}

.tour-topbar span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tour-topbar span:nth-child(1){ background: #ff5f56; }
.tour-topbar span:nth-child(2){ background: #ffbd2e; }
.tour-topbar span:nth-child(3){ background: #27c93f; }

.tour-card iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
/* ===== TOUR CLEAN PREMIUM ===== */

.tour-clean{
  padding: 140px 0;
  background: linear-gradient(135deg, #0a1128, #13295a);
}

.tour-container{
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tour-header h2{
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 12px;
}

.tour-header p{
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-bottom: 60px;
}

.tour-frame{
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-frame:hover{
  transform: scale(1.02);
  box-shadow: 0 80px 150px rgba(0,0,0,0.45);
}

.tour-frame iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
/* ===== SEÇÃO TECNOLÓGICA ===== */

.tour-tech{
  padding: 160px 0;
  background: #0a1128;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grid tecnológico de fundo */
.tour-tech::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events:none;
}

.tech-label{
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tour-content h2{
  font-size: 44px;
  margin: 20px 0 10px;
}

.tour-content p{
  color: rgba(255,255,255,0.7);
  margin-bottom: 60px;
}

/* CARD DO TOUR */
.tech-frame{
  width: min(1100px, 92vw);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 140, 255, 0.3);
  transition: transform 0.4s ease;
}

.tech-frame:hover{
  transform: scale(1.02);
}

.tech-frame iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* Overlay interativo */
.tech-overlay{
  position:absolute;
  inset:0;
  background: rgba(10,17,40,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter: blur(6px);
  transition: opacity 0.4s ease;
}

.tech-overlay button{
  background:#ffcc00;
  border:none;
  padding:16px 30px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  transition: transform 0.3s ease;
}

.tech-overlay button:hover{
  transform: scale(1.05);
}
/* ===== TOUR ÚNICO: BRANCO + AZUL + GLOW ANIMADO ===== */

.tour-unique{
  background: #ffffff;              /* mantém o padrão branco */
  padding: 110px 0;
  position: relative;
}

.tour-unique-wrap{
  max-width: 1100px;
}

.tour-unique-head{
  text-align: center;
  margin-bottom: 40px;
}

.tour-unique-head h2{
  font-size: 40px;
  color: #0a1128;
  margin-bottom: 10px;
}

.tour-unique-head p{
  color: #64748b;
  font-size: 16px;
}

.tour-unique-actions{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tour-btn{
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tour-btn:hover{ transform: translateY(-2px); }

.tour-btn-yellow{
  background: #ffcc00;
  color: #0a1128;
  box-shadow: 0 16px 40px rgba(255,204,0,.28);
}

.tour-btn-ghost{
  background: #ffffff;
  color: #0a1128;
  border: 1px solid rgba(10,17,40,.10);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

/* palco que segura glow + card */
.tour-unique-stage{
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px 0;
}

/* glow animado (tecnologia sem quebrar paleta) */
.tour-unique-stage .glow{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(30,58,138,0.24) 0%,
    rgba(255,204,0,0.18) 35%,
    rgba(255,255,255,0.0) 70%
  );
  filter: blur(12px);
  transform: translate(var(--gx, 0px), var(--gy, 0px));
  transition: transform 120ms ease;
  z-index: 0;
}

/* card principal */
.tour-unique-card{
  width: min(1000px, 92vw);
  background: linear-gradient(135deg, #0a1128, #13295a); /* azul premium */
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(10,17,40,.25);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.10);
}

/* topo do card */
.tour-unique-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pill{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  color: #0a1128;
  background: #ffcc00;
  padding: 7px 10px;
  border-radius: 999px;
}

.status{
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status i{
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.15);
}

/* iframe */
.tour-unique-frame iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* rodapé do card */
.tour-unique-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hint-dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: #ffcc00;
  box-shadow: 0 0 0 6px rgba(255,204,0,.15);
}

/* responsivo */
@media (max-width: 700px){
  .tour-unique-head h2{ font-size: 30px; }
  .tour-unique-stage .glow{ width: 380px; height: 380px; }
}
/* ===================================================== */
/* ===== UPGRADE PREMIUM - PROPOSTA PEDAGÓGICA ======== */
/* ===================================================== */

/* FUNDO AZUL COM PROFUNDIDADE */
.proposta-pedagogica {
  background:
    linear-gradient(135deg, #0d1b3d 0%, #102554 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.08), transparent 40%);
  background-blend-mode: overlay;
  position: relative;
  overflow: hidden;
}

/* GLOW SUTIL NO FUNDO */
.proposta-pedagogica::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,204,0,0.08), transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}

/* CARD MAIS SOFISTICADO */
.pilar-card,
.proposta-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}

.pilar-card:hover,
.proposta-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255, 204, 0, 0.2);
}

/* ANIMAÇÃO SUAVE DO CONTEÚDO */
.pilar-conteudo {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s ease;
}

.pilar-conteudo.active {
  opacity: 1;
  transform: translateY(0);
}

/* UNDERLINE ANIMADO NAS ABAS */
.aba-btn {
  position: relative;
  transition: color 0.3s ease;
}

.aba-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 3px;
  background: #ffcc00;
  transition: width 0.3s ease;
}

.aba-btn.active::after {
  width: 100%;
}
/* ===== FITAS ANIMADAS (TOUR) ===== */
.tour-unique {
  position: relative;
  overflow: hidden;
}

.tour-ribbons{
  position: relative;
  width: 100%;
  margin: 22px 0 18px;
  pointer-events: none; /* não atrapalha clique no iframe */
}

.tour-ribbon{
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.10);
}

/* fita de cima (amarela com texto escuro) */
.tour-ribbon--top{
  background: linear-gradient(90deg, #ffcc00, #ffd84d);
  transform: skewY(-2deg);
}

/* fita de baixo (azul com texto claro) */
.tour-ribbon--bottom{
  margin-top: 14px;
  background: linear-gradient(90deg, #0a1128, #111f44);
  transform: skewY(2deg);
}

/* trilho que se move */
.tour-ribbon__track{
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
  animation: tourMarquee 18s linear infinite;
}

/* texto */
.tour-ribbon--top .tour-ribbon__track span{
  color: #0a1128;
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 12px;
  text-transform: uppercase;
}

.tour-ribbon--bottom .tour-ribbon__track span{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .10em;
  font-size: 12px;
  text-transform: uppercase;
}

@keyframes tourMarquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* efeito “alive” no hover da seção (chama atenção) */
.tour-unique:hover .tour-ribbon__track{
  animation-duration: 12s; /* acelera quando passa mouse */
}

/* responsivo */
@media (max-width: 768px){
  .tour-ribbon{ height: 40px; }
  .tour-ribbon__track{ animation-duration: 14s; }
  .tour-ribbon--top .tour-ribbon__track span,
  .tour-ribbon--bottom .tour-ribbon__track span{
    font-size: 11px;
  }
}
/* ===== FITAS EM X (TOUR) ===== */
.tour-x{
  position: relative;
  height: 140px;            /* altura do “X” */
  margin: 26px auto 18px;
  max-width: 980px;
  pointer-events: none;
}

/* cada faixa */
.tour-x__band{
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(980px, 92vw);
  height: 46px;
  transform-origin: center;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.10);
}

/* faixa A (amarela) */
.tour-x__band--a{
  background: linear-gradient(90deg, #ffcc00, #ffd84d);
  transform: translate(-50%, -50%) rotate(10deg);
  z-index: 2;
}

/* faixa B (azul) */
.tour-x__band--b{
  background: linear-gradient(90deg, #0a1128, #111f44);
  transform: translate(-50%, -50%) rotate(-10deg);
  z-index: 1;
}

/* trilho animado */
.tour-x__track{
  display: inline-flex;
  gap: 44px;
  white-space: nowrap;
  will-change: transform;
  height: 100%;
  align-items: center;
  padding-left: 20px;
}

/* textos */
.tour-x__band--a .tour-x__track span{
  color: #0a1128;
  font-weight: 900;
  letter-spacing: .10em;
  font-size: 12px;
  text-transform: uppercase;
}

.tour-x__band--b .tour-x__track span{
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 12px;
  text-transform: uppercase;
}

/* animações: uma vai pra esquerda e a outra pro lado oposto */
.tour-x__band--a .tour-x__track{ animation: tourXLeft 16s linear infinite; }
.tour-x__band--b .tour-x__track{ animation: tourXRight 18s linear infinite; }

@keyframes tourXLeft{
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
@keyframes tourXRight{
  from { transform: translateX(-33.333%); }
  to   { transform: translateX(0); }
}

/* chama atenção no hover da seção inteira */
.tour-unique:hover .tour-x__band--a .tour-x__track{ animation-duration: 11s; }
.tour-unique:hover .tour-x__band--b .tour-x__track{ animation-duration: 12s; }

/* mobile */
@media (max-width: 768px){
  .tour-x{ height: 120px; }
  .tour-x__band{ height: 42px; }
  .tour-x__band--a{ transform: translate(-50%, -50%) rotate(8deg); }
  .tour-x__band--b{ transform: translate(-50%, -50%) rotate(-8deg); }
  .tour-x__band--a .tour-x__track span,
  .tour-x__band--b .tour-x__track span{ font-size: 11px; }
}
/* ===== HEADER SOBREPOSTO NO HERO ===== */
.header-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 18px 0;
}

.nav-wrap{
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.brand img{
  height: 42px;
  width: auto;
  display: block;
}

.nav-links{
  margin-left: 10px;
  display: flex;
  gap: 18px;
  flex: 1;
}

.nav-links a{
  text-decoration: none;
  color: #0b1533;
  font-weight: 700;
  font-size: 14px;
  opacity: .88;
}

.nav-links a:hover{
  opacity: 1;
}

.nav-cta{
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .06em;
  color: #0b1533;

  background: #ffcc00;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(255, 204, 0, .28);
}

.nav-cta:hover{
  transform: translateY(-1px);
}

/* ===== HERO GRANDE (FOTO EM PROPORÇÃO) ===== */
.hero-photo{
  position: relative;
  min-height: 84vh; /* aumenta a altura tipo o exemplo */
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;      /* faz a foto preencher */
  background-position: center; /* centraliza */
  transform: scale(1.03);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,.82) 42%,
    rgba(255,255,255,.15) 68%,
    rgba(255,255,255,0) 100%
  );
}

.hero-content{
  position: relative;
  z-index: 2;
  padding-top: 110px; /* espaço pro header sobreposto */
  padding-bottom: 70px;
  max-width: 620px;
}

.hero-tag{
  display: inline-block;
  font-weight: 900;
  letter-spacing: .08em;
  color: #0b1533;
  opacity: .8;
  margin-bottom: 14px;
}

.hero-content h1{
  font-size: clamp(40px, 4.6vw, 74px);
  line-height: 1.02;
  margin: 0 0 12px;
  color: #0b1533;
}

.hero-content p{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(11,21,51,.78);
  margin: 0 0 22px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary, .btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 900;
  padding: 12px 16px;
}

.btn-primary{
  background: #ffcc00;
  color: #0b1533;
}

.btn-ghost{
  background: rgba(255,255,255,.75);
  color: #0b1533;
  border: 1px solid rgba(11,21,51,.14);
}

.btn-primary:hover, .btn-ghost:hover{
  transform: translateY(-1px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px){
  .nav-links{ display: none; } /* some links pra ficar limpo no mobile */
  .hero-overlay{
    background: linear-gradient(
      180deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.80) 35%,
      rgba(255,255,255,.10) 70%,
      rgba(255,255,255,0) 100%
    );
  }
  .hero-content{
    max-width: 92vw;
    padding-top: 120px;
  }
}
/* ===== AJUSTE HEADER AMARELO + LOGO MAIOR ===== */

/* Logo maior */
.header-overlay .brand img{
  height: 60px !important;
  width: auto;
}

/* Header amarelo */
.header-overlay .nav-wrap{
  background: #0b1533 !important;
  border: 1px solid rgba(0,0,0,.05);
  padding: 16px 22px !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

/* Links do menu azul escuro */
.header-overlay .nav-links a{
  color: #ffffff !important;
  font-weight: 800;
}

/* Botão azul com branco */
.header-overlay .nav-cta{
  background: #ffee00 !important;
  color: #ffffff !important;
  font-weight: 900;
  padding: 12px 20px !important;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(11,21,51,.35);
  transition: 0.3s ease;
}

.header-overlay .nav-cta:hover{
  background: #ffee00 !important;
  transform: translateY(-2px);
}
/* =========================
   HEADER OVERLAY (FIX)
   Cole no final do CSS
========================= */
:root{
  --blue: #ffee00;     /* azul que você usa nas seções */
  --yellow: #0b1533;   /* seu amarelo */
  --radius: 18px;
}

.header-overlay{
  position: sticky; /* se quiser “sobreposto” de verdade, troque pra: position: fixed; top:0; */
  top: 12px;
  z-index: 999;
  width: 100%;
  padding: 0 16px;
}

.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  background: var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
}

/* Logo maior */
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo{
  height: 44px;  /* AUMENTA AQUI se quiser mais */
  width: auto;
  display: block;
}

/* Links centralizados (desktop) */
.nav-center{
  display: flex;
  justify-content: center; /* CENTRALIZA */
  align-items: center;
  gap: 22px;
}
.nav-center a{
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  opacity: .95;
  padding: 8px 10px;
  border-radius: 10px;
  transition: transform .2s ease, background .2s ease;
}
.nav-center a:hover{
  background: rgba(255,255,255,.45);
  transform: translateY(-1px);
}

/* Botão azul com texto branco */
.cta-btn{
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .6px;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(11,29,58,.25);
  transition: transform .2s ease, filter .2s ease;
  white-space: nowrap;
}
.cta-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Hamburger (3 linhas) */
.burger{
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255,255,255,.35);
  border-radius: 12px;
  display: none; /* aparece no mobile */
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}
.burger span{
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 10px;
  display: block;
}

/* Menu mobile */
.mobile-nav{
  max-width: 1200px;
  margin: 10px auto 0;
  background: var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  overflow: hidden;

  display: none;
  flex-direction: column;
}
.mobile-nav a{
  padding: 14px 18px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 800;
  border-top: 1px solid rgba(0,0,0,.08);
}
.mobile-nav a:hover{
  background: rgba(255,255,255,.35);
}
.mobile-cta{
  background: var(--blue);
  color: #fff !important;
  text-align: center;
}

/* Estado aberto via JS */
.header-overlay.is-open .mobile-nav{
  display: flex;
}

/* Responsivo */
@media (max-width: 900px){
  .header-inner{
    grid-template-columns: auto 1fr auto;
  }

  .nav-center{
    display: none; /* some no mobile */
  }
  .cta-btn{
    display: none; /* CTA vai pro menu mobile */
  }
  .burger{
    display: flex; /* aparece */
  }
}

/* =========================
   (1ª FOTO) TÓPICOS CENTRALIZADOS
   override genérico pra suas abas
========================= */
.topicos,
.topics,
.tabs,
.aba-botoes,
.proposta-tabs,
.proposta-topics{
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.aba-btn,
.tab-btn,
.topico-btn,
.proposta-tab{
  text-align: center;
}
/* =========================
   HEADER SOBREPOSTO + HAMBURGUER À DIREITA
   (colar no final do style.css)
========================= */

.header-overlay{
  position: absolute;  /* sobreposto na foto */
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 16px;
}

/* garante que o hero seja o "pai" do header absoluto */
.hero-photo{
  position: relative;
}

/* barra do header */
.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  background: var(--yellow);
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,.14);
  display: flex;                 /* muda pra flex pra facilitar alinhamento */
  align-items: center;
  justify-content: space-between; /* joga o burger pra direita */
  gap: 14px;
  padding: 14px 18px;
}

/* bloco esquerda: logo */
.brand{
  display: flex;
  align-items: center;
}

/* logo maior */
.brand-logo{
  height: 46px;
  width: auto;
}

/* menu do meio (desktop) centralizado */
.nav-center{
  display: flex;
  justify-content: center;
  gap: 22px;
  flex: 1;                /* ocupa o meio */
}

/* CTA fica à direita antes do burger (desktop) */
.cta-btn{
  margin-left: 12px;
}

/* hamburger SEMPRE no canto direito */
.burger{
  margin-left: 10px;
}

/* ---- MOBILE ---- */
@media (max-width: 900px){
  .header-overlay{
    top: 12px;
  }

  .header-inner{
    justify-content: space-between;
  }

  .nav-center,
  .cta-btn{
    display: none;
  }

  .burger{
    display: flex;
    margin-left: auto; /* garante direita */
  }
}
/* ===== FIX: header sobreposto sem cortar a foto ===== */

/* 1) REMOVE o padding-top do hero (se você colocou antes) */
.hero-photo{
  padding-top: 0 !important;
}

/* 2) o header fica sobreposto, mas sem mexer na altura do hero */
.header-overlay{
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 16px;
}

/* 3) Empurra SOMENTE o conteúdo (texto/botão) pra não ficar embaixo do header */
.hero-content{
  padding-top: 120px; /* ajuste fino: 90–140 */
}

/* 4) Ajusta o enquadramento da foto do hero (puxa a menina mais pra “baixo/centro”) */
.hero-bg{
  background-position: center 35% !important; /* teste 25% a 50% */
  background-size: cover !important;
}

/* Se sua imagem for <img> dentro do hero em vez de background, use isso: */
.hero-photo img{
  object-fit: cover;
  object-position: center 35%;
}

/* Mobile: menos espaço */
@media (max-width: 900px){
  .header-overlay{ top: 12px; }
  .hero-content{ padding-top: 105px; }
  .hero-bg{ background-position: center 5% !important; }
  .hero-photo img{ object-position: center 30%; }
}
/* =========================
   HEADER SOBREPOSTO NO HERO
   ========================= */

/* o seu hero (seção da foto) precisa ser o "pai" do header */
#topo.hero-photo,
.hero-photo {
  position: relative !important;
  overflow: hidden;
}

/* força o header a flutuar POR CIMA da foto, sem empurrar a página */
header.header-overlay,
.header-overlay {
  position: absolute !important;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  z-index: 9999;
  margin: 0 !important;
}

/* se você tinha colocado padding-top no hero pra "abrir espaço", tira */
#topo.hero-photo,
.hero-photo {
  padding-top: 0 !important;
}

/* agora sim: dá espaço só pro texto/botões do hero não ficarem atrás do header */
#topo .hero-content,
.hero-photo .hero-content {
  padding-top: 120px !important; /* ajuste 100–140 se quiser */
}

/* Ajuste do enquadramento da foto (evita “cortar” a menina) */
#topo .hero-bg,
.hero-photo .hero-bg {
  background-size: cover !important;
  background-position: center 35% !important; /* ajuste 25%–50% */
}

/* Mobile: menos espaço */
@media (max-width: 900px) {
  header.header-overlay,
  .header-overlay {
    top: 12px;
    width: calc(100% - 24px);
  }

  #topo .hero-content,
  .hero-photo .hero-content {
    padding-top: 105px !important;
  }

  #topo .hero-bg,
  .hero-photo .hero-bg {
    background-position: center 30% !important;
  }
}
/* ===== REMOVER FUNDO BRANCO ATRÁS DO HEADER ===== */

/* garante que o topo da página não tenha fundo branco visível */
body {
  background: transparent !important;
}

/* remove fundo branco da primeira seção */
section:first-of-type {
  background: transparent !important;
}

/* remove qualquer wrapper branco que esteja acima do hero */
.header-overlay::before,
.hero-photo::before {
  display: none !important;
}

/* remove margem superior que cria aquela faixa branca */
html, body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* garante que o hero encoste no topo real */
.hero-photo {
  margin-top: 0 !important;
}
.header-overlay {
  background: transparent !important;
}
/* remove a linha amarela inferior do hero */
.hero-photo {
  border-bottom: none !important;
}

/* caso esteja aplicada em section */
section.hero-photo {
  border-bottom: none !important;
}
/* Remove qualquer linha falsa abaixo do hero */
.hero-photo {
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}

/* Faz o hero encostar perfeitamente na próxima seção */
.hero-photo + section {
  margin-top: 0 !important;
  border-top: none !important;
}

/* Garante que não exista linha em nenhuma section */
section {
  border-top: none !important;
  border-bottom: none !important;
}
/* ===== REMOVER QUALQUER LINHA ABAIXO DO HERO ===== */

.hero-photo,
.hero-photo *,
.hero-photo::before,
.hero-photo::after {
  border: none !important;
  box-shadow: none !important;
}

section,
section::before,
section::after {
  border-top: none !important;
  border-bottom: none !important;
}

/* Remove possível sombra do header */
.header-overlay {
  box-shadow: none !important;
}

/* Garante que nada apareça entre hero e próxima section */
.hero-photo + section {
  margin-top: 0 !important;
  border-top: none !important;
}
.hero-photo + section {
  background: transparent !important;
}
.hero-photo + section {
  background: transparent !important;
}
.hero-photo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}
body{ margin:0 !important; }
section{ border:0 !important; }
/* ====== KILL DA FAIXA BRANCA: header não ocupa espaço ====== */

/* o header em si vira um "suporte" sem altura */
#header-overlay{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 0 !important;          /* <-- AQUI é o pulo do gato */
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  z-index: 9999 !important;
  overflow: visible !important;
}

/* o bloco azul (o menu que você vê) fica flutuando */
#header-overlay > *{
  position: relative !important;
  top: 18px !important;          /* ajusta a altura que ele flutua */
  margin: 0 auto !important;
}

/* garante que o hero comece colado no topo, sem espaço extra */
.hero-photo{
  margin-top: 0 !important;
  padding-top: 110px !important; /* espaço pra não cobrir o texto */
  position: relative !important;
}

/* remove qualquer margem padrão do navegador */
html, body{
  margin: 0 !important;
  padding: 0 !important;
}
/* ===== HEADER FLUTUANDO CORRETO ===== */

#header-overlay {
  position: absolute !important;
  top: 20px !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* bloco azul do menu */
#header-overlay .header-inner,
#header-overlay .header-container,
#header-overlay nav,
#header-overlay .navbar {
  background: #0b1533 !important; /* seu azul */
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 30px;
}

/* hero começa colado no topo */
.hero-photo {
  margin-top: 0 !important;
  padding-top: 140px !important; /* espaço para o header não cobrir o texto */
  position: relative;
}

/* remove qualquer fundo branco */
body {
  margin: 0;
  padding: 0;
  background: #fff;
}
/* ===== CENTRALIZAR O HEADER FLUTUANTE (NA MARRA) ===== */

/* O header vira um "palco" central */
#header-overlay{
  position: absolute !important;
  top: 20px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: transparent !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* QUALQUER filho direto do header vira a "barra azul" central */
#header-overlay > *{
  width: min(1200px, calc(100% - 40px)) !important; /* sempre central e responsivo */
  margin: 0 auto !important;

  background: #0b1533 !important;
  border-radius: 20px !important;
  padding: 18px 30px !important;

  box-shadow: 0 18px 40px rgba(0,0,0,.22) !important;
}

/* hero desce um pouco pra não ficar embaixo do header */
.hero-photo{
  padding-top: 140px !important;
  margin-top: 0 !important;
}
/* ===== SÓ CENTRALIZAR O HEADER ===== */

#header-overlay{
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}

/* barra azul */
#header-overlay > *{
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
/* ===== FORÇA CENTRALIZAR O HEADER OVERLAY (NA MARRA) ===== */
header#header-overlay,
#header-overlay.header-overlay{
  position: absolute !important;
  top: 20px !important;

  left: 50% !important;
  right: auto !important;

  transform: translateX(-50%) !important;

  width: min(1200px, calc(100% - 40px)) !important;
  margin: 0 !important;

  display: block !important;
  z-index: 9999 !important;
}

/* garante que nada interno empurre pro lado */
#header-overlay *{
  box-sizing: border-box;
}

/* se existir algum container interno com "left/margin" estranho */
#header-overlay .container,
#header-overlay .header-inner,
#header-overlay .header-container{
  width: 100% !important;
  margin: 0 auto !important;
}
/* Modal sempre acima do header */
.modal-overlay{
  z-index: 20000 !important;
}

/* Header abaixo do modal */
#header-overlay{
  z-index: 10000 !important;
}
/* ===== SEÇÃO CONHEÇA EDUCARMAIS TOTALMENTE BRANCA ===== */

section.topicos,
.topicos,
#topicos,
section:nth-of-type(2) {

  background: #ffffff !important;
  width: 100% !important;
  padding: 100px 0 !important;
  margin: 0 !important;

}

/* remove qualquer linha amarela acima ou abaixo */
section.topicos::before,
section.topicos::after {
  display: none !important;
}

/* garante que não tenha azul vazando */
section.topicos * {
  background: transparent;
}
/* ===== AJUSTE FINAL DO RODAPÉ (PARTE INFERIOR) ===== */

.footer-bottom {
  padding: 18px 40px !important;   /* diminui altura */
  font-size: 14px !important;
  background: #020b22 !important;  /* azul mais fechado */
}

/* Container interno alinhado */
.footer-bottom .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 10px;
}

/* Texto da esquerda */
.footer-bottom p,
.footer-bottom span {
  margin: 0 !important;
  opacity: 0.8;
}

/* Link da agência */
.footer-bottom a {
  color: #f5c400 !important;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 0.8;
}
/* =========================
   KIDS - Seção mais lúdica
   (colar no FINAL do CSS)
========================= */

.kids-features{
  position: relative;
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

/* bolhas/efeitos no fundo */
.kids-features::before,
.kids-features::after{
  content:"";
  position:absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: .18;
  z-index: 0;
}
.kids-features::before{
  left: -120px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, #ffd54a, transparent 60%);
}
.kids-features::after{
  right: -140px;
  bottom: -160px;
  background: radial-gradient(circle at 30% 30%, #1b2a72, transparent 60%);
}

/* deixa conteúdo na frente do fundo */
.kids-features *{
  position: relative;
  z-index: 1;
}

/* título mais infantil e chamativo */
.kids-features h2{
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* se tiver subtítulo em <p> logo abaixo do h2 */
.kids-features h2 + p{
  font-size: 16px;
  opacity: .85;
  margin-bottom: 28px;
}

/* grade mais “respirada” */
.kids-features .grid,
.kids-features .features-grid{
  gap: 18px !important;
}

/* CARD lúdico */
.kids-card{
  background: #ffffff;
  border: 2px solid rgba(27,42,114,.08);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}

/* “sticker” de cor no canto (dá cara de kids) */
.kids-card::before{
  content:"";
  position:absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  top: -50px;
  border-radius: 35px;
  transform: rotate(18deg);
  background: rgba(255, 213, 74, .25);
}

/* hover divertido (pulinho) */
.kids-card:hover{
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow: 0 26px 60px rgba(17, 24, 39, .12);
  border-color: rgba(27,42,114,.18);
}

/* ícone: vira “bolinha” colorida */
.kids-card .icon,
.kids-card .feature-icon,
.kids-card .card-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(255,213,74,.32), rgba(27,42,114,.10));
  border: 2px solid rgba(27,42,114,.08);
}

/* ícone svg/emoji dentro */
.kids-card .icon svg,
.kids-card .feature-icon svg,
.kids-card .card-icon svg{
  transform: scale(1.05);
}

/* título do card */
.kids-card h3{
  font-size: 18px;
  margin-top: 6px;
  margin-bottom: 10px;
}

/* texto do card */
.kids-card p{
  font-size: 14px;
  line-height: 1.5;
  opacity: .88;
}

/* variação de cores por card (opcional)
   se você puder adicionar classes: kids-a, kids-b, kids-c, kids-d */
.kids-card.kids-a::before{ background: rgba(255, 213, 74, .28); }
.kids-card.kids-b::before{ background: rgba(80, 200, 120, .18); }
.kids-card.kids-c::before{ background: rgba(100, 170, 255, .20); }
.kids-card.kids-d::before{ background: rgba(255, 120, 170, .18); }

/* responsivo */
@media (max-width: 900px){
  .kids-features{ padding: 56px 0; }
  .kids-card{ border-radius: 20px; }
}
/* ==========================
   AJUSTE ENQUADRAMENTO - KIDS FEATURES
   Cole no final do CSS
========================== */

.kids-features .container-flex-lado-a-lado{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.kids-features .coluna-imagem-premium{
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.kids-features .coluna-imagem-premium img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* lado direito mais “respirado” */
.kids-features .coluna-conteudo-premium{
  max-width: 520px;
  justify-self: start;
}

.kids-features .titulo-secao-premium{
  line-height: 1.05;
}

.kids-features .pilares-container-premium{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

/* cards mais compactos e bonitos */
.kids-features .pilar-card-premium{
  padding: 18px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

/* RESPONSIVO */
@media (max-width: 900px){
  .kids-features .container-flex-lado-a-lado{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .kids-features .coluna-imagem-premium{
    height: 320px;
  }

  .kids-features .coluna-conteudo-premium{
    max-width: 100%;
    text-align: left;
  }
}
/* RESET PARA VOLTAR COMO ESTAVA */

.container-flex-lado-a-lado{
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.coluna-imagem-premium{
  height: auto !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
}

.coluna-imagem-premium img{
  width: 100%;
  height: auto !important;
  object-fit: unset !important;
  object-position: unset !important;
  display: block;
}

.coluna-conteudo-premium{
  max-width: 100% !important;
}
/* VOLTAR LAYOUT ORIGINAL */

.estrutura-premium .container-flex-lado-a-lado{
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 50px !important;
}

.estrutura-premium .coluna-imagem-premium{
  flex: 1 !important;
  max-width: 50% !important;
  height: auto !important;
}

.estrutura-premium .coluna-imagem-premium img{
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.estrutura-premium .coluna-conteudo-premium{
  flex: 1 !important;
  max-width: 50% !important;
}

@media (max-width: 900px){
  .estrutura-premium .container-flex-lado-a-lado{
    flex-direction: column !important;
  }

  .estrutura-premium .coluna-imagem-premium,
  .estrutura-premium .coluna-conteudo-premium{
    max-width: 100% !important;
  }
}
/* RESTAURAR LAYOUT ORIGINAL DA SEÇÃO */

.estrutura-premium{
  padding: 100px 0;
  background: #ffffff;
}

.estrutura-premium .container-flex-lado-a-lado{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 80px !important;
  max-width: 1200px;
  margin: 0 auto;
}

.estrutura-premium .coluna-imagem-premium{
  flex: 1;
  max-width: 520px;
}

.estrutura-premium .coluna-imagem-premium img{
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.estrutura-premium .coluna-conteudo-premium{
  flex: 1;
  max-width: 520px;
}

.estrutura-premium .pilares-container-premium{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

@media (max-width: 900px){
  .estrutura-premium .container-flex-lado-a-lado{
    flex-direction: column;
    gap: 40px;
  }

  .estrutura-premium .pilares-container-premium{
    grid-template-columns: 1fr;
  }
}
/* FUNDO BRANCO NA SEÇÃO */
.estrutura-premium{
  background: #ffffff !important;
}

/* ALINHAR CARDS À DIREITA */
.estrutura-premium .container-flex-lado-a-lado{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.estrutura-premium .coluna-conteudo-premium{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* GRID DOS CARDS */
.estrutura-premium .pilares-container-premium{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

/* ESTILO DOS CARDS */
.estrutura-premium .pilar-card-premium{
  background: #f8f9fc;
  padding: 28px;
  border-radius: 20px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* ANIMAÇÃO HOVER */
.estrutura-premium .pilar-card-premium:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* RESPONSIVO */
@media (max-width: 900px){
  .estrutura-premium .container-flex-lado-a-lado{
    flex-direction: column;
  }

  .estrutura-premium .coluna-conteudo-premium{
    align-items: center;
    text-align: center;
  }

  .estrutura-premium .pilares-container-premium{
    grid-template-columns: 1fr;
  }
}
/* Fundo da seção em branco */
.secao-proposta {
    background-color: #ffffff !important;
    padding: 80px 0;
    overflow: hidden;
}

/* Alinha imagem na esquerda e texto na direita centralizado */
.container-flex-proposta {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px; /* Espaço entre foto e texto */
}

.proposta-imagem img {
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease !important;
}

/* ANIMAÇÃO: Foto e Texto flutuam ao passar o mouse */
.proposta-imagem img:hover, .proposta-texto:hover {
    transform: translateY(-15px) !important;
}

.proposta-texto {
    flex: 1;
    text-align: left; /* Garante que o texto fique arrumado à direita da imagem */
    transition: transform 0.5s ease !important;
}

.proposta-texto h3 {
    color: #0a1128;
    font-size: 2rem;
    margin-bottom: 20px;
}
/* Fundo da seção em branco */
.secao-proposta {
    background-color: #ffffff !important;
    padding: 80px 0;
    overflow: hidden;
}

/* Alinha imagem na esquerda e texto na direita centralizado */
.container-flex-proposta {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px; /* Espaço entre foto e texto */
}

.proposta-imagem img {
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease !important;
}

/* ANIMAÇÃO: Foto e Texto flutuam ao passar o mouse */
.proposta-imagem img:hover, .proposta-texto:hover {
    transform: translateY(-15px) !important;
}

.proposta-texto {
    flex: 1;
    text-align: left; /* Garante que o texto fique arrumado à direita da imagem */
    transition: transform 0.5s ease !important;
}

.proposta-texto h3 {
    color: #0a1128;
    font-size: 2rem;
    margin-bottom: 20px;
}
/* Fundo da Seção Totalmente Branco */
.proposta-mais {
    background-color: #ffffff !important;
    padding: 80px 20px !important;
    width: 100%;
}

/* Container que envolve a Foto e o Texto */
.conteudo-pilar {
    display: flex !important;
    flex-direction: row !important; /* Coloca um ao lado do outro */
    align-items: center !important; /* Centraliza verticalmente */
    justify-content: center !important; /* Centraliza horizontalmente no site */
    gap: 60px; /* Espaço entre a foto e o texto */
    max-width: 1200px;
    margin: 40px auto 0;
}

/* Estilo da Imagem */
.pilar-imagem img {
    max-width: 500px !important;
    border-radius: 25px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease !important;
}

/* Estilo do Texto */
.pilar-texto {
    flex: 1;
    max-width: 500px;
    text-align: left !important;
    transition: transform 0.4s ease !important;
}

/* ANIMAÇÃO AO PASSAR O MOUSE */
.conteudo-pilar:hover .pilar-imagem img,
.conteudo-pilar:hover .pilar-texto {
    transform: translateY(-15px) !important;
}
/* Fundo Branco para a Seção de cima */
.educacao-transforma, .secao-educacao {
    background-color: #ffffff !important;
    padding: 80px 0 !important;
    text-align: center;
}

/* Centraliza o título "Educação que Transforma" */
.educacao-transforma h2 {
    color: #0a1128 !important;
    margin-bottom: 50px !important;
    font-size: 2.5rem;
}

/* Container dos Cards - Centralização absoluta */
.educacao-cards {
    display: flex !important;
    justify-content: center !important; /* Centraliza os cards no meio da tela */
    gap: 30px !important;
    flex-wrap: wrap; /* Garante que no celular eles fiquem um embaixo do outro */
    max-width: 1200px;
    margin: 0 auto !important;
}

/* Estilo do Card individual com Animação */
.educacao-cards .card-item {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important; /* Sombra leve */
    transition: all 0.4s ease !important;
    border: 1px solid #eee; /* Borda sutil para dar acabamento */
}

/* EFEITO DE FLUTUAR (O que dá vida ao site) */
.educacao-cards .card-item:hover {
    transform: translateY(-20px) !important; /* Card sobe */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important; /* Sombra aumenta */
    border-color: #ffcc00; /* Muda a cor da borda ao passar o mouse */
}
/* Garante que a seção tenha fundo branco e espaço */
.proposta-mais {
    background-color: #ffffff !important;
    padding: 60px 20px !important;
    display: block !important; /* Garante que a seção apareça */
}

/* O container que organiza a Foto na Esquerda e o Texto na Direita */
.conteudo-pilar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 50px !important;
    max-width: 1100px;
    margin: 30px auto !important;
    opacity: 1 !important; /* Garante que não suma */
    visibility: visible !important;
}

/* Ajuste da Imagem para não sumir */
.pilar-imagem img {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    transition: transform 0.4s ease !important;
}

/* Ajuste do Texto à direita */
.pilar-texto {
    flex: 1;
    text-align: left !important;
    color: #333 !important;
}

/* Animação de flutuar ao passar o mouse */
.conteudo-pilar:hover {
    transform: translateY(-10px);
    transition: 0.4s;
}
.proposta-pedagogica { padding: 60px 0; text-align: center; background: #fff; position: relative; z-index: 1; }
.subtitulo-proposta { color: #666; margin-bottom: 40px; }

.abas-container { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.aba-btn {
    background: #f8f9fa; border: 2px solid transparent; padding: 15px 25px; cursor: pointer;
    border-radius: 12px; transition: 0.3s; display: flex; flex-direction: column; align-items: center; gap: 10px;
    width: 180px; color: #555;
}
.aba-btn i { font-size: 24px; }
.aba-btn.active { border-color: #ffcc00; background: #fff; color: #333; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.conteudo-wrapper { max-width: 800px; margin: 0 auto; min-height: 150px; background: #fdfdfd; padding: 30px; border-radius: 15px; }
.aba-conteudo { display: none; animation: fadeIn 0.5s; }
.aba-conteudo.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* Container Principal */
.secao-proposta-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 50px !important;
    background-color: #ffffff !important; /* Fundo Branco */
    padding: 60px 20px !important;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo da Imagem com Animação */
.pilar-imagem img {
    max-width: 500px !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    transition: transform 0.4s ease-in-out !important;
}

.pilar-imagem img:hover {
    transform: translateY(-15px) !important; /* Flutuar */
}

/* Alinhamento dos Botões */
.botoes-pilares {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.aba-btn {
    background: #f4f4f4;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.aba-btn.active {
    background: #0a1128;
    color: white;
}
/* Fundo Branco e Centralização */
.proposta-mais {
    background-color: #ffffff !important;
    padding: 80px 0 !important;
}

.titulo-secao {
    text-align: center;
    color: #0a1128;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

/* Container de Abas (Botões) */
.abas-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.aba-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
}

.aba-btn.active {
    color: #0a1128;
    border-bottom: 2px solid #ffcc00; /* Linha amarela de destaque */
}

/* O "Pulo do Gato": Flexbox para alinhar Foto e Texto */
.conteudo-pilar-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px; /* Espaço entre foto e texto */
    max-width: 1100px;
    margin: 0 auto;
}

.pilar-imagem img {
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra suave da foto 1 */
    transition: transform 0.4s ease;
}

.pilar-texto {
    flex: 1;
    max-width: 500px;
}

.pilar-texto h3 {
    font-size: 1.8rem;
    color: #0a1128;
    margin-bottom: 20px;
}

.pilar-texto p {
    color: #666;
    line-height: 1.8;
}

/* Animação ao passar o mouse */
.conteudo-pilar-premium:hover .pilar-imagem img {
    transform: translateY(-10px);
}
/* Remove o erro de sobra e define fundo branco total */
.proposta-mais {
    background-color: #ffffff !important; 
    padding: 60px 0 !important;
    width: 100% !important;
}

/* Alinha a imagem na esquerda e o texto na direita */
.conteudo-dinamico {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 60px !important; /* Espaço entre imagem e texto */
    max-width: 1100px;
    margin: 0 auto !important;
}

/* Ajuste da Imagem (Esquerda) */
.coluna-imagem img {
    max-width: 500px !important;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra suave igual à foto 1 */
}

/* Ajuste do Texto (Direita) */
.coluna-texto {
    flex: 1;
    text-align: left !important;
}

.coluna-texto h3 {
    font-size: 2rem;
    color: #0a1128;
    margin-bottom: 15px;
}

.coluna-texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Botões das Abas (Estilo limpo da foto 1) */
.abas-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.aba-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.aba-btn.active {
    border-bottom: 2px solid #ffcc00;
    color: #0a1128;
}
/* Mata o fundo azul e a sobra */
.proposta-mais {
    background-color: #ffffff !important;
    padding: 80px 0 !important;
    width: 100% !important;
}

.container-premium {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Alinha Foto e Texto lado a lado */
.painel-conteudo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 60px !important;
    margin-top: 40px;
    background: #fff;
}

/* Ajuste da Foto (Esquerda) */
.lado-foto img {
    max-width: 500px !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: 0.4s;
}

/* Ajuste do Texto (Direita) */
.lado-texto {
    flex: 1;
    text-align: left !important;
    max-width: 500px;
}

.lado-texto h3 {
    font-size: 2.2rem;
    color: #0a1128;
    margin-bottom: 20px;
}

.lado-texto p {
    color: #555;
    line-height: 1.8;
}

/* Estilo das Abas (Igual à foto 1) */
.abas-navegacao {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.aba-item {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 20px;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.aba-item.active {
    color: #0a1128;
    border-bottom: 3px solid #ffcc00; /* Linha amarela de destaque */
}
/* Remove o erro de sobra e define fundo branco total */
.proposta-mais {
    background-color: #ffffff !important; 
    padding: 60px 0 !important;
    width: 100% !important;
}

/* Alinha a imagem na esquerda e o texto na direita */
.conteudo-dinamico {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 60px !important; /* Espaço entre imagem e texto */
    max-width: 1100px;
    margin: 0 auto !important;
}

/* Ajuste da Imagem (Esquerda) */
.coluna-imagem img {
    max-width: 500px !important;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra suave igual à foto 1 */
}

/* Ajuste do Texto (Direita) */
.coluna-texto {
    flex: 1;
    text-align: left !important;
}

.coluna-texto h3 {
    font-size: 2rem;
    color: #0a1128;
    margin-bottom: 15px;
}

.coluna-texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Botões das Abas (Estilo limpo da foto 1) */
.abas-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.aba-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.aba-btn.active {
    border-bottom: 2px solid #ffcc00;
    color: #0a1128;
}
section {
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #0b1d3a; /* mesma cor do seu fundo azul */
}

.interacionismo-section {
  padding-bottom: 80px; /* controla o espaço interno */
}
.topicos-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 60px 0;
}

.topico-item {
  background: linear-gradient(145deg, #0f2b55, #0b1d3a);
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  color: white;
  width: 240px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 193, 7, 0.2);
  cursor: pointer;
}

.topico-item i {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffc107;
}

.topico-item h3 {
  font-size: 16px;
  font-weight: 500;
}

/* EFEITO PREMIUM */
.topico-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #ffc107;
}
.proposta-mais .coluna-imagem,
.proposta-mais .coluna-texto{
  font-size: 0; /* mata texto solto */
}

.proposta-mais .coluna-texto h3,
.proposta-mais .coluna-texto p{
  font-size: initial; /* volta o texto normal */
}
.proposta-mais {
  padding: 70px 0;
}

.proposta-mais .abas-container {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 35px;
}

.proposta-mais .aba-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}

.proposta-mais .aba-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
}

.proposta-mais .aba-btn.active {
  outline: 2px solid #f4c400;
}

.proposta-mais .conteudo-dinamico {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.proposta-mais .coluna-imagem img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.proposta-mais .coluna-texto {
  background: #ffffff;
  color: #111;
  padding: 26px;
  border-radius: 18px;
}

.proposta-mais .coluna-texto h3 {
  margin-bottom: 10px;
}

/* responsivo */
@media (max-width: 900px) {
  .proposta-mais .conteudo-dinamico {
    grid-template-columns: 1fr;
  }

  .proposta-mais .coluna-texto {
    order: 2;
  }

  .proposta-mais .coluna-imagem {
    order: 1;
  }
}
.proposta-mais .coluna-texto{
  background: rgba(10, 35, 80, 0.85);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

.proposta-mais .coluna-texto h3{
  color: #f4c400;
}
.proposta-mais .coluna-texto{
  background: #f4c400; /* amarelo do site */
  color: #0b1630;
  border: 1px solid rgba(0,0,0,0.10);
}

.proposta-mais .coluna-texto h3{
  color: #0b1630;
}
.proposta-mais .coluna-texto{
  background: linear-gradient(135deg, #f4c400, #ffcf1a);
  color: #0b1630;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

/* efeito leve de brilho */
.proposta-mais .coluna-texto::after{
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.15);
  transform: rotate(45deg);
  border-radius: 20px;
}

/* título */
.proposta-mais .coluna-texto h3{
  color: #0b1630;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}

/* descrição */
.proposta-mais .coluna-texto p{
  color: #0b1630;
  font-size: 16px;
  line-height: 1.6;
}
.proposta-mais .coluna-texto{
  background: linear-gradient(135deg, #f4c400, #ffcf1a);
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
}

/* TÍTULO branco */
.proposta-mais .coluna-texto h3{
  color: #ffffff !important;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
}

/* TEXTO branco */
.proposta-mais .coluna-texto p{
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.6;
}
.proposta-mais .coluna-texto{
  background: rgba(10, 35, 80, 0.85);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

.proposta-mais .coluna-texto h3{
  color: #f4c400;
}
/* =========================
   SEÇÃO ESTILO "EDUCAÇÃO 360"
   ========================= */
.secao-educacao360{
  position: relative;
  width: 100%;
  padding: 90px 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 205, 0, 0.25);
  border-bottom: 1px solid rgba(255, 205, 0, 0.25);
}

/* overlay azul escuro premium */
.educacao360-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 18, 45, 0.92) 0%,
    rgba(4, 18, 45, 0.86) 55%,
    rgba(4, 18, 45, 0.78) 100%
  );
  z-index: 0;
}

/* grid */
.educacao360-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 50px;
  align-items: center;
}

/* texto */
.educacao360-texto h2{
  color: #fff;
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.educacao360-texto h3{
  color: #ffcd00;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.educacao360-texto p{
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 620px;
}

.educacao360-destaque{
  border-left: 3px solid #ffcd00;
  padding-left: 14px;
  margin-top: 14px;
}

/* itens */
.educacao360-itens{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
  justify-items: center;
  position: relative;
}

.educacao360-bolha{
  width: 100%;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 10px 6px;
}

.educacao360-icone{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.75);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.educacao360-icone i{
  color: #ffffff;
  font-size: 34px;
}

.educacao360-bolha span{
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}

/* hover premium */
.educacao360-bolha:hover .educacao360-icone{
  transform: translateY(-4px) scale(1.03);
  background: rgba(255, 205, 0, 0.14);
  border-color: rgba(255, 205, 0, 0.75);
}

/* CTA */
.educacao360-cta{
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 6px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffcd00;
  color: #0b1733;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  transition: transform .2s ease, filter .2s ease;
}

.educacao360-cta i{
  font-size: 18px;
}

.educacao360-cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* RESPONSIVO */
@media (max-width: 980px){
  .educacao360-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .educacao360-texto h2{
    font-size: 36px;
  }

  .educacao360-itens{
    grid-template-columns: 1fr 1fr;
  }

  .educacao360-cta{
    justify-self: start;
  }
}

@media (max-width: 520px){
  .secao-educacao360{
    padding: 70px 0;
  }

  .educacao360-itens{
    grid-template-columns: 1fr;
  }

  .educacao360-bolha{
    max-width: 100%;
  }

  .educacao360-cta{
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   VARIAÇÃO FUNDO BRANCO
   ========================= */
.secao-educacao360--clara{
  background: #ffffff;
  padding: 90px 0;
  border-top: 1px solid rgba(11, 23, 51, 0.08);
  border-bottom: 1px solid rgba(11, 23, 51, 0.08);
}

/* remove overlay da versão escura (se existir no seu CSS antigo) */
.secao-educacao360--clara .educacao360-overlay{
  display: none !important;
}

/* grid com imagem */
.educacao360-grid--imagem{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* textos no branco */
.secao-educacao360--clara .educacao360-texto h2{
  color: #0b1733;
}

.secao-educacao360--clara .educacao360-texto h3{
  color: #ffcd00;
}

.secao-educacao360--clara .educacao360-texto p{
  color: rgba(11, 23, 51, 0.85);
}

.secao-educacao360--clara .educacao360-destaque{
  border-left: 3px solid #ffcd00;
}

/* lado direito: imagem + itens */
.educacao360-lado-direito{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* imagem premium */
.educacao360-imagem{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border: 1px solid rgba(11, 23, 51, 0.08);
}

.educacao360-imagem img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* itens: mantém 2x2 bem alinhado */
.secao-educacao360--clara .educacao360-itens{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

/* bolhas no branco */
.secao-educacao360--clara .educacao360-bolha span{
  color: #0b1733;
}

.secao-educacao360--clara .educacao360-icone{
  background: rgba(11, 23, 51, 0.04);
  border: 2px solid rgba(11, 23, 51, 0.18);
}

.secao-educacao360--clara .educacao360-icone i{
  color: #0b1733;
}

/* hover premium com seu amarelo */
.secao-educacao360--clara .educacao360-bolha:hover .educacao360-icone{
  background: rgba(255, 205, 0, 0.20);
  border-color: rgba(255, 205, 0, 0.70);
  transform: translateY(-3px) scale(1.03);
}

/* CTA continua amarelo */
.secao-educacao360--clara .educacao360-cta{
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 4px;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .educacao360-grid--imagem{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .educacao360-imagem img{
    height: 240px;
  }

  .secao-educacao360--clara .educacao360-cta{
    justify-self: start;
  }
}

@media (max-width: 520px){
  .secao-educacao360--clara{
    padding: 70px 0;
  }

  .educacao360-imagem img{
  width: 100%;
  height: auto;        /* deixa a altura natural */
  object-fit: contain; /* não corta */
  display: block;
  background: #fff;    /* caso sobre “barra” nas laterais */
}

  .secao-educacao360--clara .educacao360-itens{
    grid-template-columns: 1fr;
  }

  .secao-educacao360--clara .educacao360-cta{
    width: 100%;
    justify-content: center;
  }
}
.educacao360-imagem img{
  width: 100%;
  height: 380px;        /* mais alto = menos corte */
  object-fit: cover;
  object-position: center top; /* puxa mais pra cima */
  display: block;
}
.educacao360-imagem{
  aspect-ratio: 16 / 9;   /* proporção fixa */
  width: 100%;
}

.educacao360-imagem img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* ====== FIX FOTO (não cortar) ====== */
#foto-educacao360{
  width: 100% !important;
  height: auto !important;        /* remove altura fixa */
  max-height: none !important;
  object-fit: contain !important; /* não corta */
  object-position: center !important;
  display: block !important;
}

/* Se o PAI da imagem tiver altura fixa/overflow escondendo, isso libera */
#foto-educacao360,
#foto-educacao360 *{
  box-sizing: border-box;
}

.educacao360-imagem,
.imagem-educacao360,
.bloco-foto,
.foto-bloco{
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}
/* ====== FIX FOTO (não cortar) ====== */
#foto-educacao360{
  width: 100% !important;
  height: auto !important;        /* remove altura fixa */
  max-height: none !important;
  object-fit: contain !important; /* não corta */
  object-position: center !important;
  display: block !important;
}

/* Se o PAI da imagem tiver altura fixa/overflow escondendo, isso libera */
#foto-educacao360,
#foto-educacao360 *{
  box-sizing: border-box;
}

.educacao360-imagem,
.imagem-educacao360,
.bloco-foto,
.foto-bloco{
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}
/* ====== FOTO CONTROLADA (premium e responsiva) ====== */
.edu360-foto{
  width: 100%;
  max-width: 560px;         /* limita pra não virar um monstrão */
  height: 340px;            /* altura bonita no desktop */
  border-radius: 18px;
  overflow: hidden;         /* corta o excesso de forma bonita (no wrapper) */
  margin-left: auto;        /* alinha à direita quando tiver espaço */
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

#foto-educacao360{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;        /* preenche sem deformar */
  object-position: center;  /* foco no meio */
}

/* Responsivo */
@media (max-width: 1024px){
  .edu360-foto{
    max-width: 520px;
    height: 320px;
    margin: 0 auto;         /* centraliza */
  }
}

@media (max-width: 600px){
  .edu360-foto{
    max-width: 100%;
    height: 240px;
    border-radius: 16px;
  }
}
.edu360-foto{
  width: 100%;
  max-width: 560px;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  margin-left: auto;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);

  /* fundo para as "bordas" quando usar contain */
  background: #fff;
}

#foto-educacao360{
  width: 100%;
  height: 100%;
  display: block;

  object-fit: contain;      /* NÃO CORTA */
  object-position: center;  /* centraliza */
}
#foto-educacao360{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%; /* sobe o foco (testa 25%, 30%, 40%) */
}
/* FORÇA: qualquer imagem dentro da caixa da foto */
.edu360-foto img{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;   /* NÃO CORTA */
  object-position: center !important;
}

/* a caixa da foto */
.edu360-foto{
  width: 100%;
  max-width: 560px;
  height: 340px;             /* pode ajustar */
  border-radius: 18px;
  overflow: hidden;          /* ok com contain */
  background: #fff;          /* borda branca quando sobrar espaço */
}
/* SEÇÃO BRANCA (padrão branco/azul) */
.edu360-zigzag{
  background: #ffffff;
  padding: 70px 0;
}

/* GRID ZIGZAG */
.edu360-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px 60px;
  align-items: start;
}

/* FOTO À ESQUERDA (MAIOR) */
.edu360-foto{
  grid-row: 1 / span 2; /* pega 2 linhas (texto + tópicos) */
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  background: #fff;
  min-height: 520px; /* deixa grande */
}

.edu360-foto img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
background: #fff;
  object-position: center;
}

/* TEXTO (DIREITA EM CIMA) */
.edu360-texto h2{
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 10px;
  color: #0b1b3a;
}

.edu360-texto .sub{
  margin: 0 0 18px;
  font-weight: 700;
  color: #f2b705; /* amarelo */
}

.edu360-texto .p{
  margin: 0 0 18px;
  color: #1f2a44;
  line-height: 1.7;
}

.edu360-texto .destaque{
  border-left: 4px solid #f2b705;
  padding-left: 14px;
  color: #1f2a44;
  font-weight: 600;
  line-height: 1.6;
}

/* TÓPICOS (DIREITA EMBAIXO) */
.edu360-topicos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin-top: 10px;
}

.topico{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: #f7f8fb;
  border: 1px solid rgba(11,27,58,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.topico:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.topico .icone{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(11,27,58,.12);
  font-size: 18px;
}

.topico h4{
  margin: 0 0 4px;
  color: #0b1b3a;
  font-size: 15px;
}

.topico p{
  margin: 0;
  color: #1f2a44;
  font-size: 13px;
  line-height: 1.45;
}

.btn-cta{
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 6px;
  background: #f2b705;
  color: #0b1b3a;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .edu360-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .edu360-foto{
    grid-row: auto;
    min-height: 320px;
  }

  .edu360-texto h2{
    font-size: 38px;
  }

  .edu360-topicos{
    grid-template-columns: 1fr;
  }

  .btn-cta{
    justify-self: stretch;
    text-align: center;
    justify-content: center;
  }
}
.edu360-simples{
  background: #fff;
  padding: 70px 0;
}

.edu360-linha{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

/* IMAGEM (sem corte feio) */
.edu360-foto{
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  width: 100%;
  max-width: 620px;
  justify-self: start;

  /* bom para retrato */
  aspect-ratio: 4 / 5;
}

.edu360-foto img{
  width: 100%;
  height: 100%;
  display: block;

  /* padrão premium (preenche e corta com foco bom) */
  object-fit: cover;

  /* isso normalmente resolve cortar rosto no lado esquerdo */
  object-position: 60% center;

  /* melhora renderização */
  image-rendering: auto;
}

/* Se AINDA cortar mal, troque para "contain" (não corta nunca) */
/*
.edu360-foto img{
  object-fit: contain;
  background: #fff;
  object-position: center;
}
*/

.edu360-topicos{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.topico-card{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 16px;
  border-radius: 16px;
  background: #f6f7fb;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.topico-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.topico-icone{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  font-size: 18px;
}

.topico-card h4{
  margin: 0 0 6px;
  font-size: 16px;
  color: #0b1b3a;
  font-weight: 700;
}

.topico-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #3a465a;
}

.edu360-botao{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f6b800; /* amarelo do seu site */
  color: #0b1b3a;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .edu360-linha{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .edu360-foto{
    max-width: 100%;
    aspect-ratio: 16 / 10; /* no mobile fica bonito */
    justify-self: stretch;
  }
}
.edu360-exato{
  background: #fff;
  padding: 70px 0;
}

.edu360-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGEM (SEM CORTE) */
.edu360-imgbox{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  background: #fff;
}

.edu360-imgbox img{
  width: 100%;
  height: auto;          /* <- isso impede corte */
  display: block;
  border-radius: 22px;   /* reforço do arredondado */
}

/* LADO DIREITO */
.edu360-right{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.edu360-titulo{
  font-size: 28px;
  font-weight: 800;
  color: #0b1b3a;
  margin: 0;
}

/* 4 TOPICOS EM 2x2 */
.edu360-itens{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
}

.edu360-item{
  text-align: center;
}

.edu360-icone{
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(11,27,58,.18);
  color: #0b1b3a;
  font-size: 20px;
  background: transparent;
}

.edu360-item h4{
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 800;
  color: #0b1b3a;
}

.edu360-item p{
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(11,27,58,.75);
}

/* RESPONSIVO */
@media (max-width: 980px){
  .edu360-grid{
    grid-template-columns: 1fr;
  }
  .edu360-itens{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .edu360-itens{
    grid-template-columns: 1fr;
  }
}
.edu360-titulo{
  text-align: center;
}
.edu360-right{
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza tudo */
}

.edu360-titulo{
  text-align: center;
}
.edu360-titulo{
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
}
.edu360-exato{
  background: #fff;
  padding: 70px 0;
}

.edu360-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGEM (SEM CORTE) */
.edu360-imgbox{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  background: #fff;
}

.edu360-imgbox img{
  width: 100%;
  height: auto;          /* <- isso impede corte */
  display: block;
  border-radius: 22px;   /* reforço do arredondado */
}

/* LADO DIREITO */
.edu360-right{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.edu360-titulo{
  font-size: 28px;
  font-weight: 800;
  color: #0b1b3a;
  margin: 0;
}

/* 4 TOPICOS EM 2x2 */
.edu360-itens{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
}

.edu360-item{
  text-align: center;
}

.edu360-icone{
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(11,27,58,.18);
  color: #0b1b3a;
  font-size: 20px;
  background: transparent;
}

.edu360-item h4{
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 800;
  color: #0b1b3a;
}

.edu360-item p{
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(11,27,58,.75);
}

/* RESPONSIVO */
@media (max-width: 980px){
  .edu360-grid{
    grid-template-columns: 1fr;
  }
  .edu360-itens{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .edu360-itens{
    grid-template-columns: 1fr;
  }
}
/* ===== FIX: seção "Educação que Transforma" na KIDS ===== */

/* 1) garante fundo branco mesmo */
.edu360-section,
.secao-educacao-transforma,
.educacao-transforma {
  background: #fff !important;
  opacity: 1 !important;
}

/* 2) se você tiver overlay por pseudo-elemento */
.edu360-section::before,
.secao-educacao-transforma::before,
.educacao-transforma::before,
.edu360-section::after,
.secao-educacao-transforma::after,
.educacao-transforma::after {
  content: none !important;
}

/* 3) remove qualquer opacity aplicada no “bloco” que segura conteúdo */
.edu360-section * ,
.secao-educacao-transforma * ,
.educacao-transforma * {
  opacity: 1 !important;
  filter: none !important;
}

/* 4) (opcional) garante texto/ícones visíveis no branco */
.edu360-section h2,
.edu360-section h3,
.edu360-section p {
  color: #0b1b3a !important; /* ajuste se quiser */
}
/* ===== FIX: seção "Educação que Transforma" na KIDS ===== */

/* 1) garante fundo branco mesmo */
.edu360-section,
.secao-educacao-transforma,
.educacao-transforma {
  background: #fff !important;
  opacity: 1 !important;
}

/* 2) se você tiver overlay por pseudo-elemento */
.edu360-section::before,
.secao-educacao-transforma::before,
.educacao-transforma::before,
.edu360-section::after,
.secao-educacao-transforma::after,
.educacao-transforma::after {
  content: none !important;
}

/* 3) remove qualquer opacity aplicada no “bloco” que segura conteúdo */
.edu360-section * ,
.secao-educacao-transforma * ,
.educacao-transforma * {
  opacity: 1 !important;
  filter: none !important;
}

/* 4) (opcional) garante texto/ícones visíveis no branco */
.edu360-section h2,
.edu360-section h3,
.edu360-section p {
  color: #0b1b3a !important; /* ajuste se quiser */
}
/* ===========================
   PORTAL (INDEX) + MODAL PRO
=========================== */
.portal-body{
  font-family: 'Poppins', sans-serif;
  margin:0;
  background: #0b1a3a;
}

.portal-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 9999;
}

.portal-card{
  width: min(980px, 100%);
  background: #0d1f44;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.portal-top h1{
  color:#fff;
  margin:0 0 6px;
  font-size: 28px;
}
.portal-top p{
  color: rgba(255,255,255,.72);
  margin:0 0 18px;
}

.portal-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.portal-unit{
  display:block;
  text-decoration:none;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition: .2s ease;
  position: relative;
  overflow:hidden;
}
.portal-unit:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

.portal-unit__logo{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.portal-unit__logo img{
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.portal-fallback{
  color:#fff;
  font-weight:700;
  font-size: 18px;
}

.portal-pill{
  display:inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  color:#0d1f44;
  font-weight: 700;
  background: #f6b400; /* amarelo do site */
}

.portal-unit strong{
  display:block;
  color:#fff;
  font-size: 18px;
  margin-bottom: 4px;
}
.portal-unit small{
  display:block;
  color: rgba(255,255,255,.72);
}

.portal-unit--mais::after,
.portal-unit--kids::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(246,180,0,.20), transparent 55%);
  pointer-events:none;
}

.portal-foot{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.portal-close{
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
}
.portal-close:hover{ border-color: rgba(255,255,255,.35); }

.portal-save{
  color: rgba(255,255,255,.8);
  font-size: 14px;
  display:flex;
  align-items:center;
  gap: 8px;
}

.portal-page{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px;
  color:#fff;
}
.portal-page-inner{
  text-align:center;
  max-width: 520px;
}
.portal-open{
  margin-top: 10px;
  background:#f6b400;
  border:none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  cursor:pointer;
}

/* responsivo */
@media (max-width: 820px){
  .portal-grid{ grid-template-columns: 1fr; }
}
/* ===== BOTÃO "TROCAR UNIDADE" (HEADER) ===== */
.trocar-unidade{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #0b1b3a;                 /* azul escuro do site */
  background: rgba(255, 193, 7, .18); /* amarelo suave */
  border: 1px solid rgba(255, 193, 7, .45);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.trocar-unidade:hover{
  background: rgba(255, 193, 7, .30);
  border-color: rgba(255, 193, 7, .70);
  transform: translateY(-1px);
}

.trocar-unidade:active{
  transform: translateY(0);
}

/* Se seu header tiver fundo escuro em alguma página */
header.dark .trocar-unidade,
.header-overlay .trocar-unidade{
  color: #fff;
  background: rgba(255, 193, 7, .20);
  border-color: rgba(255, 193, 7, .55);
}

header.dark .trocar-unidade:hover,
.header-overlay .trocar-unidade:hover{
  background: rgba(255, 193, 7, .35);
  border-color: rgba(255, 193, 7, .85);
}

/* Mobile: deixa menor e não quebra layout */
@media (max-width: 768px){
  .trocar-unidade{
    padding: 8px 12px;
    font-size: 13px;
  }
}
/* ============================= */
/* CENTRALIZAÇÃO GLOBAL PADRÃO */
/* ============================= */

.container,
.container-split,
.sobre-wrapper,
.tour-unique-wrap,
.topicos .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
/* Empurra o site pra baixo do header fixo/overlay */
:root{
  --altura-header: 110px; /* ajuste fino se precisar */
}

body{
  padding-top: var(--altura-header);
}
:root{
  --altura-header: 110px;
}

body.pagina-interna{
  padding-top: var(--altura-header);
}
/* ====== PADRÃO GLOBAL (BRANCO + AZUL/AMARELO) ====== */
:root{
  --azul: #071a3a;
  --azul-2: #0b2454;
  --amarelo: #f6c200;
  --amarelo-2: #ffd54a;

  --bg: #ffffff;
  --texto: #0b1b33;
  --muted: #4b5563;

  --container: 1180px;
  --header-h: 0px; /* vai ser calculado no JS */
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body{
  background: var(--bg) !important;
  color: var(--texto);
}

/* container padrão */
.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

/* ====== FIX: conteúdo não fica por baixo do header ====== */
/* use main como “corpo” das páginas */
main.page{
  padding-top: calc(var(--header-h) + 18px);
}

/* Se alguma página não tiver <main>, isso garante mesmo assim */
body.has-fixed-header{
  padding-top: calc(var(--header-h) + 18px);
}

/* ====== Cores secundárias/terciárias ====== */
.text-azul{ color: var(--azul); }
.text-amarelo{ color: var(--amarelo); }

.btn-amarelo{
  background: var(--amarelo);
  color: #0b1b33;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-amarelo:hover{ filter: brightness(.95); }

.card-branca{
  background: #fff;
  border: 1px solid rgba(11,27,51,.10);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(11,27,51,.08);
}

/* ====== RESPONSIVO BÁSICO ====== */
@media (max-width: 900px){
  :root{ --container: 980px; }
  .container{ width: calc(100% - 22px); }
}
/* ===== FORÇAR AMARELO MAIS ESCURO EM TODOS OS CABEÇALHOS ===== */

.header-overlay .cta-btn,
.header-inner .cta-btn,
header .cta-btn {
    background: #d4a900 !important;  /* amarelo mais escuro */
    color: #0b1b33 !important;
}

.header-overlay .cta-btn:hover,
.header-inner .cta-btn:hover,
header .cta-btn:hover {
    background: #b88e00 !important; /* ainda mais escuro no hover */
}
.page-wrap{
  padding-top: 110px;
}
@media (max-width: 768px){
  .page-wrap{ padding-top: 92px; }
}
/* ============================
   RESPONSIVO PÁGINAS EDUCARMAIS
   (colar no final do style.css)
============================ */

/* 1) Garante que o conteúdo não fique por baixo do header fixo */
:root{
  --header-height: 86px; /* ajuste se seu header for maior */
}

body{
  padding-top: var(--header-height);
}

/* Se o seu header não for fixo, comente as 2 linhas abaixo */
.header-overlay{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
}

/* 2) Containers mais consistentes */
.container,
.container-footer,
.container-bottom{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* 3) Seções internas com respiro */
.sobre,
.estrutura-premium,
.contato-premium{
  background: #fff;
  padding: 60px 0;
}

/* 4) SOBRE: texto + imagem lado a lado no PC, empilha no celular */
.sobre-wrapper{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.sobre-texto p{
  line-height: 1.7;
  margin-top: 10px;
}

.sobre-imagem img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* 5) ESTRUTURA: cards responsivos */
.estrutura-premium .cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.estrutura-premium .card{
  border-radius: 16px;
  padding: 18px;
}

/* 6) CONTATO: duas colunas no PC, empilha no celular */
.contato-premium .container-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.contato-mapa .moldura-mapa{
  width: 100%;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
}

.contato-mapa iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 7) Botões não estourarem no mobile */
.cta-btn,
.btn-secondary,
.btn-whatsapp-contato{
  max-width: 100%;
  white-space: nowrap;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 900px){
  :root{ --header-height: 74px; } /* header geralmente menor no mobile */

  .nav-center{ display: none; } /* garante que some o menu desktop */
  .burger{ display: inline-flex; }

  .sobre-wrapper{
    grid-template-columns: 1fr;
  }

  .estrutura-premium .cards{
    grid-template-columns: 1fr;
  }

  .contato-premium .container-split{
    grid-template-columns: 1fr;
  }

  .contato-mapa .moldura-mapa{
    min-height: 280px;
  }

  .titulo-secao{
    text-align: center;
  }

  .sobre-texto h2{
    text-align: center;
  }
}

/* ============================
   MOBILE PEQUENO
============================ */
@media (max-width: 480px){
  :root{ --header-height: 68px; }

  .sobre,
  .estrutura-premium,
  .contato-premium{
    padding: 44px 0;
  }

  .contato-mapa .moldura-mapa{
    min-height: 240px;
  }
}
/* ============================
   ABAS "PROPOSTA PEDAGÓGICA" - RESPONSIVO
   (colar no final do style.css)
============================ */

/* container das abas (pode ser .abas-container, .abas-mais ou .abas-container .botoes-pilares) */
.abas-container,
.abas-mais,
.botoes-pilares{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  justify-items: stretch;
  align-items: stretch;
  margin: 18px auto 22px;
  max-width: 980px;
  padding: 0 12px;
}

/* botões/tabs (serve para .aba-btn e .aba-item) */
.aba-btn,
.aba-item{
  width: 100%;
  min-height: 84px;
  padding: 14px 12px;
  border-radius: 16px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
}

/* ícone e texto */
.aba-btn i,
.aba-item i{
  font-size: 20px;
  line-height: 1;
}

.aba-btn span,
.aba-item span{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}

/* evita quebrar feio em telas menores */
.aba-btn span,
.aba-item span{
  word-break: break-word;
}

/* ========= TABLET / MOBILE ========= */
@media (max-width: 820px){
  .abas-container,
  .abas-mais,
  .botoes-pilares{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
}

/* ========= MOBILE PEQUENO ========= */
@media (max-width: 520px){
  .abas-container,
  .abas-mais,
  .botoes-pilares{
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .aba-btn,
  .aba-item{
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
    padding: 14px 16px;
    min-height: 64px;
  }

  .aba-btn i,
  .aba-item i{
    font-size: 18px;
  }

  .aba-btn span,
  .aba-item span{
    font-size: 15px;
  }
}
/* =========================
   FIX RESPONSIVO - PROPOSTA (abas)
   Cole no FINAL do style.css
========================= */

/* Container geral */
.proposta-mais .container{
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Abas: não quebrar feio no mobile */
.proposta-mais .abas-mais,
.proposta-mais .abas-container{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center !important;
  align-items: stretch !important;
}

/* Botões / itens das abas */
.proposta-mais .aba-item,
.proposta-mais .aba-btn{
  flex: 1 1 220px !important; /* cresce, mas pode quebrar linha */
  min-width: 180px !important;
  max-width: 320px !important;
}

/* Conteúdo: lado a lado no PC */
.proposta-mais .visor-otimizado,
.proposta-mais .conteudo-dinamico{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
  align-items: center !important;
}

/* Coluna da foto (evita corte/estouro) */
.proposta-mais .lado-foto,
.proposta-mais .coluna-imagem{
  width: 100% !important;
}

/* Imagem ajustada e responsiva */
.proposta-mais #foto-pilar,
.proposta-mais #imagem-pilar,
.proposta-mais .lado-foto img,
.proposta-mais .coluna-imagem img{
  width: 100% !important;
  height: auto !important;
  max-height: 520px;
  object-fit: cover;      /* mantém bonito */
  object-position: center;/* centraliza o enquadramento */
  border-radius: 18px;
  display: block;
}

/* Coluna texto */
.proposta-mais .lado-texto,
.proposta-mais .coluna-texto{
  width: 100% !important;
  min-width: 0 !important;
}

/* Textos não estourarem */
.proposta-mais h2,
.proposta-mais h3,
.proposta-mais p{
  word-break: break-word;
}

/* ========= MOBILE ========= */
@media (max-width: 900px){
  /* Empilha tudo */
  .proposta-mais .visor-otimizado,
  .proposta-mais .conteudo-dinamico{
    grid-template-columns: 1fr !important;
  }

  /* Abas em 2 colunas quando der */
  .proposta-mais .aba-item,
  .proposta-mais .aba-btn{
    flex: 1 1 calc(50% - 12px) !important;
    max-width: none !important;
  }

  /* Imagem mais “baixa” pra caber melhor */
  .proposta-mais #foto-pilar,
  .proposta-mais #imagem-pilar,
  .proposta-mais .lado-foto img,
  .proposta-mais .coluna-imagem img{
    max-height: 360px;
  }
}

@media (max-width: 520px){
  /* Abas em 1 coluna no celular pequeno */
  .proposta-mais .aba-item,
  .proposta-mais .aba-btn{
    flex: 1 1 100% !important;
  }

  .proposta-mais{
    padding: 56px 0 !important;
  }
}
/* Container principal que segura o Endereço e o Telefone */
.secao-contato-container {
    display: flex !important;
    align-items: center !important; /* Centraliza verticalmente o texto e o mapa */
    justify-content: center !important;
    gap: 50px;
    padding-top: 150px !important; /* EMPURRA O TEXTO PARA BAIXO DO CABEÇALHO */
    padding-bottom: 80px;
    background-color: #ffffff; /* Garante fundo branco para leitura */
    min-height: 80vh; /* Garante que a seção ocupe a tela quase toda */
}

/* Coluna de texto (Esquerda) */
.contato-info {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Garante centralização interna */
}

/* Ajuste individual dos blocos de texto para melhor leitura */
.contato-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9; /* Um fundo cinza bem leve ajuda a destacar do branco */
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-5px); /* Animação suave que você gosta */
}
/* Use o nome da classe que envolve o Endereço e o Mapa */
.secao-contato, #contato {
    margin-top: 180px !important; /* Isso vai criar um buraco branco entre o menu e o texto */
    background-color: #ffffff !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

/* Centraliza o bloco da esquerda (Endereço/Telefone) */
.contato-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* Isso vai empurrar TUDO que estiver abaixo do menu para baixo */
main, .secao-contato, .contato-mais {
    padding-top: 180px !important; /* Espaço para o menu não cobrir */
    background-color: #ffffff !important;
}

/* Centraliza o bloco da esquerda (Endereço e Telefone) */
.contato-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Centraliza verticalmente no espaço */
    align-items: flex-start !important;
    height: auto;
    min-height: 400px; /* Garante que ele tenha altura para centralizar */
}

/* Ajusta o Mapa para ficar alinhado com o texto */
.mapa-container {
    align-self: center !important;
}
/* Seleciona a coluna da esquerda onde está o Endereço e Telefone */
.contato-info, .info-esquerda, [class*="contato"] .esquerda {
    position: relative !important; /* Anula qualquer position absolute que possa existir */
    top: 0 !important;
    margin-top: 180px !important; /* Empurra o bloco para baixo do cabeçalho */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Centraliza o conteúdo internamente */
    padding-left: 50px !important; /* Ajusta o texto mais para o centro se quiser */
}

/* Garante que o container pai não limite a altura */
.secao-contato-container, .contato-mais .container {
    display: flex !important;
    align-items: flex-start !important; /* Alinha pelo topo para o margin-top funcionar */
    min-height: 100vh !important;
    background-color: #ffffff !important;
}
/* APLICA EM TODAS AS PÁGINAS (KIDS E MAIS) */
body {
    /* Cria um espaço no topo de todas as páginas proporcional ao tamanho do seu menu */
    padding-top: 140px !important; 
}

/* Garante que o fundo das seções seja branco e limpo como na foto 1 */
section, main {
    background-color: #ffffff !important;
}

/* Ajuste específico para a página de Estrutura e Contato */
.secao-contato-container, .estrutura-premium, .container {
    display: flex !important;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo horizontalmente */
    justify-content: center;
    text-align: center;
}

/* Alinhamento dos cards para não ficarem colados no menu */
.cards, .contato-wrapper {
    margin-top: 30px !important;
}
/* AJUSTE GLOBAL EQUILIBRADO */
body {
    /* Reduzimos para 100px para o texto subir um pouco e não ficar "muito embaixo" */
    padding-top: 100px !important; 
    background-color: #ffffff !important;
}

/* Garante que o container de contato ou estrutura use o espaço de forma inteligente */
.secao-contato-premium, .estrutura-premium, .contato-premium {
    padding-top: 20px !important; /* Pequeno ajuste interno */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-height: calc(100vh - 100px); /* Ocupa o restante da tela sem sobrar muito espaço */
}

/* Centraliza os textos e o mapa lado a lado de forma ajustada */
.container-split {
    display: flex !important;
    align-items: center !important; /* Centraliza verticalmente o mapa e o texto */
    gap: 40px;
    margin-top: 0 !important;
}