* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #F7F3EE;
  color: #2F2F2F;
}

/* ========== SEÇÃO TOP BAR ==========*/
.top-bar {
  background: linear-gradient(90deg,#e92121);
  padding: 10px 0;

  position: sticky;
  top: 0;
  z-index: 1100;
 
}

.top-bar-content {
  max-width: 1000px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  color: #f1e6e6;
  font-size: 14px;
}

.contato {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
}

.contato i {
  font-size: 15px;
  color: #fff;
}





/*========== SEÇÃO HEADER ==========*/
.header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #eae8e8;

  position: sticky;
  top: 0;
  z-index: 1000;

}




.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 130px;
}

.menu {
  display: flex;
  gap: 40px;
}

.menu a {
  text-decoration: none;
  color: #2F2F2F;
  font-size: 15px;
}

.btn-header {
  background: linear-gradient(90deg,#e92121);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;

  border: 3px solid #ff8282;
}

/*==========  SEÇÃO HOVER ========== */
.btn-header:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(251, 36, 36, 0.45);
}

.btn-header:active {
  transform: translateY(-1px) scale(0.97);
}

.menu-toggle {
  display: none; 
}



/*==========  SEÇÃO HERO ==========*/
.hero {
  min-height: 100vh;
  padding: 80px 0;

  background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fffaa0;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gradiente-azul {
  background: linear-gradient(90deg, #1540ff);
  -webkit-background-clip: text;
  color: transparent;
}

.gradiente-rosa {
  background: linear-gradient(90deg, #1540ff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
  color: #01040fdc;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  background: linear-gradient(90deg, #ff4747);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(252, 75, 75, 0.45);
}

.btn-secondary {
  background: #273dff;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44, 44, 237, 0.12);
 
}

.btn-principal:active,
.btn-secundario:active {
  transform: translateY(-1px) scale(0.98);
}

.hero-stats {
  display: flex;
  gap: 50px;
}

.hero-stats strong {
  font-size: 22px;
  display: block;
}

.hero-stats span {
  font-size: 14px;
  color: #35373d;
}

.hero-stats .red strong {
  color: #df2626e2;
}

.hero-stats .blue strong {
  color: #0d54e1d6;
}

.hero-image {
  position: relative;
  border-radius: 24px;
}


.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 
    0 25px 60px rgba(246, 210, 210, 0.658),
    inset 0 0 0 1px rgba(246, 131, 131, 0.558);
}

.floating-card {
  position: absolute;
  bottom: 24px;
  left: -40px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.floating-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0f9149);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}




/*==========  SEÇÃO SOBRE ==========*/
.sobre {
  min-height: 100vh;
  padding: 140px 0 100px;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.125),
      rgba(255, 255, 255, 0.129)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.sobre::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L60,208C120,192,240,160,360,165.3C480,171,600,213,720,229.3C840,245,960,235,1080,213.3C1200,192,1320,160,1380,144L1440,128L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'/%3E%3C/svg%3E")
    no-repeat top center;
  background-size: cover;
  z-index: 1;
}


.sobre-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}


.sobre-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.sobre-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sobre-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}


.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


.sobre-texto h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.sobre-texto p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}


.sobre-imagem img {
 width: 100%;
  border-radius: 30px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.277),
    inset 0 0 0 1px rgba(255, 255, 255, 0.286);
}








/*==========  SEÇÃO VALORES ==========*/
.valores {
  min-height: 50vh;
  padding: 60px 0 80px;

  background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.valores-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.valores-topo {
  max-width: 720px;
  margin-bottom: 40px;
}

.valores-topo p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 14px;
}

.linha-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.linha-info .linha {
  width: 50px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2563eb, #ec4899, #dc2626);
}

.linha-info .texto {
  font-size: 14px;
  color: #6b7280;
}

.valores-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.valor-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 25px rgba(249, 196, 132, 0.59);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(254, 132, 67, 0.392);
}

.valor-card:hover .icon {
  transform: scale(1.1);
}

.icon {
  transition: transform 0.3s ease;
}
.valor-card:active {
  transform: scale(0.97);
}

.valor-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.valor-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.icon.red {
  background: #fee2e2;
  color: #dc2626;
}

.icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.icon.green {
  background: #46da7a;
  color: #16a34a;
}

.icon.yellow {
  background: #ffe374;
  color: #ca8a04;
}







/*========== SEÇÃO PORQUE ==========*/
.porque {
 
  min-height: 50vh;
  padding: 100px 20px;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.195),
      rgba(255, 255, 255, 0.259)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.porque-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.porque-titulo {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.porque-titulo span {
  background: linear-gradient(90deg, #d41919);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.porque-subtitulo {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 48px;
}

.porque-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: #f9fafb;
}

.tab i {
  font-size: 18px;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.tab:hover i {
  transform: scale(1.15) rotate(-6deg);
}

.tab.ativa {
  background: linear-gradient(90deg, #6672fe);
  color: #fff;
  border: none;
}

.tab.ativa:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.tab.ativa i {
  color: #fff;
}

.porque-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  text-align: left;
  margin-bottom: 80px;
}

.porque-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.porque-card p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 32px;
}

.porque-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.porque-lista span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-size: 14px;
}

.porque-gradiente {
  background: linear-gradient(90deg,  #19b67a);
  border-radius: 28px;
  padding: 60px 40px;
  color: #fff;
}

.porque-gradiente h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.porque-gradiente p {
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.8;
  opacity: 0.95;
}

.numeros {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.numeros div {
  text-align: center;
}

.numeros strong {
  font-size: 36px;
  display: block;
}

.numeros span {
  font-size: 14px;
  opacity: 0.9;
}

.tab-conteudo {
  display: none;
}

.tab-conteudo.ativo {
  display: block;
}


/* ================= SEÇÃO EDUCAÇÃO ================= */
.educacao {
  min-height: 50vh;
  padding: 100px 20px;

  background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.educacao-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}


.educacao-texto {
  display: contents;
}

.educacao-texto h2 {
  grid-column: 1 / -1;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.educacao-texto h2 span {
  background: linear-gradient(90deg, #e32c2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitulo {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 70px;
}


.card-etapa {
  grid-column: 1 / 2;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 520px;
}

.icon-etapa {
  width: 56px;
  height: 56px;
  background: #2563eb;
  color: #fff;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;

  flex-shrink: 0;      
  aspect-ratio: 1 / 1; 
}


.card-etapa h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.idade {
  display: block;
  font-size: 14px;
  color: #2563eb;
  margin-bottom: 16px;
}

.card-etapa p {
  font-size: 16px;
  line-height: 1.7;
  color: #2f353c;
  margin-bottom: 28px;
}

.lista-itens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin-bottom: 36px;
}

.lista-itens span {
  font-size: 15px;
  color: #22262d;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lista-itens span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
}

.btn-primario {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(90deg, #2563eb);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primario:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.foto-wrapper {
  position: relative;
  display: inline-block;
   overflow: visible; 
   width: 120%;
}

.foto-wrapper::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: #dce1e9; 
  border-radius: 18px;
  transform: rotate(0deg);
  z-index: 0;
}

.foto-wrapper img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 24px;

  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  z-index: 1;
}

.foto-wrapper:hover img {
  transform: rotate(2deg);
}



.materno {
  min-height: 50vh;
  padding: 100px 20px;

  background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.materno-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.foto-wrapper {
  position: relative;
  display: inline-block;
  overflow: visible;
  width: 120%;
}

.foto-wrapper::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: #dce1e9;
  border-radius: 18px;
  z-index: 0;
}

.foto-wrapper img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 24px;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  z-index: 1;
}

.foto-wrapper:hover img {
  transform: rotate(2deg);
}

.materno-conteudo {
  max-width: 520px;
}

.titulo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.icone {
  width: 56px;
  height: 56px;
  background: #e31f39;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.titulo h2 {
  margin: 0;
  font-size: 32px;
}

.titulo small {
  color: #e31f39;
  font-size: 14px;
}


.materno-conteudo p {
  font-size: 16px;
  line-height: 1.7;
  color: #2f353c;
  margin-bottom: 28px;
}


.lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin-bottom: 36px;
  padding: 0;
  list-style: none;
}

.lista li {
  font-size: 15px;
  color: #2f353c;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lista li::before {
  content: "";
  width: 8px;
  height: 8px;
  background:#e31f39;
  border-radius: 50%;
}

.botao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #e31f39;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.botao:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}




/*========== SEÇÃO PROJETOS ==========*/
.projetos {
  min-height: 50vh;
  padding: 100px 20px;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.195),
      rgba(255, 255, 255, 0.259)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.projetos-container {
  max-width: 1200px;
  margin: auto;
}

.projetos-header {
  text-align: center;
  margin-bottom: 70px;
}

.projetos-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
}

.projetos-header h2 span {
   background: linear-gradient(90deg, #37b87b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projetos-header p {
  margin-top: 12px;
  font-size: 18px;
  color: #6b7280;
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.projeto-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 18px;
 box-shadow:
    0 0 0 1px rgba(111, 84, 69, 0.447),
    0 8px 25px rgba(204, 156, 101, 0.237);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projeto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(37, 53, 132, 0.12);
}

.projeto-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111827;
}

.projeto-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.icone {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff; 
  margin-bottom: 22px;
}

.icone.azul {
  background: #2563eb;
}

.icone.vermelho {
  background: #ef4444;
}

.projetos-botao {
  margin-top: 70px;
  text-align: center;
}

.btn-projetos {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #ec4899, #dc2626);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-projetos:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(37,99,235,0.4);
}



/*========== SEÇÃO MATRICULA ==========*/
.matricula {
  min-height: 50vh;
  padding: 100px 20px;

  background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.matricula-header {
  text-align: center;
  margin-bottom: 70px;
}

.matricula-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #111827;
}

.matricula-header h2 span {
  background: linear-gradient(90deg, #37b87b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.matricula-header p {
  margin-top: 14px;
  font-size: 18px;
  color: #6b7280;
}

.matricula-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.matricula-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 18px;
  text-align: left;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.matricula-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1.5px rgba(0,0,0,0.18),
    0 16px 40px rgba(0,0,0,0.2);
}

.matricula-card h3 {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.matricula-card p {
  margin-top: 10px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
}

.icon.blue {
  background: #2563eb;
}

.icon.red {
  background: #ef4444;
}

/*========== SEÇÃO CONTATO-MAPA ==========*/
.contato-mapa-section {
  min-height: 50vh;
  padding: 80px 20px;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.195),
      rgba(255, 255, 255, 0.259)
    ),
    url("imagens/ChatGPT\ Image\ 13_01_2026\,\ 15_17_21.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contato-mapa-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch; 
}


.contato-mapa-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  height: fit-content;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
}

.contato-mapa-card h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #111827;
}

.contato-mapa-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #374151;
}

.contato-mapa-form input,
.contato-mapa-form select,
.contato-mapa-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  margin-bottom: 20px;
  outline: none;
}

.contato-mapa-form textarea {
  min-height: 120px;
  resize: none;
}

.contato-mapa-form input:focus,
.contato-mapa-form select:focus,
.contato-mapa-form textarea:focus {
  border-color: #6366f1;
}

.contato-mapa-grupo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contato-mapa-btn {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(90deg, #26dc81);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contato-mapa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contato-mapa-info {
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
}

.contato-mapa-mapa {
  border-radius: 20px;
  overflow: hidden;
  min-height: 520px; 
  height: 100%;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
}

.contato-mapa-mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/*========== SEÇÃO RODAPE ==========*/

.footer {
  background: radial-gradient(ellipse at top, #0f172a, #020617);
  color: #cbd5f5;
  padding: 80px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  color: #cbd5f5;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a i {
  font-size: 18px;
  line-height: 0;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.footer-social a {
  transition: all 0.3s ease;
}

.footer-copy {
  background: #020617;
  padding: 20px;
  text-align: center;
}

.footer-copy p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

.footer-copy a {
  color: #ffffff;
  text-decoration: underline; /* traço embaixo */
  font-weight: 500;
}

.footer-copy a:hover {
  opacity: 0.8; /* efeito leve no hover */
}




/*---------- ICONE WHATSAPP ----------*/
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  line-height: 1;
}



/*---------- SITE RESPONSIVO ----------*/
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 60px 20px;

    background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }



.sobre {
    min-height: 100vh;
    padding: 0 16px;

    background:
    linear-gradient(
      rgba(255, 255, 255, 0.125),
      rgba(255, 255, 255, 0.129)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }


.valores {
    min-height: 100vh;
    padding: 60px 20px;

    background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }

.porque {
    min-height: 100vh;
    padding: 60px 20px;

    background:
    linear-gradient(
      rgba(255, 255, 255, 0.125),
      rgba(255, 255, 255, 0.129)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }


  .educacao {
    min-height: 100vh;
    padding: 60px 20px;

    background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }

.materno {
    min-height: 100vh;
    padding: 60px 20px;

    background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }

  .contato-mapa-section  {
    min-height: 100vh;
    padding: 60px 20px;

    background:
    linear-gradient(
      rgba(255, 255, 255, 0.125),
      rgba(255, 255, 255, 0.129)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }


  .matricula {
    min-height: 100vh;
    padding: 60px 20px;

    background:
    linear-gradient(
      rgba(252, 230, 211, 0.471),
      rgba(253, 238, 221, 0.508)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }


  .projetos {
    min-height: 100vh;
    padding: 60px 20px;

    background:
    linear-gradient(
      rgba(255, 255, 255, 0.125),
      rgba(255, 255, 255, 0.129)
    ), url("imagens/fotos.png");
    background-size: cover;
    background-position: center;
  }
}



@media (max-width: 768px) {

  .top-bar {
    background: linear-gradient(90deg,  #dc2626); 
    padding: 8px 12px;
  }

  .top-bar-content {
    display: flex;
    justify-content: center; 
    gap: 15px;
    flex-wrap: wrap; 
  }

  .top-bar .contato {
    color: #fff;
    font-size: 11px; 
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }

  .top-bar .contato i {
    font-size: 12px;
  }

  
 @media (max-width: 768px) {
 
  .header .menu, 
  .header .btn-header {
    display: none; 
  }

  .menu-toggle {
    display: block; 
    font-size: 28px;
    cursor: pointer;
    color: #333;
  }

  .header .menu {
    flex-direction: column;
    position: fixed;
    top: 100px; 
    right: -100%; 
    background: #fff;
    width: 80%;
    height: 100vh;
    padding: 40px;
    gap: 20px;
    transition: 0.3s ease-in-out;
    box-shadow: -10px 0 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .header .menu.active {
    display: flex; 
    right: 0; 
  }

  .header .menu a {
    display: block;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
  }
}


@media (max-width: 768px) {

  .hero {
    padding: 60px 20px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 1.25;
  }

  .hero-text p {
    font-size: 15px;
    margin-bottom: 24px;
  }


  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    margin: 0;
    position: relative;
  }

  .hero-image img {
    width: 100%;
    border-radius: 24px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin: -32px auto 0;
    max-width: 320px;
    width: calc(100% - 40px);
  }
}


@media (max-width: 768px) {

  .sobre-container {
    max-width: 360px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .sobre-header {
    text-align: center;
    margin-bottom: 24px;
  }

  .sobre-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .sobre-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
  }

  .sobre-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .sobre-imagem {
    order: 1;
  }

  .sobre-imagem img {
    width: 100%;
    display: block;
    border-radius: 24px;
  }

  .sobre-texto {
    order: 2;
    text-align: left;
  }

  .sobre-texto h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .sobre-texto p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
  }

  .linha-info {
    order: 3;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .linha-info .linha {
    width: 50px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #2563eb,
    #ec4899,
    #dc2626
  );
  }

  .linha-info .texto {
    font-size: 14px;
    color: #94a3b8;
    white-space: nowrap;
  }



.valores-container {
  max-width: 360px;
  margin: 0 auto;
}

.valores-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.valor-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.valor-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.icon.red {
  background: #dc3f3f;
}

.icon.blue {
  background: #3b80dc;
}

.icon.green {
  background: #2db15b;
}

.icon.yellow {
  background: #ffef45;
}

.valor-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.valor-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}


.porque-container {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.porque-titulo {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.porque-subtitulo {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 24px;
}

.porque-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.porque-tabs .tab {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.porque-tabs .tab i {
  font-size: 18px;
  color: #2563eb;
}

.porque-tabs .tab.ativa {
  border: none;
  background: linear-gradient(
    90deg,
    #3770eb 
  );
  color: #fff;
}

.porque-tabs .tab.ativa i {
  color: #fff;
}




  .porque {
    padding: 60px 16px;
  }

  .porque-titulo {
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
  }

  .porque-subtitulo {
    text-align: center;
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: 32px;
  }

  .porque-tabs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
  }

  .porque-tabs .tab {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    border-radius: 14px;
  }

  .porque-tabs .tab.ativa {
    background: linear-gradient(90deg, #2563eb);
    color: #fff;
  }

  .porque-card {
    padding: 24px 18px;
    border-radius: 18px;
    margin-bottom: 28px;
  }

  .porque-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .porque-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .porque-lista span {
    font-size: 14px;
    line-height: 1.5;
  }

  .porque-gradiente {
    padding: 28px 20px;
    border-radius: 22px;
    text-align: center;
  }

  .porque-gradiente h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .porque-gradiente p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .porque-gradiente .numeros {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .porque-gradiente .numeros strong {
    font-size: 26px;
  }

}

.educacao {
    padding: 40px 16px;
  }

  .educacao-container {
    display: flex;
    flex-direction: column; 
    gap: 24px;
  }

  .educacao-texto {
    width: 100%;
  }

  .foto-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .foto-wrapper img {
    width: 100%;
    max-width: 100%;
    height: 220px;              
    object-fit: cover;          
    border-radius: 20px;
    display: block;
  }

  .card-etapa {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .icon-etapa {
    flex-shrink: 0;
  }


 .materno {
    padding: 40px 16px;
  }

  .materno-container {
    display: flex;
    flex-direction: column; 
    gap: 24px;
  }

  .materno-conteudo {
    width: 100%;
  }

  .foto-wrapper {
    order: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  }

  .foto-wrapper img {
    width: 100%;
    max-width: 100%;
    height: 220px;              
    object-fit: cover;         
    border-radius: 20px;
    display: block;
  }

  .titulo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .icone {
    flex-shrink: 0;
  }


  .projetos {
    padding: 40px 16px;
    background-color: #f9f9f9;
  }

  .projetos-header {
    text-align: center;
    margin-bottom: 32px;
  }

  .projetos-header h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .projetos-header p {
    font-size: 15px;
    margin-top: 12px;
    color: #666;
  }

  .projetos-grid {
    display: flex;
    flex-direction: column; 
    gap: 16px; 
  }

  .projeto-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left; 
  }

  .projeto-card .icone {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .projeto-card .icone.azul {
    background-color: #2563eb;
    color: #fff;
  }

  .projeto-card .icone.vermelho {
    background-color: #dc2626;
    color: #fff;
  }

  .projeto-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
  }

  .projeto-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0; 
  }

  .projetos-botao {
    margin-top: 32px;
    text-align: center;
  }

  .btn-projetos {
    display: inline-block;
    width: 100%; 
    max-width: 280px;
    padding: 16px;
    border-radius: 50px;
    background: linear-gradient(90deg, #1eba74);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
  }

  .contato-mapa-section {
    padding: 40px 16px;
    background-color: #f9f9f9;
  }

  .contato-mapa-container {
    display: flex;
    flex-direction: column; 
    gap: 32px;
  }

  .contato-mapa-card {
    padding: 24px 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .contato-mapa-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
    color: #333;
  }

  .contato-mapa-grupo {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contato-mapa-form div {
    margin-bottom: 16px;
  }

  .contato-mapa-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
  }

  .contato-mapa-form input,
  .contato-mapa-form select,
  .contato-mapa-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    background-color: #fff;
  }

  .contato-mapa-form textarea {
    height: 100px;
    resize: none;
  }

  .contato-mapa-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg,  #1eba74);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
  }

  .contato-mapa-info {
    font-size: 12px;
    color: #777;
    text-align: center;
    margin-top: 16px;
    line-height: 1.4;
  }

  .contato-mapa-mapa {
    width: 100%;
    height: 300px; 
    border-radius: 20px;
    overflow: hidden;
  }

  .contato-mapa-mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }


  .footer {
    background-color: #111827; 
    color: #ffffff;
    padding: 60px 20px 20px;
  }

  .footer-container {
    display: flex;
    flex-direction: column; 
    gap: 40px; 
  }

  .footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); 
  }

  .footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af; 
    margin-bottom: 24px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }

  .footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
  }

  .footer-col a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.3s;
  }

  .footer-contact p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
  }

}

