/* ============================================
   Ela Na Vela — site estático
   Cores e tipografia baseadas no site original
   ============================================ */

:root {
  --azul: #075284;
  --azul-escuro: #001d4b;
  --texto: #080808;
  --branco: #ffffff;
  --cinza: #404040;
  --fonte: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: var(--azul); text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--branco);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: 0.01em;
}

.logo-central { height: 62px; width: auto; }
.logo-central img, .logo-central svg { height: 100%; width: auto; }

/* Menu */
.menu-toggle {
  background: none;
  border: 0;
  font-family: var(--fonte);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--azul);
  cursor: pointer;
  padding: 6px 2px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--branco);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.nav-overlay.open { display: flex; }

.nav-overlay a {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--azul);
  padding: 0.35rem 1rem;
}

.nav-overlay a:hover,
.nav-overlay a[aria-current="page"] { font-weight: 700; }

.nav-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: none;
  border: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: var(--branco);
  background-size: cover;
  background-position: center;
  padding: 14vh 24px 20vh;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 40, 70, 0.18);
}

.hero > * { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero .subtitulo {
  margin-top: 2.2rem;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  font-weight: 500;
  text-transform: uppercase;
  max-width: 46ch;
}

/* ---------- Títulos de página ---------- */
.titulo-pagina {
  text-align: center;
  padding: 5rem 24px 3.5rem;
}

.titulo-pagina h1 {
  color: var(--azul);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ---------- Seção Propósito (home) ---------- */
.proposito {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 24px;
}

.proposito h2 {
  color: var(--azul);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
}

.proposito h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--azul);
  margin-top: 1.6rem;
}

.proposito .lead {
  color: var(--azul);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ---------- Depoimentos ---------- */
.depoimentos {
  background: var(--azul);
  color: var(--branco);
  padding: 5.5rem 24px;
  text-align: center;
}

.depoimento { max-width: 760px; margin: 0 auto; display: none; }
.depoimento.ativo { display: block; }

.depoimento .autor { font-size: 1rem; margin-bottom: 1.4rem; }
.depoimento .autor::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin: 1.3rem auto 0;
}

.depoimento blockquote {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.depoimentos-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2.4rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--branco);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.dot.ativo { background: var(--branco); }

.seta {
  background: none;
  border: 0;
  color: var(--branco);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0 0.8rem;
  line-height: 1;
}

/* ---------- Blocos alternados (50/50) ---------- */
.blocos { display: flex; flex-direction: column; }

.bloco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 62vh;
}

.bloco .foto {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.bloco .conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4.5rem 9%;
}

.bloco .conteudo h2 {
  color: var(--azul);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.bloco .conteudo p { max-width: 52ch; margin-bottom: 1rem; }

.bloco .specs {
  list-style: none;
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.bloco.invertido .foto { order: 2; }
.bloco.invertido .conteudo { order: 1; }

.botao {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--azul);
  color: var(--azul);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.botao:hover { background: var(--azul); color: var(--branco); }

/* ---------- Página Sobre ---------- */
.secao-texto {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 24px 2rem;
}

.secao-texto h2 {
  color: var(--azul);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.secao-texto h2 + hr {
  border: 0;
  border-top: 2px solid var(--texto);
  margin-bottom: 2rem;
}

.secao-texto p { margin-bottom: 1.3rem; }

.tripulacao-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 24px 2.5rem;
}

.tripulacao-intro h2 {
  color: var(--azul);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tripulacao {
  background: var(--azul);
  padding: 4.5rem 24px 5rem;
}

.tripulacao-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 4rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.membro { color: var(--branco); }

.membro .foto-wrap { position: relative; }

.membro img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.membro .cartao {
  background: var(--branco);
  color: var(--texto);
  padding: 0.9rem 1.2rem;
  margin: -2.6rem 0 0 12%;
  position: relative;
  width: fit-content;
  min-width: 60%;
}

.membro .cartao h3 { color: var(--azul); font-size: 1.15rem; }
.membro .cartao p { font-size: 0.95rem; }

.membro .bio {
  margin-top: 1.6rem;
  font-size: 0.98rem;
  text-align: justify;
}

/* ---------- Números ---------- */
.numeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 24px;
  text-align: center;
}

.numeros .valor {
  color: var(--azul);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
}

.numeros .rotulo { text-transform: lowercase; }

/* ---------- Parceiros ---------- */
.parceiros {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 24px 6rem;
}

.parceiros h2 {
  color: var(--azul);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2.2rem;
  align-items: center;
}

.parceiros-grid img {
  max-height: 110px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

/* ---------- Contato ---------- */
.contato-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 24px 6rem;
}

.contato-wrap h2 {
  color: var(--azul);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.contato-grid h3 {
  color: var(--azul);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.contato-grid a { color: var(--texto); }
.contato-grid a:hover { color: var(--azul); }

.icones-sociais { display: flex; gap: 0.9rem; align-items: center; }
.icones-sociais a { color: var(--texto); display: inline-flex; }
.icones-sociais a:hover { color: var(--azul); }
.icones-sociais svg { width: 22px; height: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3.5rem 24px 2.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-inner .wordmark { font-size: 1.9rem; }

.footer-direita { text-align: right; }

.footer-direita .frase {
  border-bottom: 1px solid var(--azul);
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}

.footer-sociais { display: flex; gap: 0.7rem; justify-content: flex-end; }

.footer-sociais a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--texto);
  color: var(--branco);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-sociais a:hover { background: var(--azul); }
.footer-sociais svg { width: 17px; height: 17px; }

.copyright {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* ---------- Responsivo ---------- */
@media (max-width: 820px) {
  .logo-central { height: 48px; }

  .proposito { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 24px; }

  .bloco { grid-template-columns: 1fr; min-height: 0; }
  .bloco .foto { min-height: 300px; order: 0 !important; }
  .bloco .conteudo { order: 1 !important; padding: 3rem 24px; }

  .tripulacao-grid { grid-template-columns: minmax(0, 420px); }

  .numeros { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 24px; }

  .footer-inner { flex-direction: column; }
  .footer-direita { text-align: left; }
  .footer-sociais { justify-content: flex-start; }
}
