/* Team Brunão — Site Público */
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Medium-latin.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bruna';
  src: url('../fonts/Bruna-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1500E3;
  --blue-bright: #1A00FF;
  --red: #F20F0F;
  --black: #131313;
  --white: #FFFFFF;
  --gray-50: #888888;
  --gray-20: #d6d6d6;
  --gray-10: #f2f2f2;
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Bruna', sans-serif;
  --font-ui: 'Manrope', system-ui, sans-serif;
  --space-section: clamp(64px, 10vw, 120px);
  --space-inline: clamp(20px, 5vw, 64px);
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-bright); text-decoration: none; }
a:hover { opacity: .75; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 3px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--blue); color: var(--white); padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(1200px, 100%); margin: 0 auto; padding-inline: var(--space-inline); }
.eyebrow {
  font-family: var(--font-display); font-weight: 500; font-size: .75rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1;
  text-transform: uppercase; margin: .5rem 0 1rem;
}
.section-copy { font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.6; max-width: 62ch; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19,19,19,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo img { height: clamp(44px, 5vw, 64px); width: auto; }
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--blue-bright); color: var(--white); border: 0;
  padding: .85rem 1.4rem; font-family: var(--font-display); font-weight: 800;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s, background .2s;
}
.btn-cta:hover { opacity: 1; background: var(--blue); transform: translateY(-1px); }
.btn-cta--outline { background: transparent; color: var(--blue-bright); border: 2px solid var(--blue-bright); }
.btn-cta--outline:hover { background: var(--blue-bright); color: var(--white); }
.btn-cta--lg { padding: 1rem 1.75rem; font-size: .85rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) var(--space-inline) 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #f4f3ff 45%, #fff 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb--blue {
  top: -15%;
  right: -5%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: rgba(21, 0, 227, .12);
  animation: floatOrb 12s ease-in-out infinite;
}
.hero-orb--red {
  bottom: -10%;
  left: -8%;
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  background: rgba(242, 15, 15, .07);
  animation: floatOrb 14s ease-in-out infinite reverse;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 0, 227, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 0, 227, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-content { animation: fadeUp .8s ease both; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}
.hero-highlight {
  color: var(--blue-bright);
  position: relative;
  display: inline-block;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: .08em;
  width: 100%;
  height: .12em;
  background: var(--red);
  opacity: .35;
  border-radius: 2px;
}
.hero-subcopy {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  max-width: 46ch;
  color: #3a3a3a;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-block: 1.25rem;
  border-block: 1px solid rgba(21, 0, 227, .08);
}
.hero-stat {
  display: grid;
  gap: .15rem;
}
.hero-stat strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  color: var(--blue-bright);
}
.hero-stat span {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-50);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
  padding: .5rem 1rem;
  background: rgba(21, 0, 227, .07);
  border: 1px solid rgba(21, 0, 227, .12);
  border-radius: 999px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulseDot 1.4s infinite;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  animation: fadeUp .9s .15s ease both;
}
.hero-visual-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(21, 0, 227, .18) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow:
    0 24px 60px rgba(21, 0, 227, .18),
    0 0 0 1px rgba(255, 255, 255, .6);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.15rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(21, 0, 227, .14);
  font-family: var(--font-ui);
  animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.2;
}
.hero-float-card span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-50);
}
.hero-float-card__icon {
  width: 22px;
  height: 22px;
  color: var(--blue-bright);
  flex-shrink: 0;
}
.hero-float-card--location {
  top: 12%;
  left: -4%;
  animation-delay: 0s;
}
.hero-float-card--result {
  bottom: 14%;
  right: -4%;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  animation-delay: -2.5s;
}
.hero-float-card--result strong {
  font-size: 1.75rem;
  color: var(--blue-bright);
}

/* Authority */
.authority { padding-block: var(--space-section); }
.authority-grid { display: grid; gap: 2.5rem; align-items: center; }
.authority-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.authority-metric {
  display: grid;
  gap: .35rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--gray-10);
  border: 1px solid rgba(19, 19, 19, .05);
  transition: transform .25s, box-shadow .25s;
}
.authority-metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21, 0, 227, .08);
}
.authority-metric--accent {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}
.authority-metric--accent .authority-metric__label { color: rgba(255, 255, 255, .65); }
.authority-metric__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--blue-bright);
}
.authority-metric--accent .authority-metric__num { color: var(--white); }
.authority-metric__label {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-50);
  line-height: 1.4;
}
.authority-photo {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--gray-10);
}
.authority-photo img { width: 100%; height: 100%; object-fit: cover; }
.authority-stat {
  display: inline-block; margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: var(--gray-10); border-left: 4px solid var(--blue-bright);
  font-family: var(--font-ui); font-size: .95rem; line-height: 1.5;
}
.authority-stat strong { color: var(--blue-bright); }

/* Benefits */
.benefits { padding-block: var(--space-section); background: var(--black); color: var(--white); }
.benefits .section-title { color: var(--white); }
.benefits-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.benefit-card {
  padding: 1.5rem; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03); border-radius: 12px;
}
.benefit-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  text-transform: uppercase; margin: 0 0 .75rem; color: var(--white);
}
.benefit-card p { margin: 0; color: rgba(255,255,255,.75); line-height: 1.55; }

/* Results */
.results { padding-block: var(--space-section); }
.results-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-btn {
  border: 1px solid var(--gray-20); background: var(--white); color: var(--black);
  padding: .55rem 1rem; border-radius: 999px; font-family: var(--font-ui);
  font-size: .8rem; font-weight: 600; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--blue-bright); color: var(--white); border-color: var(--blue-bright); }
.results-carousel { position: relative; }
.results-viewport {
  overflow: hidden;
  border-radius: 16px;
  outline: none;
  contain: layout style;
}
.results-viewport:focus-visible { box-shadow: 0 0 0 2px var(--blue-bright); }
.results-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.results-track--animating {
  animation: slideIn .35s cubic-bezier(.4, 0, .2, 1);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}
.results-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.results-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
}
.results-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.results-nav-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-20);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  transition: background .2s, border-color .2s, transform .2s;
}
.results-nav-btn svg { width: 20px; height: 20px; }
.results-nav-btn:hover:not(:disabled) {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: var(--white);
  opacity: 1;
  transform: translateY(-1px);
}
.results-nav-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.results-carousel-status {
  margin: 0;
  min-width: 8ch;
  text-align: center;
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-50);
}
.result-card { border-radius: 14px; overflow: hidden; background: var(--gray-10); }
.result-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--gray-20); position: relative; }
.result-photo-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
}
.result-photo-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(19, 19, 19, .45) 100%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.result-photo-btn:hover::after,
.result-photo-btn:focus-visible::after { opacity: 1; }
.result-photo-btn:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: -2px; }
.result-photo-zoom {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--black);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.result-photo-zoom svg { width: 18px; height: 18px; }
.result-photo-btn:hover .result-photo-zoom,
.result-photo-btn:focus-visible .result-photo-zoom {
  opacity: 1;
  transform: translateY(0);
}
.result-photo img { width: 100%; height: 100%; object-fit: cover; }
.result-body { padding: 1rem 1.1rem 1.25rem; }
.result-body h3 { margin: 0 0 .35rem; font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; }
.result-body p { margin: 0; font-family: var(--font-ui); font-size: .85rem; color: var(--gray-50); }
.result-tag {
  display: inline-block; margin-bottom: .5rem; padding: .2rem .55rem;
  background: rgba(21,0,227,.08); color: var(--blue-bright);
  font-family: var(--font-ui); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; border-radius: 4px;
}
.results-empty {
  width: 100%;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--gray-50);
  font-family: var(--font-ui);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(.75rem, 2vw, 1.25rem);
}
.lightbox.is-open { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, .88);
  backdrop-filter: blur(8px);
  animation: fadeIn .25s ease;
}
.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  width: min(1320px, 100%);
  max-height: calc(100svh - 1.5rem);
  overflow: hidden;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  animation: fadeUp .3s ease;
}
.lightbox--compare .lightbox-dialog {
  width: min(1480px, 100%);
}
.lightbox-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transition: background .2s, transform .2s;
}
.lightbox-close svg { width: 22px; height: 22px; }
.lightbox-close:hover {
  background: var(--blue-bright);
  color: var(--white);
  opacity: 1;
  transform: scale(1.05);
}
.lightbox-images {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 0;
  padding: 3.25rem clamp(1rem, 2.5vw, 1.5rem) 1rem;
  background: #0a0a0a;
}
.lightbox-images--compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.lightbox-figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
}
.lightbox-figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 1280px);
  max-height: min(84svh, 980px);
  margin: 0 auto;
  object-fit: contain;
}
.lightbox--compare .lightbox-figure img {
  width: 100%;
  max-width: none;
  max-height: min(78svh, 900px);
}
.lightbox-figure figcaption {
  padding: .65rem 1rem;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .06);
}
.lightbox-meta {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--gray-20);
}
.lightbox-title {
  margin: .5rem 0 .35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.lightbox-copy {
  margin: 0;
  font-family: var(--font-ui);
  font-size: .95rem;
  color: var(--gray-50);
  line-height: 1.5;
}
body.lightbox-open { overflow: hidden; }

/* Selection / Wizard */
.selection { padding-block: var(--space-section); background: linear-gradient(180deg, #f7f7ff 0%, #fff 100%); }
.wizard {
  max-width: 720px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--gray-20); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(21,0,227,.06); overflow: hidden;
}
.wizard-progress { padding: 1.25rem 1.5rem 0; }
.progress-bar { height: 4px; background: var(--gray-20); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--blue-bright); width: 0; transition: width .4s ease; }
.progress-label { font-family: var(--font-ui); font-size: .75rem; color: var(--gray-50); margin-top: .5rem; }
.wizard-body { padding: 1.5rem; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeUp .35s ease; }
.wizard-step h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  text-transform: uppercase; margin: 0 0 1.25rem;
}
.form-grid { display: grid; gap: 1rem; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-field { display: grid; gap: .4rem; }
.form-field span { font-family: var(--font-ui); font-size: .8rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--gray-20);
  border-radius: 10px; font-family: var(--font-ui); font-size: .95rem;
  background: var(--white); color: var(--black);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.toggle-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.toggle-btn {
  border: 1px solid var(--gray-20); background: var(--white); color: var(--black);
  padding: .7rem 1rem; border-radius: 10px; font-family: var(--font-ui);
  font-size: .85rem; font-weight: 600; transition: all .2s;
}
.toggle-btn.selected { background: var(--blue-bright); color: var(--white); border-color: var(--blue-bright); }
.toggle-btn.multi.selected { background: rgba(21,0,227,.1); color: var(--blue-bright); border-color: var(--blue-bright); }
.checkbox-field {
  display: flex; align-items: flex-start; gap: .65rem;
  font-family: var(--font-ui); font-size: .85rem; line-height: 1.5;
}
.checkbox-field input { margin-top: .2rem; }
.wizard-footer {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0 1.5rem 1.5rem;
}
.wizard-interstitial {
  display: none; text-align: center; padding: 3rem 1.5rem;
  font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase;
}
.wizard-interstitial.active { display: block; animation: fadeIn .4s ease; }
.wizard-success {
  display: none; text-align: center; padding: 3rem 1.5rem;
}
.wizard-success.active { display: block; }
.wizard-success h3 { font-family: var(--font-display); font-size: 1.75rem; text-transform: uppercase; }
.wizard-error {
  color: var(--red);
  font-family: var(--font-ui);
  font-size: .85rem;
  margin: .75rem 0 0;
  min-height: 1.25rem;
}
.wizard-error:empty { display: none; }

/* FAQ */
.faq { padding-block: var(--space-section); background: var(--gray-10); }
.faq-list { display: grid; gap: .75rem; max-width: 800px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-20); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  padding: 1.1rem 1.25rem; font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; font-size: .95rem; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 1.25rem 1.1rem; margin: 0; line-height: 1.6; color: #444; }

/* Footer */
.site-footer { background: var(--black); color: var(--white); padding: 3rem var(--space-inline); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; font-family: var(--font-ui); font-size: .9rem; }
.footer-links a { color: var(--white); }
.footer-meta { display: grid; gap: .3rem; text-align: right; }
.footer-copy { font-family: var(--font-ui); font-size: .8rem; color: rgba(255,255,255,.55); }
.footer-credit { font-family: var(--font-ui); font-size: .75rem; color: rgba(255,255,255,.38); }
.footer-credit a { color: rgba(255,255,255,.52); text-decoration: none; transition: color .2s; }
.footer-credit a:hover { color: var(--white); }
.legal-credit { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e8e8e8; font-size: .85rem; color: #888; }
.legal-credit a { color: #555; text-decoration: none; }
.legal-credit a:hover { color: var(--red); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.2);
  transition: transform .2s;
}
.whatsapp-float:hover { opacity: 1; transform: scale(1.05); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulseDot { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes floatOrb { 0%,100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-20px, 15px) scale(1.05); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .authority-grid { grid-template-columns: .9fr 1.1fr; }
}
@media (max-width: 767px) {
  .hero h1 { max-width: none; }
  .hero-visual { order: -1; max-width: 340px; margin-inline: auto; }
  .hero-float-card--location { left: 0; top: 8%; }
  .hero-float-card--result { right: 0; bottom: 8%; }
  .hero-stats { gap: 1rem; }
  .hero-stat { flex: 1 1 calc(33% - 1rem); min-width: 90px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, auto); }
  .lightbox-dialog { width: 100%; max-height: calc(100svh - 1rem); border-radius: 16px; }
  .lightbox-images { padding-top: 3rem; }
  .lightbox-figure img {
    max-width: 100%;
    max-height: min(72svh, 720px);
  }
  .lightbox--compare .lightbox-figure img { max-height: min(38svh, 420px); }
  .lightbox-images--compare { grid-template-columns: 1fr; }
  .form-grid--2 { grid-template-columns: 1fr; }
  .wizard-footer { flex-direction: column-reverse; }
  .wizard-footer .btn-cta { width: 100%; }
  .header-inner .btn-cta {
    padding: .7rem 1rem;
    font-size: .68rem;
    letter-spacing: .06em;
  }
}
@media (max-width: 480px) {
  .filter-row { width: 100%; }
  .filter-btn { flex: 1 1 auto; text-align: center; }
}
