/* ============================================
   Design tokens — Coutinho (marca/design-guide.md)
   ============================================ */
:root {
  --bg: #0a0a0a;
  --bg-card-light: #ffffff;
  --red: #e31e24;
  --red-dark: #7a1418;
  --text-onDark: #ffffff;
  --text-onDark-soft: #c9c9c9;
  --text-onLight: #3d0c0c;
  --nav-bg: #1c1c1c;
  --line-onDark: #262626;

  --radius: 14px;
  --radius-sm: 8px;

  --font-display: "Anton", sans-serif;
  --font-body: "Jost", sans-serif;

  --container-w: 1080px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-onDark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 16px;
}
.eyebrow-light { color: var(--red); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 20px;
  text-wrap: balance;
}

.body-text {
  font-size: 1.02rem;
  color: var(--text-onDark-soft);
  max-width: 62ch;
  margin: 0 0 16px;
}

/* ============================================
   Nav — cinza escuro, fixo ao rolar
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line-onDark);
  z-index: 1000;
}

.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--text-onDark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--red); }
.nav-link-icon { font-size: 0.8em; opacity: 0.7; }

.nav-item { position: relative; display: flex; align-items: center; height: var(--nav-h); }

.nav-trigger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.nav-chevron {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 2px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scaleY(0.96);
  transform-origin: top center;
  min-width: 230px;
  padding: 10px 8px;
  background: #141414;
  border: 1px solid var(--red-dark);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55), 0 0 24px rgba(227, 30, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 1100;
}

.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) scaleY(1);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-onDark-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-link:hover {
  background: rgba(227, 30, 36, 0.12);
  color: var(--text-onDark);
}

.nav-link-whatsapp {
  --whatsapp: #25d366;
  background: var(--whatsapp);
  color: #06210f;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-link-whatsapp:hover {
  background: #2fe375;
  color: #06210f;
}

@media (max-width: 760px) {
  .nav-inner { padding: 0 16px; gap: 14px; }
  .nav-links {
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link { font-size: 0.85rem; white-space: nowrap; }
  .nav-link-whatsapp { padding: 8px 14px; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--line-onDark);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 32px;
}

.hero-copy { max-width: 560px; }

.hero-photo {
  position: relative;
  justify-self: end;
  width: min(100%, 340px);
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.05) brightness(0.82);
  opacity: 0.85;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 70% 35%, transparent 35%, var(--bg) 92%),
    linear-gradient(to top, var(--bg) 0%, transparent 30%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo {
    justify-self: center;
    width: min(55%, 220px);
    margin-top: 8px;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-onDark-soft);
  max-width: 56ch;
  margin: 0 0 36px;
}

/* ============================================
   Botões
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 0 0 rgba(227, 30, 36, 0);
}
.btn-primary:hover {
  background: #ff2b32;
  box-shadow: 0 0 28px rgba(227, 30, 36, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-onDark);
  border: 1px solid var(--line-onDark);
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

/* ============================================
   Sobre
   ============================================ */
.sobre {
  padding: 84px 0;
  border-bottom: 1px solid var(--line-onDark);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.sobre-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

.sobre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 760px) {
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-photo { aspect-ratio: 16 / 10; }
}

/* ============================================
   Placeholder blocks — a preencher depois
   ============================================ */
.placeholder-block {
  border: 1.5px dashed var(--red-dark);
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-onDark-soft);
  font-size: 0.85rem;
  padding: 20px;
}

/* ============================================
   Fatos — fundo claro (card), conforme guia
   ============================================ */
.fatos {
  padding: 72px 0;
  background: var(--bg-card-light);
  color: var(--text-onLight);
}
.fatos .eyebrow { color: var(--red); }

.fatos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ece4e4;
  border: 1px solid #ece4e4;
  border-radius: var(--radius);
  overflow: hidden;
}

.fato-card {
  background: var(--bg-card-light);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fato-valor {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--red);
  line-height: 1;
}

.fato-label {
  font-size: 0.86rem;
  color: var(--text-onLight);
  opacity: 0.75;
}

.fatos-nota {
  margin: 24px 0 0;
  font-size: 0.85rem;
  color: var(--text-onLight);
  opacity: 0.6;
}

@media (max-width: 760px) {
  .fatos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Canais
   ============================================ */
.canais {
  padding: 84px 0;
  border-bottom: 1px solid var(--line-onDark);
}

.canais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.canal-card {
  border-radius: var(--radius);
  padding: 28px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 110px;
  justify-content: center;
}

.canal-nome {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-onDark);
  text-transform: uppercase;
}

.canal-desc {
  font-size: 0.82rem;
  color: var(--text-onDark-soft);
}

@media (max-width: 760px) {
  .canais-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Contato
   ============================================ */
.contato { padding: 88px 0 96px; }

.contato-inner { max-width: 640px; }

.contato-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

/* ============================================
   Rodapé
   ============================================ */
.rodape {
  border-top: 1px solid var(--line-onDark);
  padding: 28px 0;
}

.rodape-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-onDark-soft);
}

.rodape-inner a { text-decoration: none; }
.rodape-inner a:hover { color: var(--red); }

/* ============================================
   Acessibilidade
   ============================================ */
a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
