/* ===========================================================
   METROPOLITAN BUSINESS CENTER — Design System
   =========================================================== */
:root {
  --background: 22 35% 6%;
  --background-elevated: 22 30% 9%;
  --foreground: 60 9% 95%;
  --card: 22 30% 9%;
  --primary: 75 86% 62%;
  --primary-foreground: 22 50% 8%;
  --primary-glow: 75 90% 70%;
  --muted-foreground: 30 8% 65%;
  --border: 22 20% 18%;
  --radius: 0.75rem;

  --surface-bg: 0 0% 100%;
  --surface-bg-soft: 210 40% 98%;
  --surface-fg: 222 47% 11%;
  --surface-fg-muted: 215 16% 38%;
  --surface-border: 214 32% 91%;
  --surface-accent: 75 86% 45%;
  --surface-accent-fg: 222 47% 11%;

  --shadow-lime: 0 20px 50px -15px hsl(75 86% 62% / 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.font-display {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.text-balance { text-wrap: balance; }

/* === Animations on scroll === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-x-l { opacity: 0; transform: translateX(-30px); transition: opacity .7s, transform .7s; }
.reveal-x-l.in { opacity: 1; transform: translateX(0); }
.reveal-x-r { opacity: 0; transform: translateX(30px); transition: opacity .7s, transform .7s; }
.reveal-x-r.in { opacity: 1; transform: translateX(0); }

@keyframes pulse {
  50% { opacity: .5; }
}
.pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }

/* ===========================================================
   HEADER
   =========================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsl(var(--surface-bg));
  color: hsl(var(--surface-fg));
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
  transform: translateY(-40px);
  opacity: 0;
  animation: headerIn .6s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes headerIn { to { transform: translateY(0); opacity: 1; } }

.header.scrolled {
  border-bottom-color: hsl(var(--surface-border));
  box-shadow: 0 4px 20px -8px rgba(15,23,42,.12);
}

.utility-bar {
  background: hsl(var(--surface-bg-soft));
  border-bottom: 1px solid hsl(var(--surface-border));
  display: none;
}
@media (min-width: 768px) { .utility-bar { display: block; } }

.utility-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  padding-top: .375rem;
  padding-bottom: .375rem;
  font-size: .75rem;
  color: hsl(var(--surface-fg-muted));
}
.utility-bar a { display: inline-flex; align-items: center; gap: .375rem; transition: color .2s; }
.utility-bar a:hover { color: hsl(var(--surface-fg)); }
.utility-bar .sep { color: hsl(var(--surface-border)); }

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.5rem;
}
@media (min-width: 768px) { .header-main { padding: 1rem 2rem; } }

.header-main { max-width: 1280px; margin: 0 auto; }

.logo-link img { height: 44px; width: auto; }
@media (min-width: 768px) { .logo-link img { height: 48px; } }

.nav-desktop { display: none; align-items: center; gap: .25rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-item { position: relative; }
.nav-link, .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: hsl(var(--surface-fg));
  transition: color .2s;
}
.nav-link:hover, .nav-trigger:hover { color: hsl(var(--surface-accent)); }
.nav-trigger svg { width: 14px; height: 14px; opacity: .6; }

.nav-dropdown {
  position: absolute;
  top: 100%; left: 0;
  padding-top: .5rem;
  width: 340px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s, transform .18s;
}
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }

.nav-dropdown-inner {
  background: white;
  border-radius: 1rem;
  border: 1px solid hsl(var(--surface-border));
  box-shadow: 0 20px 50px -15px rgba(15,23,42,.18);
  padding: .5rem;
}
.nav-dropdown-inner a {
  display: block;
  padding: .75rem 1rem;
  border-radius: .75rem;
  transition: background .2s;
}
.nav-dropdown-inner a:hover { background: hsl(var(--surface-bg-soft)); }
.nav-dropdown-inner .title {
  font-size: .875rem;
  font-weight: 600;
  color: hsl(var(--surface-fg));
}
.nav-dropdown-inner .desc {
  font-size: .75rem;
  color: hsl(var(--surface-fg-muted));
  margin-top: .125rem;
}

.header-cta { display: none; align-items: center; gap: .5rem; }
@media (min-width: 1024px) { .header-cta { display: flex; } }

.btn-ghost {
  padding: .625rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: hsl(var(--surface-fg));
  border: 1px solid hsl(var(--surface-border));
  border-radius: 9999px;
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: hsl(var(--surface-fg)); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: hsl(var(--surface-accent));
  color: hsl(var(--surface-accent-fg));
  font-weight: 700;
  font-size: .875rem;
  padding: .625rem 1.25rem;
  border-radius: 9999px;
  transition: filter .2s;
}
.btn-accent:hover { filter: brightness(.95); }

.menu-toggle {
  display: block;
  padding: .5rem;
  color: hsl(var(--surface-fg));
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid hsl(var(--surface-border));
  overflow: hidden;
}
.mobile-menu.open { display: block; }
.mobile-menu .container { padding-top: 1.5rem; padding-bottom: 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu a {
  padding: .75rem;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--surface-fg));
  border-radius: .5rem;
  transition: background .2s;
}
.mobile-menu a:hover { background: hsl(var(--surface-bg-soft)); }
.mobile-menu .btn-accent { margin-top: .75rem; justify-content: center; padding: .75rem 1.25rem; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(210 40% 98%) 100%);
  color: hsl(var(--surface-fg));
}
@media (min-width: 768px) { .hero { padding: 10rem 0 6rem; } }

.hero .blob1, .hero .blob2 {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
}
.hero .blob1 {
  top: -10rem; left: -10rem;
  width: 600px; height: 600px;
  background: hsl(var(--surface-accent) / .10);
}
.hero .blob2 {
  top: 50%; right: -8rem;
  width: 500px; height: 500px;
  background: hsl(220 90% 60% / .08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: hsl(var(--surface-fg-muted));
}

.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-top: 1rem;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: hsl(var(--surface-fg));
}
.hero h1 .accent { color: hsl(var(--surface-accent)); }

.hero p.lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: hsl(var(--surface-fg-muted));
  max-width: 36rem;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero p.lead { font-size: 1.25rem; } }
.hero p.lead strong { color: hsl(var(--surface-fg)); font-weight: 600; }

.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  gap: .75rem;
  flex-direction: column;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: hsl(var(--surface-accent));
  color: hsl(var(--surface-accent-fg));
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  transition: filter .2s, transform .2s;
  box-shadow: 0 15px 40px -12px hsl(var(--surface-accent) / .5);
}
.btn-primary-lg:hover { filter: brightness(.95); }
.btn-primary-lg .arrow { transition: transform .2s; }
.btn-primary-lg:hover .arrow { transform: translateX(4px); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid hsl(var(--surface-fg));
  color: hsl(var(--surface-fg));
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: hsl(var(--surface-fg)); color: white; }

.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  font-size: .875rem;
  color: hsl(var(--surface-fg-muted));
}
.hero-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { width: 16px; height: 16px; color: hsl(var(--surface-accent)); }

.hero-visual {
  position: relative;
}
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(15,23,42,.25);
}
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-image-wrap { aspect-ratio: 5/4; }
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
}

.hero-chip {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: .375rem 1rem .375rem .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  z-index: 2;
}
.hero-chip .dot {
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: hsl(var(--surface-accent));
}
.hero-chip span { font-size: .75rem; font-weight: 600; color: hsl(var(--surface-fg)); }

.hero-stat-card {
  display: none;
  position: absolute;
  bottom: -2rem; left: -1rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid hsl(var(--surface-border));
  box-shadow: 0 20px 50px -15px rgba(15,23,42,.2);
  padding: 1.25rem;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  z-index: 2;
}
@media (min-width: 640px) { .hero-stat-card { display: flex; } }
@media (min-width: 1024px) { .hero-stat-card { left: -2rem; } }
.hero-stat-card .num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  color: hsl(var(--surface-fg));
  line-height: 1;
}
.hero-stat-card .num span { color: hsl(var(--surface-accent)); }
.hero-stat-card .text {
  font-size: .75rem;
  color: hsl(var(--surface-fg-muted));
  line-height: 1.35;
}
.hero-stat-card .text strong { color: hsl(var(--surface-fg)); }

/* ===========================================================
   GENERIC SECTION (dark)
   =========================================================== */
.section {
  padding: 4rem 0;
  position: relative;
}
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section-elevated {
  background: hsl(var(--background-elevated) / .4);
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.section-eyebrow {
  color: hsl(var(--primary));
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.section h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.section h2 .accent { color: hsl(var(--primary)); }
.section .lead {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: hsl(var(--foreground) / .75);
  line-height: 1.6;
}
@media (min-width: 768px) { .section .lead { font-size: 1.125rem; } }

/* ===========================================================
   BENEFITS
   =========================================================== */
.benefits-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  background: hsl(var(--background-elevated));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color .3s;
}
.benefit-card:hover { border-color: hsl(var(--primary) / .5); }

.icon-tile {
  width: 44px; height: 44px;
  border-radius: .75rem;
  background: hsl(var(--primary) / .15);
  border: 1px solid hsl(var(--primary) / .25);
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary));
}
.icon-tile.lg { width: 48px; height: 48px; }
.icon-tile.sm { width: 40px; height: 40px; }
.icon-tile svg { width: 20px; height: 20px; }
.icon-tile.lg svg { width: 24px; height: 24px; }

.benefit-card h3 {
  margin-top: 1.25rem;
  font-family: 'Archivo', sans-serif;
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 700;
}
.benefit-card p {
  margin-top: .5rem;
  font-size: .875rem;
  color: hsl(var(--foreground) / .65);
  line-height: 1.6;
}

/* ===========================================================
   SOBRE / GARANTIAS  (image + grid)
   =========================================================== */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.two-col img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1rem;
}
@media (min-width: 768px) { .two-col img { height: 440px; } }

.kv-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .kv-grid { grid-template-columns: repeat(2, 1fr); } }

.kv-item { display: flex; gap: .75rem; }
.kv-item h3 { font-size: .875rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.kv-item p {
  margin-top: .25rem;
  font-size: .875rem;
  color: hsl(var(--foreground) / .65);
  line-height: 1.4;
}

/* ===========================================================
   LOTES
   =========================================================== */
.lotes-figure {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
}
.lotes-figure img { transition: transform .7s; height: 360px; width: 100%; object-fit: cover; }
@media (min-width: 768px) { .lotes-figure img { height: 480px; } }
.lotes-figure:hover img { transform: scale(1.05); }
.lotes-figure .badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .375rem .75rem;
  border-radius: 9999px;
}

.feature-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .625rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: hsl(var(--foreground) / .85);
  font-size: .9375rem;
}
@media (min-width: 768px) { .feature-list li { font-size: 1rem; } }
.feature-list .check {
  width: 20px; height: 20px;
  border-radius: 9999px;
  background: hsl(var(--primary) / .2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .check svg { width: 12px; height: 12px; color: hsl(var(--primary)); }

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  transition: background .2s, transform .2s;
  box-shadow: var(--shadow-lime);
  margin-top: 2rem;
}
.btn-lime:hover { background: hsl(var(--primary-glow)); }
.btn-lime .arrow { transition: transform .2s; }
.btn-lime:hover .arrow { transform: translateX(4px); }

.lotes-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .lotes-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .lotes-grid > .lotes-figure { order: 1; } .lotes-grid > .lotes-text { order: 2; } }

/* ===========================================================
   TRIGGERS
   =========================================================== */
.triggers-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .triggers-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.trigger-card {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color .3s;
}
@media (min-width: 768px) { .trigger-card { padding: 1.5rem; } }
.trigger-card:hover { border-color: hsl(var(--primary) / .4); }

.trigger-card .meta { min-width: 0; }
.trigger-card .stat-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.trigger-card .stat {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  color: hsl(var(--primary));
  line-height: 1;
}
@media (min-width: 768px) { .trigger-card .stat { font-size: 2rem; } }
.trigger-card .ttl {
  font-weight: 600;
  font-size: .875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) { .trigger-card .ttl { font-size: 1rem; } }
.trigger-card .desc {
  margin-top: .375rem;
  font-size: .75rem;
  color: hsl(var(--foreground) / .65);
  line-height: 1.4;
}
@media (min-width: 768px) { .trigger-card .desc { font-size: .875rem; } }

/* ===========================================================
   LOCALIZAÇÃO
   =========================================================== */
.loc-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .loc-grid { grid-template-columns: 2fr 1fr; } }

.loc-map {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  height: 360px;
}
@media (min-width: 768px) { .loc-map { height: 460px; } }
.loc-map iframe { width: 100%; height: 100%; border: 0; }

.loc-side { display: flex; flex-direction: column; gap: .75rem; }

.loc-card {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
}
.loc-card .label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: hsl(var(--foreground) / .55);
  font-weight: 600;
}
.loc-card .head { display: flex; align-items: flex-start; gap: .75rem; }
.loc-card .head svg { width: 20px; height: 20px; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 4px; }
.loc-card .addr { font-weight: 600; margin-top: .25rem; line-height: 1.35; font-size: .875rem; }
.loc-card.flex-col { flex: 1; }
.loc-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.loc-list li {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .875rem;
}
.loc-list .place { color: hsl(var(--foreground) / .8); }
.loc-list .time {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.125rem;
  color: hsl(var(--primary));
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 4fr 8fr; } }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: .75rem;
  overflow: hidden;
  background: transparent;
  transition: background .2s;
}
.faq-item.open { background: hsl(var(--background) / .5); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 1.25rem;
  font-family: 'Archivo', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: hsl(var(--foreground));
  transition: color .2s;
}
.faq-trigger:hover { color: hsl(var(--primary)); }
.faq-trigger svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .25s;
}
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-content-inner {
  padding: 0 1.25rem 1.25rem;
  color: hsl(var(--foreground) / .75);
  line-height: 1.6;
  font-size: .9375rem;
}

/* ===========================================================
   CTA FINAL
   =========================================================== */
.cta-final {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-final { padding: 7rem 0; } }
.cta-final-bg {
  position: absolute; inset: 0;
}
.cta-final-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsl(var(--background)), hsl(var(--background) / .85), hsl(var(--background) / .5));
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-top: 1.25rem;
  line-height: .95;
  letter-spacing: -.03em;
}
.cta-final h2 .accent { color: hsl(var(--primary)); }
.cta-final p.lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: hsl(var(--foreground) / .85);
  max-width: 36rem;
}
@media (min-width: 768px) { .cta-final p.lead { font-size: 1.25rem; } }

.cta-row {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 640px) { .cta-row { flex-direction: row; align-items: center; } }

.cta-tel-block .label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: hsl(var(--foreground) / .55);
  font-weight: 600;
}
.cta-tel-block a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  transition: color .2s;
}
.cta-tel-block a:hover { color: hsl(var(--primary)); }

.btn-lime-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 2rem;
  border-radius: 9999px;
  transition: background .2s;
  box-shadow: var(--shadow-lime);
}
.btn-lime-lg:hover { background: hsl(var(--primary-glow)); }
.btn-lime-lg .arrow { transition: transform .2s; }
.btn-lime-lg:hover .arrow { transform: translateX(4px); }

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}
.footer-logo {
  height: 64px;
  width: auto;
  background: hsl(var(--foreground) / .95);
  border-radius: .375rem;
  padding: .5rem .75rem;
  display: inline-block;
}
.footer-text {
  margin-top: 1.25rem;
  color: hsl(var(--foreground) / .7);
  max-width: 28rem;
}

footer h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
footer ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem; color: hsl(var(--foreground) / .7); }
footer ul a { transition: color .2s; }
footer ul a:hover { color: hsl(var(--primary)); }

footer .contact-list { gap: 1rem; }
footer .contact-list li { display: flex; align-items: flex-start; gap: .75rem; }
footer .contact-list svg { width: 20px; height: 20px; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  font-size: .875rem;
  color: hsl(var(--foreground) / .55);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ===========================================================
   WHATSAPP FLOAT
   =========================================================== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
  padding: .75rem 1.25rem .75rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lime);
  transform: scale(.6) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s, background .2s;
}
.wa-float.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.wa-float:hover { background: hsl(var(--primary-glow)); }
.wa-float svg { width: 20px; height: 20px; }
.wa-float .label { display: none; }
@media (min-width: 640px) { .wa-float .label { display: inline; } }
