/* ========================================
   Bruno Araújo Advocacia — Design System
   Paleta: marinho #0E1327 + dourado #DFA53A + creme #F5F2EB
   Tipografia: Cormorant Garamond + Inter
   ======================================== */

:root {
  --marinho: #0E1327;
  --marinho-2: #1A2347;
  --marinho-3: #2C3458;
  --gold: #DFA53A;
  --gold-light: #E8C572;
  --gold-deep: #B8862E;
  --creme: #F5F2EB;
  --creme-2: #EAE5DD;
  --white: #FFFFFF;
  --text-light: #F5F2EB;
  --text-light-muted: #B8B3AA;
  --text-dark: #0E1327;
  --text-dark-muted: #6B6B6B;
  --border-dark: rgba(223, 165, 58, 0.18);
  --border-light: rgba(14, 19, 39, 0.12);
  --whats: #25D366;
  --whats-hover: #1ebe5a;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1200px;
  --pad-x: clamp(20px, 5vw, 48px);
  --section-y: clamp(60px, 9vw, 110px);
  --radius: 4px;
  --radius-lg: 12px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ========== TIPOGRAFIA ========== */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
}

h4 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--text-dark-muted);
  max-width: 60ch;
}

/* ========== LAYOUT ========== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-dark {
  background: var(--marinho);
  color: var(--text-light);
}

.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--text-light); }
.section-dark .lead { color: var(--text-light-muted); }

.section-cream { background: var(--creme); }
.section-white { background: var(--white); }

.divider-gold {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 28px 0;
}

.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 19, 39, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 72px;
  width: auto;
  border-radius: 6px;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-logo-text .name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.navbar-logo-text .sub {
  font-size: 11px;
  color: var(--text-light-muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-menu a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.navbar-menu a:hover { color: var(--gold); }
.navbar-menu a.active { color: var(--gold); }

.navbar-menu li.has-dropdown { position: relative; }

.navbar-menu .dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--marinho);
  border: 1px solid var(--border-dark);
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  list-style: none;
  margin-top: 8px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li { display: block; }
.dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown a:hover { background: var(--marinho-2); color: var(--gold); }

.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--marinho) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  flex-shrink: 0;
}

.navbar-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(223, 165, 58, 0.3);
}

/* Mobile burger */
.navbar-burger {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 200;
}

.navbar-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px auto;
  transition: all var(--transition);
}

.navbar-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-burger.open span:nth-child(2) { opacity: 0; }
.navbar-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--marinho);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(223, 165, 58, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--marinho);
}

.btn-outline-marinho {
  background: transparent;
  color: var(--marinho);
  border-color: var(--marinho);
}

.btn-outline-marinho:hover {
  background: var(--marinho);
  color: var(--gold);
}

.btn-whats {
  background: var(--whats);
  color: var(--white);
  border-color: var(--whats);
}
.btn-whats svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-whats.btn-large svg { width: 22px; height: 22px; }

.btn-whats:hover {
  background: var(--whats-hover);
  border-color: var(--whats-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.btn-large {
  padding: 20px 40px;
  font-size: 15px;
}

/* ========== HERO ========== */
.hero {
  background: var(--marinho);
  color: var(--text-light);
  padding-top: clamp(120px, 14vw, 150px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(223, 165, 58, 0.08), transparent 70%);
  pointer-events: none;
}

.hero > .container {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: stretch;
  position: relative;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: clamp(40px, 6vw, 64px);
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 24px;
}

.hero h1 .gold-accent {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-light-muted);
  max-width: 56ch;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.hero-image img {
  width: auto;
  height: 100%;
  max-height: calc(100vh - 130px);
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.55));
  position: relative;
  z-index: 2;
  display: block;
}

.hero-image::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 95%;
  height: 80%;
  background: radial-gradient(ellipse at center bottom, rgba(223, 165, 58, 0.22), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-image::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}

/* Subhero (interior pages) */
.subhero {
  background: var(--marinho);
  color: var(--text-light);
  padding-top: clamp(120px, 14vw, 150px);
  padding-bottom: clamp(50px, 7vw, 80px);
  text-align: center;
}

.subhero .eyebrow { color: var(--gold); }
.subhero h1 { max-width: 18ch; margin: 0 auto; color: var(--text-light); }

.subhero-breadcrumb {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-top: 24px;
  letter-spacing: 0.5px;
}

.subhero-breadcrumb a:hover { color: var(--gold); }

/* Subhero LP (Landing Page style — headline + sub + CTA + trust em uma dobra) */
.subhero-lp {
  background: var(--marinho);
  color: var(--text-light);
  padding-top: clamp(130px, 15vw, 170px);
  padding-bottom: clamp(60px, 8vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subhero-lp::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 162, 75, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 162, 75, 0.10), transparent 60%);
  pointer-events: none;
}
.subhero-lp > .container { position: relative; z-index: 2; max-width: 880px; }
.subhero-lp .eyebrow { color: var(--gold); }
.subhero-lp h1 {
  color: var(--text-light);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 14px auto 22px;
  max-width: 20ch;
}
.subhero-lp .lp-sub {
  color: var(--text-light-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 36px;
}
.subhero-lp .lp-cta {
  display: inline-flex;
  margin-bottom: 28px;
}
.subhero-lp .lp-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--text-light-muted);
  margin-top: 8px;
}
.subhero-lp .lp-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.subhero-lp .lp-trust svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.subhero-lp .subhero-breadcrumb { margin-top: 28px; }

@media (max-width: 640px) {
  .subhero-lp .lp-cta .btn { width: 100%; }
  .subhero-lp .lp-trust { gap: 8px 18px; font-size: 12px; }
}

/* ========== STATS ========== */
.stats {
  background: var(--creme-2);
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border-light);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--marinho);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .gold { color: var(--gold); }

.stat-label {
  font-size: 13px;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Container largo (home — seção áreas com 3+4 cards) */
.container-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 36px);
  padding-right: clamp(20px, 4vw, 36px);
}

/* ========== AREAS GRID ========== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Variante home — 3 cards em cima + 4 cards embaixo, centralizados */
.areas-grid--3-4 {
  grid-template-columns: repeat(12, 1fr);
  justify-items: stretch;
}
.areas-grid--3-4 > .area-card:nth-child(-n+3) { grid-column: span 4; }
.areas-grid--3-4 > .area-card:nth-child(n+4)  { grid-column: span 3; }

.area-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.section-dark .area-card {
  background: var(--marinho-2);
  border-color: var(--border-dark);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(14, 19, 39, 0.12);
  border-color: var(--gold);
}

.section-dark .area-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.area-card:hover::before { transform: scaleX(1); }

.area-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223, 165, 58, 0.12);
  border-radius: var(--radius);
  color: var(--gold);
}

.area-card-icon svg { width: 24px; height: 24px; }

.area-card h3 {
  font-size: 22px;
  margin: 0;
}

.section-dark .area-card h3 { color: var(--text-light); }

.area-card p {
  font-size: 15px;
  color: var(--text-dark-muted);
  margin: 0;
  line-height: 1.6;
}

.section-dark .area-card p { color: var(--text-light-muted); }

.area-card-link {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.area-card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.area-card:hover .area-card-link::after { transform: translateX(4px); }

/* ========== AUTORIDADE / DIFERENCIAIS ========== */
.diff-title {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 0;
}
.diff-title br { display: inline; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.diff-item {
  text-align: left;
}

.diff-item .num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.diff-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.diff-item p {
  font-size: 15px;
  color: var(--text-light-muted);
  line-height: 1.7;
}

/* Diferenciais — variante card moderno (home) */
.diff-grid--cards { gap: 24px; }
.diff-grid--cards .diff-item {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(201, 162, 75, 0.18);
  border-radius: 18px;
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s, box-shadow .35s, background .35s;
}
.diff-grid--cards .diff-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201, 162, 75, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.diff-grid--cards .diff-item:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 75, 0.5);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,162,75,0.1);
}
.diff-grid--cards .diff-item:hover::before { opacity: 1; }

.diff-grid--cards .num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 64px;
  margin: 0;
  color: var(--gold);
  opacity: 0.10;
  font-weight: 700;
  letter-spacing: -2px;
  transition: opacity .35s, transform .35s;
  pointer-events: none;
}
.diff-grid--cards .diff-item:hover .num {
  opacity: 0.22;
  transform: translateY(-2px);
}

.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,162,75,0.18), rgba(201,162,75,0.05));
  border: 1px solid rgba(201, 162, 75, 0.30);
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.diff-icon svg { width: 26px; height: 26px; }
.diff-grid--cards .diff-item:hover .diff-icon {
  transform: scale(1.08) rotate(-3deg);
}

.diff-grid--cards h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}
.diff-grid--cards p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light-muted);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ========== MISSÃO / VISÃO / VALORES (alinhados em 3 colunas) ========== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.mvv-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
  position: relative;
}
.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(13, 27, 51, 0.18);
}
.mvv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,162,75,0.16), rgba(201,162,75,0.04));
  border: 1px solid rgba(201, 162, 75, 0.28);
  color: var(--gold);
  margin-bottom: 24px;
}
.mvv-icon svg { width: 26px; height: 26px; }
.mvv-card .eyebrow { margin-bottom: 10px; }
.mvv-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--marinho);
}
.mvv-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark-muted, #5a6470);
  margin: 0;
}
.mvv-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mvv-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--marinho);
}
.mvv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

@media (max-width: 1024px) {
  .mvv-grid { grid-template-columns: 1fr; gap: 20px; }
  .mvv-card { padding: 32px 26px; }
}

/* ========== ABOUT BLOCK ========== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-image-wrap {
  position: sticky;
  top: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  align-self: start;
}

.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -16px -16px auto auto;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* ========== SERVICES (area pages) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-item {
  background: var(--white);
  padding: 32px;
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-dark .service-item {
  background: var(--marinho-2);
  border-left-color: var(--gold);
}

.service-item h3 {
  font-size: 20px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-item p {
  font-size: 15px;
  color: var(--text-dark-muted);
  margin: 0;
  line-height: 1.6;
}

.section-dark .service-item p { color: var(--text-light-muted); }

/* ========== CTA SECTION ========== */
.cta-section {
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(201, 162, 75, 0.20) 0%, rgba(201, 162, 75, 0.06) 40%, transparent 75%),
    linear-gradient(110deg, #0E1327 0%, #0E1327 70%, #1a1d2e 90%, #2a2419 100%);
  color: var(--text-light);
  padding: clamp(64px, 9vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 50%, rgba(201, 162, 75, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section > .container { position: relative; z-index: 2; }

.cta-section h2 {
  color: var(--text-light);
  max-width: 22ch;
  margin: 0 auto 20px;
}

.cta-section p {
  color: var(--text-light-muted);
  max-width: 50ch;
  margin: 0 auto 32px;
  font-size: 17px;
}

.cta-section .btn { position: relative; z-index: 2; }

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(14, 19, 39, 0.12);
  border-color: var(--gold);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--marinho);
}

.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.blog-card h3 { font-size: 22px; line-height: 1.25; }

.blog-card p {
  font-size: 15px;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin: 0;
}

.blog-card-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--marinho);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card:hover .blog-card-link { color: var(--gold); }

/* Blog post body */
.post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dark);
}

.post-body h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 32px);
}

.post-body h3 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
}

.post-body p { margin-bottom: 20px; }

.post-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.post-body ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.post-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 12px; height: 1px;
  background: var(--gold);
}

.post-body strong { color: var(--marinho); font-weight: 700; }

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(223, 165, 58, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-info-icon svg { width: 22px; height: 22px; }

.contact-info-item h3 {
  font-family: var(--sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-item p {
  font-size: 17px;
  margin: 0;
  color: var(--text-light);
}

.contact-info-item a:hover { color: var(--gold); }

.form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--marinho);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--creme);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--marinho);
  transition: all var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--sans);
}

.form-disclaimer {
  font-size: 12px;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

/* ========== FOOTER ========== */
.footer {
  background: #080A1A;
  color: var(--text-light-muted);
  padding: 72px 0 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-col-logo img {
  height: 168px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .footer-col-logo img { height: 120px; }
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-light-muted);
}

.footer-col ul a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--marinho);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-light-muted);
}

.footer-bottom a:hover { color: var(--gold); }

/* ========== WHATSAPP FLOAT ========== */
.whats-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whats);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition);
  animation: pulse 2s infinite;
}

.whats-float:hover {
  background: var(--whats-hover);
  transform: scale(1.08);
}

.whats-float svg { width: 30px; height: 30px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 360px;
  background: var(--marinho);
  color: var(--text-light);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  z-index: 98;
  display: none;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner.show { display: block; }

.cookie-banner p { margin-bottom: 14px; color: var(--text-light-muted); }

.cookie-banner button {
  background: var(--gold);
  color: var(--marinho);
  border: none;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-banner button:hover { background: var(--gold-light); }

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }

/* Fade-in only activates when JS adds .js-fade — keeps SSR/no-JS visible by default */
.js-fade .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hero entry animation — foto + info descem juntos ===== */
@keyframes heroDescend {
  0%   { opacity: 0; transform: translateY(-60px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero .hero-content,
.hero .hero-image {
  animation: heroDescend 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero .hero-content { animation-delay: 0.15s; }
.hero .hero-image   { animation-delay: 0.30s; }
.hero .hero-image img {
  animation: heroFloat 6s ease-in-out 1.6s infinite;
  will-change: transform;
}

/* Foto da seção "Sobre" também sobe e desce continuamente */
.about-image-wrap img {
  animation: heroFloat 6s ease-in-out infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .about-image-wrap img { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero-content,
  .hero .hero-image,
  .hero .hero-image img { animation: none !important; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-bottom: 0; }
  .hero > .container { padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-content { padding-bottom: 0; text-align: center; }
  .hero-content .lead, .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-image { min-height: 460px; max-width: 520px; margin: 0 auto; }
  .hero-image img { max-height: 60vh; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid--3-4 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid--3-4 > .area-card:nth-child(-n+3),
  .areas-grid--3-4 > .area-card:nth-child(n+4) { grid-column: span 1; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap {
    max-width: 480px;
    margin: 0 auto;
    position: relative !important;
    top: auto !important;
  }
  .diff-grid--cards { grid-template-columns: repeat(2, 1fr); }
  .diff-grid--cards .num { font-size: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar-burger { display: block; }
  .navbar-cta { display: none; }
  .navbar-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--marinho);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 8px;
    border-left: 1px solid var(--border-dark);
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 150;
  }
  .navbar-menu.open { right: 0; }
  .navbar-menu a { padding: 12px 0; font-size: 16px; width: 100%; display: block; }
  .navbar-menu .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
    margin-top: 0;
    min-width: 0;
  }
  .navbar-menu .dropdown a {
    padding: 8px 0;
    font-size: 14px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-menu .dropdown a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
    margin-left: 8px;
    flex-shrink: 0;
    transition: transform 0.2s, border-color 0.2s;
  }
  .navbar-menu .dropdown a:hover::after,
  .navbar-menu .dropdown a:active::after {
    transform: rotate(-45deg) translate(2px, 2px);
  }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-light); padding-bottom: 24px; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .areas-grid { grid-template-columns: 1fr; }
  .areas-grid--3-4 { grid-template-columns: 1fr; }
  .areas-grid--3-4 > .area-card:nth-child(-n+3),
  .areas-grid--3-4 > .area-card:nth-child(n+4) { grid-column: span 1; }
  .diff-grid { grid-template-columns: 1fr; gap: 24px; }
  .diff-grid--cards { grid-template-columns: 1fr; }
  .diff-grid--cards .diff-item { padding: 28px 22px 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-image { min-height: 420px; max-width: 100%; }
  .hero-image img { max-height: 55vh; }
  .whats-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .whats-float svg { width: 28px; height: 28px; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

@media (max-width: 480px) {
  .navbar-logo img { height: 40px; }
  .navbar-logo-text .name { font-size: 16px; }
  .navbar-logo-text .sub { font-size: 9px; }
  .btn { padding: 14px 24px; font-size: 13px; }
  .btn-large { padding: 16px 28px; font-size: 14px; }
}
