:root {
  --main: #050125;
  --bg: #071047;
  --black: #000;
  --white: #fff;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--main);
  border-radius: 5rem;
}

section {
  padding: 8rem 7%;
}

/* Títulos das seções */
.heading {
  text-align: center;
  font-size: 4rem;
  color: var(--white);

  margin-bottom: 3rem;
  padding: 1rem 0;
}

/* Botão padrão */
.btn {
  font-size: 1.7rem;
  display: inline-block;
  background: var(--main);
  color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 1rem;
  padding: 0.9rem 3rem;
  margin-top: 1rem;
  z-index: 0;
  position: relative;
  overflow: hidden;
}

/* Hover no botão "Enviar Mensagem" */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 0%;
  background: #100e77;
  z-index: -1;
  transition: 0.3s linear;
  left: 0;
}

.btn:hover::before {
  width: 100%;
}

/* Cabeçalho */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
}

.header .navbar a {
  font-size: 1.7rem;
  color: var(--black);
  margin: 0 1rem;
}

.header .navbar a:hover {
  color: var(--main);
}

.header .icone div {
  font-size: 2.5rem;
  margin-left: 1.7rem;
  cursor: pointer;
  color: var(--black);
}

.header .icone div:hover {
  color: var(--main);
}

#menu-btn {
  display: none;
}

/* Seção Início */
.Inicio {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url("../img/fundo.png"); /* Substitua pelo nome da sua imagem */
  background-size: cover;
  background-position: center;
}


.Inicio .content {
  max-width: 90rem;
}

/* Seção de vídeo e informações da escola */
.Historia .box-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6rem;
}
.content {
  background-color: #f4f4f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 50px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 20px;
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
}

.content .title {
  font-size: 3.5rem;
  color: #2c3e50;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.content .texto {
  font-size: 1.2rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #34495e;
  line-height: 1.8;
  width: 100%;
  max-width: 700px;
  text-align: justify;
}

.content p {
  margin-bottom: 30px;
  color: #555;
}


/* Contêiner que ocupa a tela inteira */
.imagem-tela {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Imagem que cobre tudo centralizada */
.imagem-tela img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Card da diretora */
.card-diretora {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px 35px;             /* Aumenta o espaço interno */
  max-width: 400px;               /* Card mais largo */
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card-diretora:hover {
  transform: scale(1.03);
}

/* Foto da diretora */
.foto-diretora {
  width: 220px;                   /* Imagem maior */
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #050125;
  margin-bottom: 25px;
}

/* Nome */
.nome-diretora {
  font-size: 26px;                /* Nome um pouco maior */
  font-weight: 600;
  color: #050125;
  margin: 12px 0 6px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Cargo */
.cargo-diretora {
  font-size: 18px;                /* Cargo um pouco maior também */
  color: #555;
  font-style: italic;
}

/* Título centralizado */
.titulo {
  display: block;
  margin: 40px auto 30px;
  max-width: 500px;
}

/* Layout responsivo de cards */
.avaliacoes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card individual */
.avaliacao-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.avaliacao-card:hover {
  transform: translateY(-5px);
}

/* Foto redonda */
.foto-usuario {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #050125;
  margin-bottom: 15px;
}

/* Nome */
.avaliacao-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #050125;
  margin-bottom: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Estrelas */
.estrelas {
  width: 90px;
  margin-bottom: 15px;
}

/* Texto da avaliação */
.avaliacao-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  font-family: 'Roboto', sans-serif;
}


/* Contatos */
.contatos {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

/* Informações à esquerda */
.contatos .left-side {
  background-color: #110247;
  color: #fff;
  padding: 15px 20px;  /* Aumentei um pouco o padding */
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 350px;  /* Aumentei o max-width para ficar um pouco mais largo */
  width: 100%;
  height: fit-content;
}

.contatos .left-side div {
  display: flex;
  align-items: center;
  margin-bottom: 8px;  /* Dei um pequeno espaçamento para as informações ficarem mais separadas */
}

.left-side div i {
  font-size: 18px;
  margin-right: 10px;  /* Um pouco mais de espaçamento entre o ícone e o texto */
  color: #fff;
}

.left-side p {
  font-size: 14px;  /* Aumentei um pouco a fonte para dar um destaque maior */
  margin: 0;
}

/* Formulário à direita (seção maior) */
.contatos .right-side {
  width: 100%;
  max-width: 600px;
  background-color: #f5f4f7;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contatos .right-side input,
.contatos .right-side textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.contatos .right-side textarea {
  height: 150px;
}

.contatos .right-side button {
  width: 100%;
  padding: 12px;
  background-color: #110247;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}

.contatos .right-side button:hover {
  background-color: #050125;
}

/* Responsividade */
@media (max-width: 768px) {
  .contatos {
    flex-direction: column;
  }

  .contatos .left-side,
  .contatos .right-side {
    width: 100%;
  }
}


/* Rodapé */
.ultimo {
  background-color: #030930;
  height: 200px;
}

.ultimo h2 {
  color: #000000;
  background: #ffffff;
  width: 200px;
  text-align: center;
  margin-left: 45%;
  font-size: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

footer {
  background-color: var(--bg);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  /* Removido position: fixed e bottom: 0 */
}


footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


.btn-conheca {
  background: linear-gradient(135deg, #0c053f, #050125);
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;

  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: inline-block; /* garante que o botão "abrace" o conteúdo */
  z-index: 1;
}

.btn-conheca::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  z-index: 0;
}

.btn-conheca:hover::before {
  left: 100%;
}

.btn-conheca > * {
  position: relative;
  z-index: 1; /* garante que o texto fique acima do brilho */
}

.btn-conheca:hover {
  background: linear-gradient(135deg, #050125, #0c053f);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
