/* ============================================================
   Sanches Marcellino Advocacia — Folha de estilos principal
   Tema: luxo escuro — azul-marinho profundo + dourado.
   As barras da logo (azuis) entram como motivo decorativo.
   Tipografia: Manrope (títulos/corpo) + DM Sans (apoio)
   + Playfair Display itálico (detalhes elegantes).
   ============================================================ */

/* ---------- Variáveis de tema ---------- */
:root {
  /* Fundos escuros */
  --navy-950: #0A1220;   /* fundo principal da página */
  --navy-900: #0D1A2D;   /* seções alternadas */
  --navy-800: #122238;   /* painéis e cards */
  --navy-700: #1A2F4A;   /* bordas e superfícies elevadas */

  /* Azuis da logo (motivo de barras) */
  --blue-500: #4A73A8;
  --blue-400: #6E93C2;
  --blue-300: #AFC4DF;
  --blue-100: #DCE6F3;

  /* Dourado */
  --gold-500: #D9B36C;   /* dourado primário (CTAs, detalhes) */
  --gold-400: #E7C688;   /* hover / brilho */
  --gold-600: #B99146;   /* dourado profundo */

  /* Texto */
  --text: #EDF1F7;
  --text-soft: #A3B0C4;

  --whatsapp: #1faa53;
  --whatsapp-dark: #168442;
  --focus: #E7C688;

  --font-main: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-alt: "DM Sans", "Segoe UI", Arial, sans-serif;
  --font-script: "Playfair Display", Georgia, serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --line: rgba(175, 196, 223, 0.14);          /* linha sutil azulada */
  --line-gold: rgba(217, 179, 108, 0.35);     /* borda dourada sutil */
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-lift: 0 22px 50px rgba(0, 0, 0, 0.5);

  --header-h: 84px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  /* impede barra horizontal transitória durante as animações de entrada */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-alt);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--text);
}
h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.22rem; }

/* Detalhe elegante em itálico (estilo da referência) */
.accent-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }
a { color: var(--gold-500); }
a:hover { color: var(--gold-400); }

.container {
  width: min(1180px, 90%);
  margin-inline: auto;
}

.icon { width: 1.15em; height: 1.15em; vertical-align: -0.2em; margin-right: 0.45em; }

.eyebrow {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0.8rem 1.4rem;
  z-index: 400;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-anim] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-family: var(--font-main);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(217, 179, 108, 0.22); }
.btn:active { transform: translateY(0); }

/* Dourado com leve gradiente (CTA principal) */
.btn-primary {
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 55%, var(--gold-600) 100%);
  color: var(--navy-950);
}
.btn-primary:hover { background: linear-gradient(180deg, #F0D49C 0%, var(--gold-400) 60%, var(--gold-500) 100%); color: var(--navy-950); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-gold);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-400); background: rgba(217, 179, 108, 0.08); }

.btn-lg { padding: 1rem 2.3rem; font-size: 1.05rem; }
.btn-block { width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 18, 32, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: auto; height: 52px; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a:not(.btn) {
  display: block;
  padding: 0.6rem 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 0.93rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background-color 0.2s;
}
.nav-list a:not(.btn):hover { color: var(--gold-400); background: rgba(217, 179, 108, 0.07); }
.nav-cta { margin-left: 0.7rem; }
.nav-cta .btn { padding: 0.65rem 1.4rem; font-size: 0.92rem; }

/* Hambúrguer */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 78% 30%, rgba(74, 115, 168, 0.20), transparent 65%),
    radial-gradient(ellipse 55% 45% at 12% 85%, rgba(217, 179, 108, 0.08), transparent 60%),
    linear-gradient(175deg, var(--navy-900) 0%, var(--navy-950) 75%);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
}

/* Formas decorativas suaves */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 999px;
  background: var(--blue-500);
  opacity: 0.10;
}
.shape-1 { width: 420px; height: 46px; top: 14%; right: -140px; }
.shape-2 { width: 300px; height: 46px; top: calc(14% + 70px); right: -190px; background: var(--gold-500); opacity: 0.08; }
.shape-3 { width: 560px; height: 560px; bottom: -340px; left: -240px; border-radius: 50%; background: var(--blue-500); opacity: 0.08; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy h1 { margin-bottom: 0.5em; }
.hero-copy h1 .accent-script { display: block; font-size: 0.85em; margin-top: 0.15em; }
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 56ch;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-slogan {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-500);
  letter-spacing: 0.03em;
}

.hero-photo { position: relative; justify-self: center; width: min(100%, 440px); }
.hero-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift), 0 0 0 1px var(--line-gold);
  aspect-ratio: 4 / 5;
  background: #1c1c1f;
}
.hero-photo-card::after {
  /* funde a base da foto com o fundo escuro */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10, 18, 32, 0.55) 100%);
  pointer-events: none;
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* mantém o rosto visível em qualquer recorte */
  transition: transform 6s ease;
}
.hero-photo:hover .hero-photo-card img { transform: scale(1.05); }

.hero-badge {
  position: absolute;
  left: -1.6rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(13, 26, 45, 0.92);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-main);
  font-size: 0.88rem;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}
.hero-badge strong { font-size: 1.05rem; color: var(--gold-400); }

/* Barras decorativas (motivo da logo) */
.hero-bars {
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: -1;
}
.hero-bars i { width: 92px; height: 16px; border-radius: 4px; display: block; }
.hero-bars i:nth-child(1) { background: var(--blue-100); opacity: 0.5; }
.hero-bars i:nth-child(2) { background: var(--blue-300); opacity: 0.55; }
.hero-bars i:nth-child(3) { background: var(--blue-400); opacity: 0.6; }
.hero-bars i:nth-child(4) { background: var(--gold-500); opacity: 0.8; }

.stars { color: var(--gold-500); letter-spacing: 0.1em; }

/* ---------- Indicadores de confiança ---------- */
.trust {
  background: var(--navy-950);
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.trust-grid li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.4rem 1rem;
}
.trust-grid li + li { border-left: 1px solid var(--line); }
.trust-grid strong {
  font-family: var(--font-main);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: -0.01em;
}
.trust-grid span { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Seções ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-tint {
  background:
    radial-gradient(ellipse 50% 40% at 85% 10%, rgba(74, 115, 168, 0.10), transparent 60%),
    var(--navy-900);
}

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-lead { color: var(--text-soft); font-size: 1.08rem; }

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 470px) 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.about-media { position: sticky; top: calc(var(--header-h) + 28px); }
.media-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift), 0 0 0 1px var(--line-gold);
  aspect-ratio: 4 / 5;
  background: #1c1c1f;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* mantém o rosto visível em qualquer recorte */
  transition: transform 6s ease;
}
.about-media:hover .media-card img { transform: scale(1.05); }
.about-chip {
  margin: -2.2rem auto 0;
  position: relative;
  width: calc(100% - 2.4rem);
  background: rgba(13, 26, 45, 0.94);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-main);
  backdrop-filter: blur(8px);
}
.about-chip strong { font-size: 1rem; color: var(--gold-400); }
.about-chip span { color: var(--text-soft); font-size: 0.85rem; }

.about-copy p { color: var(--text-soft); text-align: justify; }
.about-copy strong { color: var(--text); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 2.2rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.9em;
  height: 0.45em;
  border-left: 2.5px solid var(--gold-500);
  border-bottom: 2.5px solid var(--gold-500);
  transform: rotate(-45deg);
}

/* ---------- Especialidades ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 1.6rem;
}
.area-card {
  position: relative;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s;
}
.area-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  background: rgba(217, 179, 108, 0.045);
  box-shadow: var(--shadow-soft);
}
.area-featured {
  border-color: var(--line-gold);
  background: linear-gradient(160deg, rgba(217, 179, 108, 0.08) 0%, rgba(255, 255, 255, 0.02) 60%);
}
.area-badge {
  position: absolute;
  top: -0.85rem;
  right: 1.3rem;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.area-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(217, 179, 108, 0.10);
  border: 1px solid var(--line-gold);
  color: var(--gold-500);
  margin-bottom: 1.1rem;
}
.area-icon svg { width: 26px; height: 26px; }
.area-card > p { color: var(--text-soft); font-size: 0.97rem; flex-grow: 1; }

.area-toggle {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0.4rem 0;
  color: var(--gold-500);
  font-family: var(--font-main);
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
}
.area-toggle:hover { color: var(--gold-400); text-decoration: underline; text-underline-offset: 4px; }
.area-toggle::after { content: " ↓"; font-size: 0.85em; }
.area-toggle[aria-expanded="true"]::after { content: " ↑"; }

.area-list {
  margin: 1rem 0 0;
  padding: 1rem 0 0 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.94rem;
}
.area-list li { margin-bottom: 0.4rem; }

/* ---------- Missão e valores ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}
.value-card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.8rem;
  transition: transform 0.3s, border-color 0.3s;
}
.value-card:hover { transform: translateY(-6px); border-color: var(--line-gold); }
.value-num {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-500);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.15rem; }
.value-card p { margin: 0; color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Avaliações ---------- */
.reviews-score {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-family: var(--font-main);
}
.reviews-score .stars { font-size: 1.25rem; }
.reviews-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.review-card {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--line-gold); box-shadow: var(--shadow-soft); }
.review-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.review-head div { flex-grow: 1; display: flex; flex-direction: column; line-height: 1.3; }
.review-head small { color: var(--text-soft); font-size: 0.8rem; }
.review-avatar {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(217, 179, 108, 0.14);
  border: 1px solid var(--line-gold);
  color: var(--gold-400);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.google-g {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blue-300);
}
.review-card .stars { margin: 0 0 0.6rem; }
.review-card blockquote {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* ---------- Artigos ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.article-card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.article-card:hover { transform: translateY(-6px); border-color: var(--line-gold); }
.article-tag {
  align-self: flex-start;
  background: rgba(217, 179, 108, 0.10);
  border: 1px solid var(--line-gold);
  color: var(--gold-400);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.article-card p { color: var(--text-soft); font-size: 0.96rem; flex-grow: 1; }
.article-link { font-family: var(--font-script); font-style: italic; color: var(--gold-500); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: var(--line-gold); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 3.2rem 1.2rem 1.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-500);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { color: var(--gold-400); }
.faq-item p { padding: 0 1.5rem 1.3rem; margin: 0; color: var(--text-soft); }

/* ---------- Contato ---------- */
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  background:
    radial-gradient(ellipse 60% 90% at 15% 10%, rgba(217, 179, 108, 0.10), transparent 60%),
    var(--navy-800);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.contact-cta h2 { margin-bottom: 0.3em; }
.contact-cta .section-lead { margin: 0; }

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 320px;
}
.contact-cta-buttons .btn { text-align: center; }

/* WhatsApp em destaque máximo (substitui o antigo formulário) */
.btn-whatsapp-big {
  background: linear-gradient(180deg, #27c063 0%, var(--whatsapp) 60%, var(--whatsapp-dark) 100%);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(31, 170, 83, 0.35);
}
.btn-whatsapp-big:hover {
  background: linear-gradient(180deg, #35d173 0%, #22b85c 60%, var(--whatsapp) 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(31, 170, 83, 0.45);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}
.contact-info {
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.contact-info h3 { margin-bottom: 1.2rem; }
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.contact-label {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.contact-list a { font-size: 1.05rem; font-weight: 500; color: var(--text); }
.contact-list a:hover { color: var(--gold-400); }

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: block;
}

/* ---------- Vídeos / Instagram + TikTok ---------- */
/* Cards compactos e centralizados para não ocupar tanto espaço na página */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 230px));
  justify-content: center;
  gap: 1.4rem;
}
.videos-sub {
  margin: 0 0 1.2rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-soft);
}
.videos-grid + .videos-sub { margin-top: 2.4rem; }
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-800);
  aspect-ratio: 9 / 16;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.video-card:hover { transform: translateY(-5px); border-color: var(--line-gold); box-shadow: var(--shadow-soft); }
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}
.videos-cta {
  margin: 2.4rem 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Parcerias ---------- */
.partners { padding: 3rem 0 4.5rem; border-top: 1px solid var(--line); background: var(--navy-950); }
.partners-title {
  text-align: center;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.6rem;
}
.partners-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
}
.partners-strip li,
.partners-strip a {
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--blue-300);
  text-decoration: none;
  opacity: 0.85;
}
.partners-strip a:hover { color: var(--gold-400); opacity: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: #081020;
  color: var(--text-soft);
  position: relative;
}
/* Faixa superior com o motivo de barras da logo */
.footer-bars { display: flex; height: 6px; }
.footer-bars i { flex: 1; display: block; }
.footer-bars i:nth-child(1) { background: var(--blue-100); }
.footer-bars i:nth-child(2) { background: var(--blue-300); }
.footer-bars i:nth-child(3) { background: var(--blue-400); }
.footer-bars i:nth-child(4) { background: var(--gold-500); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.8rem 0 2.6rem;
}
.footer-brand .brand-logo { height: 62px; width: auto; margin-bottom: 1.1rem; }
.footer-slogan {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--gold-500);
}
.footer-col h3 {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: var(--text-soft); text-decoration: none; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  font-size: 0.86rem;
}
.footer-bottom p { margin: 0 0 0.4rem; }
.footer-legal { opacity: 0.7; }

/* ---------- Botões flutuantes ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 150;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s, background-color 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--whatsapp-dark); color: #fff; }
.whatsapp-float svg { width: 32px; height: 32px; }

.back-to-top {
  position: fixed;
  right: 1.55rem;
  bottom: 6.2rem;
  z-index: 150;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s, background-color 0.25s;
}
.back-to-top:hover { transform: translateY(-3px); background: var(--navy-700); }
.back-to-top svg { width: 22px; height: 22px; }

/* ---------- Animações de entrada ---------- */
[data-anim] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
[data-anim="up"] { transform: translateY(28px); }
[data-anim="left"] { transform: translateX(36px); }
[data-anim="right"] { transform: translateX(-36px); }
[data-anim].is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsividade (desktop-first)
   ============================================================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { width: min(100%, 400px); margin-top: 1rem; }
  .hero-badge { left: 1rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { position: static; max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: var(--navy-950);
    padding: 1rem 1.4rem 1.6rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.55);
    display: none;
  }
  .nav-list.is-open { display: flex; }
  .nav-list a:not(.btn) { padding: 0.95rem 0.8rem; font-size: 1.05rem; }
  .nav-cta { margin: 0.8rem 0 0; }
  .nav-cta .btn { display: block; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 3.8rem 0; }
  .hero { padding: 3.2rem 0 3.6rem; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-badge { padding: 0.7rem 1rem; }
  .hero-bars { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid li + li { border-left: 0; }
  .contact-cta { flex-direction: column; align-items: flex-start; }
  .contact-cta-buttons { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 1.6rem; }
  .location-map iframe { height: 260px; }
  .brand-logo { height: 42px; }
}
