/* ==========================================
   1. RESET & CONFIGURAÇÕES GERAIS
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #2d3748; /* Cinza escuro elegante no lugar do preto puro */
  line-height: 1.6;
  padding-top: 140px; /* Alinhado com a altura do header fixo */
}

strong {
  color: #6d28d9;
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  color: #4a5568;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ==========================================
   2. HEADER / TOPO DO SITE
   ========================================== */
.topo-barra {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: rgba(139, 92, 246, 0.98);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 1000;
}

h1, h2 {
    font-family: 'Nunito', sans-serif;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  position: relative;
}

.logo img {
  height: 170px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.nome-escola {
  color: white;
}

.nome-escola h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
}

.nome-escola span {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* Navegação */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: white;
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  opacity: 0.85;
}

.botao-contato {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.botao-contato:hover {
  background: white;
  color: #7c3aed !important;
}

.botao-contato::after {
  display: none; /* Remove a linha de baixo do botão de contato */
}

/* Botão Hamburguer (Mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ==========================================
   3. SEÇÃO HERO (INTRODUÇÃO)
   ========================================== */
.hero {
  max-width: 950px;
  margin: 40px auto 20px; 
  padding: 90px 40px;
  text-align: center;
  color: white;
  background-image: linear-gradient(rgba(139, 92, 246, 0.75), rgba(139, 92, 246, 0.75)), url("img/hero-ingles.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: #f3f4f6;
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================
   4. SEÇÕES GENÉRICAS & CONTEÚDO
   ========================================== */
section {
  max-width: 950px;
  margin: auto;
  padding: 60px 20px;
  scroll-margin-top: 140px;
  animation: fadeUp 0.8s ease forwards;
}

h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #6d28d9;
  text-align: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Sobre (Texto e Foto lado a lado) */
.sobre-container {
  display: flex;
  align-items: center;
  gap: 40px; /* Espaço entre a foto e o texto */
  background: white;
  padding: 35px;
  border-left: 6px solid #8b5cf6;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.sobre-foto {
  flex: 1; /* Faz a foto ocupar um espaço proporcional */
  max-width: 300px; /* Limita o tamanho máximo da foto */
}

.sobre-foto img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Deixa os cantos da foto arredondados */
  display: block;
  object-fit: cover;
}

.sobre-texto {
  flex: 2; /* Faz o texto ter o dobro do espaço da foto */
}

/* Removemos a borda e o fundo do parágrafo individual, já que o container faz isso */
.sobre p {
  background: none;
  padding: 0;
  border-left: none;
  border-radius: 0;
  box-shadow: none;
  text-align: justify;
}

/* Serviços e Diferenciais */
.servicos ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  list-style: none;
}

.servicos li {
  background: white;
  padding: 30px 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

.servicos li:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
}

.servicos h3 {
  font-size: 1.3rem;
  color: #1a2530;
  margin-bottom: 12px;
}
.diferenciais {
  background-color: #f4f6f8;
  max-width: 100%;
  padding-left: calc((100% - 950px)/2 + 20px);
  padding-right: calc((100% - 950px)/2 + 20px);
}
.diferenciais ul,
.diferenciais li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Depoimentos */
.depoimento:hover {
  background: white;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 4px solid #8b5cf6;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transform: translateY(-5px);
  transition: 0.3s;
}

.perfil {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.perfil img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #8b5cf6;
}

.perfil h4 {
  margin: 0;
  color: #8b5cf6;
}

.perfil span {
  color: #666;
  font-size: 0.9rem;
}

.depoimento p {
  margin: 0;
  line-height: 1.7;
}

/* ==========================================
   PERGUNTAS FREQUENTES (FAQ)
   ========================================== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border-left: 4px solid #8b5cf6; /* Barrinha roxa charmosa na lateral */
}

.faq-pergunta h3 {
  font-size: 1.15rem;
  color: #1a2530;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-resposta p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Contato */
.contato {
  text-align: center;
}

.contato p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

button {
  background: #7c3aed;
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  transition: 0.3s ease;
}

button:hover {
  background: #6d28d9;
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}

/* ==========================================
   5. BOTÃO WHATSAPP FLUTUANTE
   ========================================== */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp img {
  width: 24px;
  height: 24px;
}

.whatsapp:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   6. FOOTER
   ========================================== */
footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
  font-size: 0.9rem;
}

/* ==========================================
   7. MEDIA QUERIES (RESPONSIVIDADE)
   ========================================== */
@media (max-width: 768px) {

  body {
    padding-top: 110px;
  }

  .topo-barra {
    height: 100px;
    padding: 0 20px;
    position: fixed;
  }

  .logo-area {
    gap: 10px;
  }

  .logo img {
    height: 100px;
  }

  .nome-escola h1 {
    font-size: 1.4rem;
  }

  .nome-escola span {
    font-size: 0.75rem;
  }

  /* MENU HAMBÚRGUER */
  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: none;
    padding: 0;
  }

  nav {
    position: relative;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 230px;
    background: #8b5cf6;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    gap: 18px;
    z-index: 1001;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    width: 100%;
  }

  .botao-contato {
    text-align: center;
  }

  /* HERO */
  .hero {
    padding: 50px 20px;
    margin: 20px 15px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  /* SOBRE */
  .sobre-container {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .sobre-foto {
    max-width: 220px;
    margin: 0 auto;
  }

  .sobre-texto {
    text-align: left;
  }

  /* WHATSAPP */
  .whatsapp span {
    display: none;
  }

  .whatsapp {
    padding: 16px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
}

/* SOBRE A TEACHER CECI */
.teacher {
  max-width: 950px;
  margin: auto;
  padding: 60px 20px;
}

.teacher-perfil {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.teacher-perfil img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #8b5cf6;
  flex-shrink: 0;
}

.teacher-intro h3 {
  color: #6d28d9;
  font-size: 2rem;
  margin-bottom: 12px;
}

.teacher-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.teacher-card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  border-left: 5px solid #8b5cf6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.teacher-card h3 {
  color: #6d28d9;
  margin-bottom: 15px;
}

.teacher-card ul {
  padding-left: 20px;
}

.teacher-card li {
  margin-bottom: 8px;
}

.teacher-card.destaque {
  background: linear-gradient(
    135deg,
    rgba(139,92,246,0.08),
    rgba(139,92,246,0.02)
  );
  text-align: center;
}

.teacher-card.destaque p {
  font-size: 1.2rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .teacher-perfil {
    flex-direction: column;
    text-align: center;
  }

  .teacher-perfil img {
    width: 180px;
    height: 180px;
  }
}


/* Centraliza o ícone do Instagram horizontalmente */
.redes-sociais {
  display: flex;
  justify-content: center; /* Alinha no centro da tela */
  margin-top: 50px;        /* Dá um espaço para não grudar no botão do WhatsApp */
  width: 100%;             /* Garante que a div ocupe a largura toda da página */
}

/* Controla o tamanho e a cor do ícone do Font Awesome */
.redes-sociais a {
  font-size: 28px;         /* Aumenta um pouco o tamanho do ícone */
  color: #6a1b9a;          /* Altera a cor (coloquei o roxo do seu botão, mude se preferir) */
  text-decoration: none;   /* Remove qualquer sublinhado padrão de links */
  transition: color 0.3s, transform 0.2s; /* Efeito suave ao passar o mouse */
}

/* Efeito visual quando o usuário passa o mouse por cima */
.redes-sociais a:hover {
  color: #e1306c;          /* Muda para a cor clássica do Instagram */
  transform: scale(1.15);  /* Dá um leve zoom */
}


