/* ════════════════════════════════════════════════════════
   ANDRESSA MAGANELLI · NEGÓCIOS IMOBILIÁRIOS
   Design System Premium — Imóveis de Alto Padrão

   Paleta:
     Azul Marinho Escuro: #0D1B2A  (fundo escuro principal)
     Azul Meio:           #1A2F45  (fundo secundário)
     Azul Aço:            #2C4A6E  (destaques azul)
     Dourado:             #C9A96E  (cor de destaque premium)
     Dourado Claro:       #E8C98A  (hover dourado)
     Creme Off-White:     #F5F0E8  (fundos claros)
     Branco:              #FFFFFF
     Cinza Texto:         #8A9AB0  (texto secundário claro)
   ════════════════════════════════════════════════════════ */

/* ── 0. RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #0D1B2A;
  --navy-mid:     #1A2F45;
  --navy-light:   #2C4A6E;
  --gold:         #C9A96E;
  --gold-light:   #E8C98A;
  --gold-dark:    #A8883E;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D8;
  --white:        #FFFFFF;
  --text-dark:    #0D1B2A;
  --text-mid:     #4A5568;
  --text-light:   #8A9AB0;
  --text-lighter: #B8C4D0;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', 'Inter', system-ui, sans-serif;
  --font-body:   'Inter', 'Montserrat', system-ui, sans-serif;

  --radius:     10px;
  --radius-sm:  5px;
  --radius-lg:  20px;
  --shadow:     0 8px 40px rgba(13,27,42,0.12);
  --shadow-md:  0 20px 60px rgba(13,27,42,0.18);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.25);

  --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.22s ease;
  --border-gold: 1px solid rgba(201,169,110,0.25);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
address { font-style: normal; }

/* ── 1. TYPOGRAPHY SYSTEM ─────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow-gold { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title-light { color: var(--white); }
.section-title-light em { color: var(--gold-light); }

.section-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 560px;
}

.section-desc-light { color: var(--text-lighter); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-desc { margin: 0 auto; }
.section-header-light { text-align: center; }

/* ── 2. LAYOUT ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── 3. BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-full { width: 100%; justify-content: center; }

/* ── 4. LOADER ────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.loader-logo svg {
  width: 64px;
  height: 74px;
  animation: pulseGold 2s ease-in-out infinite;
}

/* Logo real — imagem PNG no loader (fundo transparente) */
.loader-logo-img {
  width: 340px;
  max-width: 82vw;
  height: auto;
  object-fit: contain;
  animation: pulseGold 2s ease-in-out infinite;
}

@keyframes pulseGold {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.loader-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.loader-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-light);
  text-transform: uppercase;
}

.loader-bar {
  width: 160px;
  height: 1px;
  background: rgba(201,169,110,0.2);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.loader-progress {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loadBar 2.5s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ── 5. HEADER ────────────────────────────────────────── */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: all var(--transition);
  padding: 0;
}

#header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  transition: padding var(--transition);
}

#header.scrolled .header-inner { padding-top: 1.1rem; padding-bottom: 1.1rem; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

/* Logo real — imagem PNG no header (fundo transparente) */
.logo-img {
  height: 64px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: opacity var(--transition-fast);
}
.logo:hover .logo-img { opacity: 0.8; }

.logo-icon svg {
  width: 36px;
  height: 42px;
  color: var(--gold);
  transition: color var(--transition-fast);
}
.logo:hover .logo-icon svg { color: var(--gold-light); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
}

.logo-desc {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: 0.25rem;
}

/* Nav */
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-bottom: 3px;
}

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

.nav-desktop a:hover { color: var(--white); }
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  max-height: 0;
  overflow: hidden;
  background: rgba(13,27,42,0.99);
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.nav-mobile.open { max-height: 400px; }
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  padding: 1rem 2.5rem 2rem;
  gap: 1.2rem;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.nav-mobile a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.nav-mobile a:hover { color: var(--gold); }

/* ── 6. HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.65) 50%,
    rgba(13,27,42,0.3) 100%
  );
}

.hero-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(13,27,42,0.95) 0%,
    transparent 40%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 12rem 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201,169,110,0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-badge span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2.5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  background: rgba(13,27,42,0.7);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,169,110,0.15);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(201,169,110,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 7.5rem;
  left: 2.5rem;
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  80% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}

/* ── 7. CREDENCIAIS BAR ───────────────────────────────── */
.credenciais {
  background: var(--white);
  border-bottom: 1px solid rgba(13,27,42,0.07);
  padding: 2.2rem 0;
}

.cred-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 2.2rem;
}

.cred-item i { color: var(--gold); font-size: 0.85rem; }

.cred-item span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.cred-div {
  width: 1px;
  height: 24px;
  background: rgba(13,27,42,0.12);
}

/* ── 8. SOBRE ─────────────────────────────────────────── */
.sobre {
  padding: 8rem 0;
  background: var(--cream);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-img-container {
  position: relative;
}

.sobre-img-container img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
}

.sobre-img-border {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: var(--radius);
  z-index: -1;
}

.sobre-creci {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--navy);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,169,110,0.2);
}

.creci-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.creci-val {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.creci-val2 {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.sobre-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.sobre-body p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}
.sobre-body strong { color: var(--text-dark); font-weight: 500; }

.sobre-certs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
}
.cert-item i { color: var(--gold); font-size: 0.75rem; }

/* ── 9. SERVIÇOS ──────────────────────────────────────── */
.servicos {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.servicos-bg {
  position: absolute;
  inset: 0;
}

.servicos-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.5);
}

.servicos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.85);
}

.servicos .container { position: relative; z-index: 1; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-6px);
}

.service-card:hover::before { opacity: 1; }

.service-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon-wrap i { color: var(--gold); font-size: 1rem; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-action a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-action a:hover { gap: 0.8rem; color: var(--gold-light); }
.service-action a i { font-size: 0.6rem; }

/* ── 10. QUOTE DESTAQUE ───────────────────────────────── */
.quote-destaque {
  background: var(--white);
  padding: 7rem 2rem;
}

.quote-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.quote-line {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.quote-inner blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.quote-inner blockquote cite {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
}

/* ── 11. DIFERENCIAIS ─────────────────────────────────── */
.diferenciais {
  padding: 8rem 0;
  background: var(--cream);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 6rem;
  align-items: center;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
}

.diff-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.diff-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
  min-width: 2rem;
}

.diff-item h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.diff-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Visual stack */
.diff-img-stack {
  position: relative;
  height: 580px;
}

.diff-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 65%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.diff-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 65%;
  height: 55%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.diff-img-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.diff-img-card i { color: var(--gold); font-size: 0.9rem; }

.diff-img-card span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* ── 12. NÚMEROS ──────────────────────────────────────── */
.numeros {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.numeros::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(44,74,110,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.numero-card {
  text-align: center;
  padding: 2.5rem 1rem;
  border: var(--border-gold);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.numero-card:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.5);
}

.num-value {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.num-plus {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
}

.num-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* ── 13. DEPOIMENTOS ──────────────────────────────────── */
.depoimentos {
  padding: 8rem 0;
  background: var(--white);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dep-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all var(--transition);
  position: relative;
}

.dep-card::before {
  content: '"';
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
}

.dep-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,169,110,0.3);
}

.dep-stars { display: flex; gap: 0.2rem; }
.dep-stars i { color: var(--gold); font-size: 0.7rem; }

.dep-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  flex: 1;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13,27,42,0.07);
}

.dep-avatar {
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  flex-shrink: 0;
}

.dep-author span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}

.dep-author small {
  display: block;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 0.1rem;
}

/* ── 14. LOCALIZAÇÃO ──────────────────────────────────── */
.localizacao {
  background: var(--navy);
  padding: 8rem 0;
}

.localizacao-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Foto como elemento com bordas arredondadas */
.localizacao-foto {
  position: relative;
}

.localizacao-foto img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

/* Detalhe dourado sutil atrás da foto */
.localizacao-foto::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
}

.localizacao-foto img { position: relative; z-index: 1; }

/* Textos */
.localizacao-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.localizacao-address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.address-item i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.22rem;
}

.address-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.address-item a:hover { color: var(--gold); }

/* ── 15. CONTATO ──────────────────────────────────────── */
.contato {
  background: var(--navy);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(44,74,110,0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(201,169,110,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contato-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contato-canais {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.canal-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,0.04);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: inherit;
}

.canal-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.5);
  transform: translateX(4px);
}

.canal-item-static:hover { transform: none; cursor: default; }

.canal-wpp .canal-icon { background: rgba(37,211,102,0.1); }
.canal-wpp .canal-icon i { color: #25D366; }

.canal-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,169,110,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.canal-icon i { color: var(--gold); font-size: 0.9rem; }

.canal-body { flex: 1; }

.canal-body span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.canal-body p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-top: 0.15rem;
}

.canal-ext { color: rgba(255,255,255,0.25); font-size: 0.6rem; }

/* Form */
.contato-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.form-header {
  background: var(--navy-mid);
  padding: 2rem 2.5rem;
  border-bottom: var(--border-gold);
}

.form-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.form-header p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.contato-form {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid rgba(13,27,42,0.12);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--cream);
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: none; }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}
.form-success i { color: var(--gold); font-size: 1rem; }
.form-success p { font-size: 0.85rem; font-weight: 300; color: var(--navy); }

/* ── 16. FOOTER ───────────────────────────────────────── */
.footer { background: var(--navy); }

.footer-top { padding: 5rem 0 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

/* Logo real — imagem PNG no footer (fundo transparente) */
.footer-logo-img {
  height: 58px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.8rem;
}

.logo-icon-gold svg {
  width: 32px;
  height: 37px;
  color: var(--gold);
}

.footer-name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 0.2rem;
}

.footer-bio {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 0.8rem;
}

.footer-reg {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: var(--border-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

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

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}

.footer-col li i { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 0.25rem; }

.footer-col a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

/* ── 17. WHATSAPP FAB ─────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  z-index: 50;
  transition: all var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 36px rgba(37,211,102,0.5);
}

.wpp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  white-space: nowrap;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  border: var(--border-gold);
}

.whatsapp-fab:hover .wpp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── 18. BACK TO TOP ──────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border: var(--border-gold);
  border-radius: 4px;
  color: var(--gold);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── 19. REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.services-grid .reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.25s; }

.numeros-grid .reveal:nth-child(1) { transition-delay: 0s; }
.numeros-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.numeros-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.numeros-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.presenca-img.reveal:nth-child(1) { transition-delay: 0s; }
.presenca-img.reveal:nth-child(2) { transition-delay: 0.1s; }
.presenca-img.reveal:nth-child(3) { transition-delay: 0.2s; }
.presenca-img.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── 20. RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 4rem; }
  .sobre-visual { max-width: 460px; margin: 0 auto; }
  .diferenciais-grid { grid-template-columns: 1fr; gap: 4rem; }
  .diferenciais-visual { max-width: 500px; }
  .contato-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .presenca-grid,
  .localizacao-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .localizacao-foto img { height: 380px; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { padding: 1.2rem 1.5rem; }

  .hero-content { padding: 9rem 1.5rem 2rem; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
  }
  .stat-div { display: none; }
  .stat-item { min-width: 100px; flex: none; }

  .credenciais .cred-div { display: none; }
  .cred-item { padding: 0.5rem 1rem; }

  .sobre { padding: 5rem 0; }
  .sobre-img-container img { height: 400px; }

  .servicos { padding: 5rem 0; }
  .services-grid { grid-template-columns: 1fr; }

  .quote-inner { flex-direction: column; gap: 1.5rem; }
  .quote-line { width: 40px; height: 2px; }

  .diferenciais { padding: 5rem 0; }
  .diff-img-stack { height: 380px; }

  .numeros { padding: 4rem 0; }

  .contato { padding: 5rem 0; }
  .contato-form { padding: 1.8rem 1.5rem; }
  .form-header { padding: 1.5rem 1.8rem; }
  .form-row { grid-template-columns: 1fr; }

  .localizacao { padding: 5rem 0; }
  .localizacao-foto img { height: 300px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .presenca-grid { grid-template-columns: 1fr; }
  .presenca-img { height: 250px; }
}
