/* ==========================================================================
   Valone Advocacia — Folha de Estilos Institucional
   Identidade: Slate Navy (#141f2d, #0e1620) & Champagne Gold (#D6B58A, #AA7D5A)
   Design: Editorial, Luxuoso, Responsivo e Sem Sobreposições
   ========================================================================== */

/* ==================== 1. DESIGN TOKENS ==================== */
:root {
  --navy: #162130;
  --navy-2: #1c2a3d;
  --navy-3: #111a26;
  --navy-dark: #0b1119;
  --navy-card: #182434;

  --gold: #D6B58A;
  --gold-dk: #AA7D5A;
  --gold-lt: #f3e5d3;
  --gold-glow: rgba(214, 181, 138, 0.25);

  --white: #FAF8F5;
  --cream: #EDE8DE;
  --muted: #A3B3C2;
  --muted2: #6E7F91;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sub: 'Raleway', var(--sans);

  --tr: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;
}

/* ==================== 2. RESET & BASICS ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background-color: var(--navy-dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--tr), background-color var(--tr), border-color var(--tr), transform var(--tr);
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

/* ==================== 3. TIPOGRAFIA ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 4.8vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

/* ==================== 4. LAYOUT & UTILITÁRIOS ==================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.gold-line {
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.8rem 0 1.4rem 0;
}

.lead {
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.7;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--tr);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #0b1119;
  border: 1px solid var(--gold);
  box-shadow: 0 6px 20px rgba(214, 181, 138, 0.22);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(214, 181, 138, 0.35);
  color: #000;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 181, 138, 0.5);
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(214, 181, 138, 0.12);
  border-color: var(--gold);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

/* ==================== 5. TOP BAR ==================== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: rgba(11, 17, 25, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(214, 181, 138, 0.12);
  transition: transform var(--tr);
}

.top-bar.top-bar-hidden {
  transform: translateY(-100%);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.top-bar-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.top-bar-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
  transition: color var(--tr);
}

.top-bar-nav a svg {
  stroke: var(--muted);
  transition: stroke var(--tr);
}

.top-bar-nav a:hover {
  color: var(--gold);
}

.top-bar-nav a:hover svg {
  stroke: var(--gold);
}

.top-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(214, 181, 138, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(214, 181, 138, 0.4);
  transition: all var(--tr);
}

.top-bar-cta:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

/* ==================== 6. HEADER PRINCIPAL ==================== */
#hdr {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  transition: top var(--tr), background-color var(--tr), box-shadow var(--tr), border-color var(--tr);
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

#hdr.solid {
  background-color: rgba(14, 22, 32, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(214, 181, 138, 0.12);
}

.hdr-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.hdr-logo {
  display: flex;
  align-items: center;
  height: 44px;
}

.hdr-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.hdr-nav {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.hdr-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}

.hdr-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--tr);
}

.hdr-nav a:hover {
  color: var(--gold);
}

.hdr-nav a:hover::after {
  width: 100%;
}

.hdr-cta {
  padding: 0.65rem 1.6rem;
  font-size: 0.8rem;
}

.hdr-ham {
  display: none;
  width: 32px;
  height: 22px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1002;
  cursor: pointer;
}

.hdr-ham span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all var(--tr);
}

.hdr-ham.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hdr-ham.open span:nth-child(2) { opacity: 0; }
.hdr-ham.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ==================== 7. MOBILE SIDEBAR ==================== */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 85vw;
  background-color: var(--navy-3);
  border-left: 1px solid rgba(214, 181, 138, 0.2);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 14, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}

.sidebar-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-header img {
  height: 32px;
  width: auto;
}

.sidebar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  transition: background var(--tr), color var(--tr);
}

.sidebar-close:hover {
  background: rgba(214, 181, 138, 0.15);
  color: var(--gold);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  flex-grow: 1;
  overflow-y: auto;
}

.sidebar-link {
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  border-left: 3px solid transparent;
  transition: all var(--tr);
}

.sidebar-link:hover {
  border-left-color: var(--gold);
  background: rgba(214, 181, 138, 0.06);
  color: var(--gold);
  padding-left: 32px;
}

.sidebar-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}

.sidebar-cta {
  width: 100%;
  margin-bottom: 20px;
}

.sidebar-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.sidebar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--tr);
}

.sidebar-social a svg {
  width: 20px;
  height: 20px;
  stroke: var(--muted);
  transition: stroke var(--tr);
}

.sidebar-social a:hover {
  background: rgba(214, 181, 138, 0.15);
  border-color: var(--gold);
}

.sidebar-social a:hover svg {
  stroke: var(--gold);
}

/* ==================== 8. HERO FULLSCREEN ==================== */
.hero-fullscreen {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 135px 0 85px 0;
  background-color: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  background-color: var(--navy-dark);
}

.hero-bg-img {
  position: absolute;
  right: 2%;
  top: 0;
  width: 52%;
  max-width: 760px;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: brightness(0.92) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--navy-dark) 0%,
    var(--navy-dark) 44%,
    rgba(11, 17, 25, 0.88) 58%,
    rgba(11, 17, 25, 0.2) 78%,
    rgba(11, 17, 25, 0.55) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-dark) 0%, rgba(11, 17, 25, 0) 30%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

/* Kicker Tradicional / Nobre (Substitui o badge arredondado com bolinha) */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.6rem;
}

.kicker-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.kicker-text {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.hero-h1 {
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

.hero-sub {
  color: var(--cream);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-sub strong {
  color: var(--white);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-trust-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214, 181, 138, 0.1);
  border: 1px solid rgba(214, 181, 138, 0.25);
}

.hero-trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

/* Focos de Atuação Estruturados (Design Editorial Humano e Elegante) */
.hero-focos {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(214, 181, 138, 0.22);
  max-width: 640px;
}

.focos-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.1rem;
}

.focos-title {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.focos-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 181, 138, 0.3), transparent);
}

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

.foco-card {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  background: rgba(18, 27, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  transition: all var(--tr);
}

.foco-card:hover {
  background: rgba(214, 181, 138, 0.1);
  border-color: rgba(214, 181, 138, 0.4);
  transform: translateY(-2px);
}

.foco-num {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.foco-body strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 3px;
}

.foco-body span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
}

/* Indicador de Scroll */
.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted2);
  pointer-events: none;
}

.hero-scroll-line {
  width: 1px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--gold);
  animation: scrollLine 2.2s infinite ease-in-out;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ==================== 9. FAIXA MANIFESTO ==================== */
#manifesto {
  background: linear-gradient(90deg, #0e1620 0%, #172435 50%, #0e1620 100%);
  padding: 44px 0;
  border-top: 1px solid rgba(214, 181, 138, 0.15);
  border-bottom: 1px solid rgba(214, 181, 138, 0.15);
}

.manifesto-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.manifesto-icon {
  margin-bottom: 14px;
}

.manifesto-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  color: var(--gold-lt);
  max-width: 820px;
  line-height: 1.4;
  margin: 0;
}

/* ==================== 10. SEÇÃO SOBRE O ESCRITÓRIO ==================== */
#sobre {
  background-color: var(--navy);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 70px;
  align-items: center;
}

.sobre-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(214, 181, 138, 0.2);
}

.sobre-photo-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.sobre-photo-wrap:hover img {
  transform: scale(1.03);
}

.sobre-photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 17, 25, 0.95), transparent);
  padding: 40px 24px 20px;
  display: flex;
  flex-direction: column;
}

.sobre-photo-badge strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
}

.sobre-photo-badge span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sobre-text h2 {
  margin-bottom: 1.4rem;
}

.sobre-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
  background: rgba(214, 181, 138, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.sobre-quote p {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.4;
  margin: 0;
}

.sobre-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sobre-stat {
  display: flex;
  flex-direction: column;
}

.sobre-stat strong {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 700;
}

.sobre-stat span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ==================== 11. SEÇÃO ÁREAS DE ATUAÇÃO ==================== */
#areas {
  background-color: var(--navy-dark);
}

.areas-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.areas-header h2 {
  margin-bottom: 0.8rem;
}

.areas-header p {
  max-width: 620px;
  font-size: 1.05rem;
}

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

.svc {
  background-color: var(--navy-card);
  border-radius: var(--radius);
  padding: 42px 32px;
  position: relative;
  transition: all var(--tr);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.svc:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 181, 138, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(214, 181, 138, 0.08);
}

.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.svc-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 181, 138, 0.1);
  border: 1px solid rgba(214, 181, 138, 0.25);
  border-radius: var(--radius-sm);
}

.svc-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}

.svc-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: rgba(214, 181, 138, 0.25);
  line-height: 1;
  font-weight: 700;
}

.svc h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
  color: var(--white);
}

.svc p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.svc-cases-box {
  background-color: rgba(11, 17, 25, 0.7);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold);
  margin-bottom: 26px;
  flex-grow: 1;
}

.svc-cases-box strong {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.svc-cases-box span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  display: block;
}

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--tr), color var(--tr);
}

.svc-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  transition: transform var(--tr);
}

.svc:hover .svc-arrow {
  color: var(--gold-lt);
}

.svc:hover .svc-arrow svg {
  transform: translateX(5px);
}

/* ==================== 12. FAIXA DE CITAÇÃO ==================== */
#quote-band {
  background: radial-gradient(circle at center, #1b2838 0%, var(--navy-dark) 75%);
  padding: 100px 0;
  border-top: 1px solid rgba(214, 181, 138, 0.12);
  border-bottom: 1px solid rgba(214, 181, 138, 0.12);
  text-align: center;
}

.quote-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 5.5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.6;
  margin-bottom: 20px;
  user-select: none;
}

.quote-content blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 24px;
}

.quote-cite {
  display: block;
  font-size: 0.88rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 32px;
}

/* ==================== 13. SEÇÃO DE AVALIAÇÕES ==================== */
#avaliacoes {
  background-color: var(--navy);
}

.av-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.av-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.av-card {
  background-color: var(--navy-card);
  padding: 38px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--tr), border-color var(--tr);
}

.av-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 181, 138, 0.3);
}

.av-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.av-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--gold);
}

.av-text {
  font-style: italic;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 28px;
  flex-grow: 1;
}

.av-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.av-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(214, 181, 138, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  border: 1px solid rgba(214, 181, 138, 0.4);
}

.av-info strong {
  display: block;
  font-size: 0.96rem;
  color: var(--white);
  margin-bottom: 2px;
}

.av-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ==================== 14. SEÇÃO FAQ ==================== */
#faq {
  background-color: var(--navy-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
}

.faq-left h2 {
  margin-bottom: 1.2rem;
}

.faq-left p {
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Heading semântico h3 para SEO/AEO — sem impacto visual */
.faq-q-heading {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
}

/* Link de autoridade dentro das respostas do FAQ */
.faq-ans a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-ans a:hover {
  color: var(--gold-lt);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  gap: 18px;
  transition: color var(--tr);
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 181, 138, 0.3);
  border-radius: 50%;
  background: rgba(214, 181, 138, 0.05);
  transition: all var(--tr);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  transition: transform var(--tr);
}

.faq-q.open {
  color: var(--gold);
}

.faq-q.open .faq-icon {
  background-color: var(--gold);
  border-color: var(--gold);
}

.faq-q.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: var(--navy-dark);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.faq-ans.open {
  max-height: 600px;
}

.faq-ans p {
  padding-bottom: 24px;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== 15. SEÇÃO DE CONTATO ==================== */
#contato {
  background-color: var(--navy);
}

.contato-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 60px;
  align-items: start;
}

.contato-card-box {
  background-color: var(--navy-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(214, 181, 138, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.contato-photo-holder {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.contato-photo-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.contato-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-card) 5%, rgba(14, 22, 32, 0.4) 60%, transparent);
}

.contato-photo-title {
  position: absolute;
  bottom: 16px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
}

.contato-photo-title strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
}

.contato-photo-title span {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-info {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(214, 181, 138, 0.1);
  border: 1px solid rgba(214, 181, 138, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}

.ci-text strong {
  display: block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 2px;
}

.ci-text span, .ci-text a {
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.5;
}

.ci-text a:hover {
  color: var(--gold);
}

.contato-form-card {
  background-color: var(--navy-card);
  border-radius: var(--radius);
  padding: 44px 38px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.contato-form-card h2 {
  margin-bottom: 0.8rem;
}

.contato-sub {
  margin-bottom: 28px;
  font-size: 0.96rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: rgba(11, 17, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.94rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.form-group select option {
  background-color: var(--navy-dark);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 181, 138, 0.18);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted2);
}

.form-note svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

/* ==================== 16. SEÇÃO DE LOCALIZAÇÃO (NOVA) ==================== */
#localizacao {
  background-color: var(--navy-dark);
}

.loc-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loc-header h2 {
  margin-bottom: 0.6rem;
}

.loc-header-sub {
  max-width: 580px;
  font-size: 1rem;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(214, 181, 138, 0.2);
}

.loc-map {
  width: 100%;
  min-height: 420px;
  background-color: var(--navy-2);
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

.loc-card {
  background-color: var(--navy-card);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loc-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.loc-card-item:first-child {
  padding-top: 0;
}

.loc-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
}

.loc-card-text strong {
  display: block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}

.loc-card-text p {
  color: var(--cream);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

.loc-card-text a:hover {
  color: var(--gold);
}

.loc-btn {
  width: 100%;
  margin-top: 28px;
}

/* ==================== 17. RODAPÉ INSTITUCIONAL ==================== */
footer {
  background-color: #080c12;
  padding: 70px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.foot-logo img {
  height: 38px;
  width: auto;
}

.foot-nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.foot-nav a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.foot-nav a:hover {
  color: var(--gold);
}

.foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr);
}

.foot-social a svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
}

.foot-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.foot-social a:hover svg {
  stroke: var(--navy-dark);
}

.foot-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.06);
  margin: 32px 0 24px;
}

.foot-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted2);
}

.foot-legal p {
  margin: 0;
  color: var(--muted2);
}

.foot-legal p.ethical {
  font-style: italic;
  color: var(--muted);
}

/* ==================== 18. ELEMENTOS FLUTUANTES ==================== */
#wpp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
}

.wpp-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #1eac52 100%);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform var(--tr), box-shadow var(--tr);
}

.wpp-a::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: pulse 2.4s infinite;
}

.wpp-a:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

.wpp-tip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--navy-3);
  border: 1px solid rgba(214, 181, 138, 0.3);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.wpp-tip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--navy-3);
}

.wpp-a:hover .wpp-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

#btt {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 44px;
  height: 44px;
  background-color: var(--navy-card);
  border: 1px solid rgba(214, 181, 138, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 989;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--tr);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

#btt svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

#btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#btt:hover {
  background-color: var(--gold);
  border-color: var(--gold);
}

#btt:hover svg {
  stroke: var(--navy-dark);
}

/* ==================== 19. MODAIS DE ÁREAS ==================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--navy-card);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius);
  padding: 46px 40px;
  position: relative;
  transform: translateY(24px);
  transition: transform var(--tr);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(214, 181, 138, 0.3);
}

.modal-backdrop.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.5rem;
  color: var(--muted);
  transition: all var(--tr);
}

.modal-close:hover {
  background: rgba(214, 181, 138, 0.15);
  color: var(--gold);
}

.modal-eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
}

.modal-title {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.modal-desc {
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.modal-cases-title {
  font-size: 0.94rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 14px;
}

.modal-cases-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-cases-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cream);
  font-size: 0.92rem;
  line-height: 1.5;
}

.modal-cases-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-actions {
  display: flex;
  gap: 16px;
}

/* ==================== 20. TELA DE LOADER ==================== */
#loader {
  position: fixed;
  inset: 0;
  background-color: var(--navy-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#loader.out {
  opacity: 0;
  pointer-events: none;
}

#loader-logo {
  height: 42px;
  width: auto;
  margin-bottom: 24px;
}

#loader-bar {
  width: 180px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

#loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold));
  transition: width 0.3s ease;
}

/* ==================== 21. ANIMAÇÕES DE REVELAÇÃO ==================== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ==================== 22. CURSOR PERSONALIZADO (DESKTOP) ==================== */
.custom-cursor body {
  cursor: none;
}
.custom-cursor a, .custom-cursor button, .custom-cursor .svc, .custom-cursor .faq-q {
  cursor: none;
}

#cur-dot, #cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#cur-dot {
  width: 7px;
  height: 7px;
  background-color: var(--gold);
  transition: transform 0.08s ease;
}

#cur-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease;
}

.cur-hov #cur-ring {
  width: 56px;
  height: 56px;
  background-color: rgba(214, 181, 138, 0.12);
}

.cur-dn #cur-ring {
  width: 26px;
  height: 26px;
}

@media (max-width: 1024px) {
  #cur-dot, #cur-ring { display: none !important; }
  .custom-cursor body, .custom-cursor a, .custom-cursor button, .custom-cursor .svc, .custom-cursor .faq-q { cursor: auto !important; }
}

/* ==================== 23. RESPONSIVIDADE & MEDIA QUERIES ==================== */
@media (max-width: 1100px) {
  .sobre-grid {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }
  .sobre-photo-wrap img {
    height: 500px;
  }
  .contato-grid {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }
  .faq-grid {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }
}

@media (max-width: 980px) {
  .areas-grid, .av-layout {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  /* Top Bar & Header */
  .top-bar {
    display: none;
  }
  #hdr {
    top: 0 !important;
    height: 70px;
    background-color: rgba(11, 17, 25, 0.95);
    border-bottom: 1px solid rgba(214, 181, 138, 0.15);
  }
  .hdr-nav, .hdr-cta {
    display: none;
  }
  .hdr-ham {
    display: flex;
  }

  /* Hero */
  .hero-fullscreen {
    padding: 95px 0 60px 0;
    min-height: auto;
  }
  .hero-bg-img {
    width: 100%;
    right: 0;
    object-position: center 10%;
    opacity: 0.28;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(11, 17, 25, 0.88) 0%,
      rgba(14, 22, 32, 0.85) 60%,
      rgba(11, 17, 25, 0.98) 100%
    );
  }
  .hero-h1 {
    font-size: 2.3rem;
  }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-scroll {
    display: none;
  }
  .focos-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .foco-card {
    padding: 12px 14px;
  }

  /* Sobre */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sobre-photo-wrap img {
    height: 380px;
  }
  .sobre-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Contato */
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contato-form-card {
    padding: 30px 20px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  .form-submit-row .btn {
    width: 100%;
  }

  /* Localização */
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .loc-map {
    min-height: 280px;
  }
  .loc-map iframe {
    min-height: 280px;
  }
  .loc-card {
    padding: 32px 24px;
  }

  /* Rodapé */
  .foot-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .foot-nav {
    justify-content: center;
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 55px 0;
  }
  .container {
    padding: 0 18px;
  }
  .hero-h1 {
    font-size: 1.95rem;
  }
  .svc {
    padding: 30px 20px;
  }
  .av-card {
    padding: 28px 20px;
  }
  .modal-content {
    padding: 34px 20px;
  }
}
