/* ===================== TOKENS ===================== */
:root {
  --azul-escuro: #2d6ea8;
  --azul-medio: #5698d2;
  --azul-claro: #a5c6e5;
  --azul-lavagem: #eef4fa;
  --branco: #ffffff;
  --texto: #2e2e2e;
  --texto-suave: #5b6672;

  --fonte-titulo: 'Fraunces', serif;
  --fonte-corpo: 'Manrope', sans-serif;

  --container-max: 1120px;
}

/* ===================== RESET ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte-corpo);
  color: var(--texto);
  line-height: 1.65;
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: var(--fonte-titulo);
  color: var(--azul-escuro);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 4.5vw, 3.4rem); font-weight: 500; }
h1 em { font-style: italic; color: var(--azul-medio); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.kicker {
  display: inline-block;
  font-family: var(--fonte-corpo);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--azul-medio);
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
}
.kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--azul-medio);
}
.kicker--light { color: var(--azul-claro); }
.kicker--light::before { background: var(--azul-claro); }

.section-heading { max-width: 620px; margin-bottom: 48px; }
.section-heading--dark { max-width: 620px; margin: 0 auto 48px; text-align: center; }

.section-subtitle { color: var(--texto-suave); margin-top: 14px; font-size: 1.02rem; }
.section-subtitle--light { color: rgba(255,255,255,0.78); }

section { padding: 96px 0; position: relative; }

/* ===================== BOTÕES / LINKS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-primary { background: var(--azul-escuro); color: var(--branco); }
.btn-primary:hover { background: var(--azul-medio); transform: translateY(-2px); }

.btn-light { background: var(--branco); color: var(--azul-escuro); }
.btn-light:hover { background: var(--azul-claro); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--azul-escuro);
  border: 1.5px solid var(--azul-claro);
  margin-top: 32px;
}
.btn-outline:hover { background: var(--azul-lavagem); border-color: var(--azul-medio); transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: var(--branco); font-size: 1.05rem; padding: 17px 34px; }
.btn-whatsapp:hover { background: #1ebd5a; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--azul-escuro);
  position: relative;
}
.link-arrow span { transition: transform 0.2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; object-fit: contain; }
.logo span {
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--azul-escuro);
  line-height: 1.2;
}
.logo small {
  font-family: var(--fonte-corpo);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--texto-suave);
  display: block;
  letter-spacing: 0.02em;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--texto);
}
.main-nav a:not(.btn):hover { color: var(--azul-escuro); }
.nav-cta { padding: 10px 22px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--azul-escuro); }

/* ===================== HERO ===================== */
.hero {
  padding-top: 168px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 720px;
  height: 720px;
  background: var(--azul-lavagem);
  border-radius: 62% 38% 55% 45% / 48% 55% 45% 52%;
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--texto-suave);
  max-width: 500px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.hero-media { display: flex; justify-content: center; }

.photo-blob {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 4.6;
  border-radius: 46% 54% 61% 39% / 45% 40% 60% 55%;
  overflow: hidden;
  background: var(--azul-claro);
  box-shadow: 0 30px 60px -20px rgba(45, 110, 168, 0.35);
}
.photo-blob img { width: 100%; height: 100%; object-fit: cover; }

.photo-blob--empty { background: linear-gradient(160deg, var(--azul-claro), var(--azul-medio)); display: flex; align-items: center; justify-content: center; }
.photo-blob--empty img { display: none; }
.photo-blob--empty::after {
  content: 'Foto de Hozanita em img/hozanita.jpg';
  color: var(--branco);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 0 32px;
}

/* ===================== SOBRE ===================== */
.sobre { background: var(--azul-lavagem); }

.sobre-inner {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 64px;
  align-items: start;
}

.sobre-avatar-col { position: sticky; top: 110px; }

.photo-round {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(45, 110, 168, 0.4);
  background: var(--azul-claro);
}
.photo-round img { width: 100%; height: 100%; object-fit: cover; }
.photo-round--empty { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--azul-claro), var(--azul-medio)); }
.photo-round--empty img { display: none; }
.photo-round--empty::after { content: 'foto'; color: var(--branco); font-weight: 700; font-size: 0.8rem; }

.quote-mark {
  font-family: var(--fonte-titulo);
  font-size: 3.5rem;
  color: var(--azul-claro);
  line-height: 0.5;
  margin-top: 28px;
}
.sobre-quote {
  font-family: var(--fonte-titulo);
  font-style: italic;
  color: var(--azul-escuro);
  font-size: 1.1rem;
  margin-top: 8px;
  max-width: 260px;
}

.sobre-text p { margin-top: 16px; color: var(--texto-suave); }
.sobre-text h2 { margin-top: 4px; }

.timeline {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-weight: 600;
  color: var(--texto);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(45, 110, 168, 0.14);
}
.timeline li:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--fonte-titulo);
  color: var(--azul-medio);
  min-width: 48px;
  font-size: 1.05rem;
}

/* ===================== SERVIÇOS (FAMÍLIAS) ===================== */
.service-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid rgba(45, 110, 168, 0.14);
  transition: padding-left 0.2s ease;
}
.service-row:last-child { border-bottom: 1px solid rgba(45, 110, 168, 0.14); }
.service-row:hover { padding-left: 10px; }

.service-num {
  font-family: var(--fonte-titulo);
  font-size: 2.2rem;
  color: var(--azul-claro);
  font-weight: 500;
}

.service-body h3 { margin-bottom: 8px; }
.service-body p { color: var(--texto-suave); font-size: 0.96rem; max-width: 480px; }

.service-format {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--azul-escuro);
  white-space: nowrap;
}

/* ===================== SERVIÇOS (ESCOLAS) ===================== */
.escolas {
  background: var(--azul-escuro);
  color: var(--branco);
  overflow: hidden;
}

.escolas-blob {
  position: absolute;
  bottom: -260px;
  left: -220px;
  width: 640px;
  height: 640px;
  background: rgba(255,255,255,0.05);
  border-radius: 55% 45% 48% 52% / 45% 55% 45% 55%;
}

.escolas h2, .escolas h3 { color: var(--branco); }

.escolas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.escolas-item { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; }
.escolas-item p { color: rgba(255,255,255,0.75); margin-top: 10px; font-size: 0.95rem; }

.escolas-cta { margin-top: 56px; text-align: center; }

/* ===================== DIFERENCIAIS ===================== */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.diferencial-numero {
  display: block;
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--azul-escuro);
  margin-bottom: 12px;
}

.diferencial p { color: var(--texto-suave); font-size: 0.95rem; max-width: 220px; }

/* ===================== DEPOIMENTOS ===================== */
.depoimentos { background: var(--azul-lavagem); }
.depoimentos h2 { margin-bottom: 48px; }

.depoimentos-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.depoimento p {
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--azul-escuro);
  line-height: 1.5;
}
.depoimento cite {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--texto-suave);
  font-style: normal;
}

/* ===================== CONTATO ===================== */
.contato { text-align: center; overflow: hidden; }

.contato-blob {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: var(--azul-lavagem);
  border-radius: 50%;
  z-index: -1;
}

.contato-inner { max-width: 600px; margin: 0 auto; }
.contato p { color: var(--texto-suave); margin-top: 12px; }
.contato > .container > .contato-inner > .btn-whatsapp { margin-top: 32px; }

.contato-info {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}
.contato-info a { color: var(--azul-medio); font-weight: 700; }
.contato-info a:hover { color: var(--azul-escuro); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--azul-escuro); color: rgba(255,255,255,0.85); padding: 48px 0; }

.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-nome { font-family: var(--fonte-titulo); font-weight: 500; color: var(--branco); font-size: 1.05rem; }

.footer-social { display: flex; gap: 22px; }
.footer-social a { font-weight: 600; }
.footer-social a:hover { color: var(--azul-claro); }

.footer-lgpd { font-size: 0.78rem; max-width: 620px; opacity: 0.8; margin-top: 6px; }
.footer-copy { font-size: 0.8rem; opacity: 0.65; margin-top: 4px; }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .escolas-grid, .diferenciais-grid, .depoimentos-list { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-avatar-col { position: static; display: flex; align-items: center; gap: 20px; }
  .quote-mark { display: none; }
  .sobre-quote { margin-top: 0; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-media { order: -1; margin-bottom: 12px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .kicker { padding-left: 0; }
  .kicker::before { display: none; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--branco);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(45,110,168,0.12);
    transform: translateY(-150%);
    transition: transform 0.25s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .nav-cta { text-align: center; justify-content: center; }
  .menu-toggle { display: flex; }

  section { padding: 64px 0; }

  .service-row {
    grid-template-columns: 40px 1fr;
    grid-template-areas: "num body" ". format" ". link";
  }
  .service-num { grid-area: num; }
  .service-body { grid-area: body; }
  .service-format { grid-area: format; }
  .link-arrow { grid-area: link; margin-top: 4px; }

  .escolas-grid, .diferenciais-grid, .depoimentos-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding-top: 140px; }
  .btn { width: 100%; justify-content: center; }
}
