:root {
  --bg: #09111f;
  --bg-alt: #0d1728;
  --panel: #101d33;
  --panel-2: #14233d;
  --line: rgba(115, 144, 191, 0.18);
  --line-strong: rgba(227, 187, 93, 0.26);
  --text: #edf3ff;
  --muted: #aab7cf;
  --gold: #e1b85a;
  --gold-dark: #b18932;
  --green: #2fd36b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 12%, rgba(55, 114, 232, 0.12), transparent 20%),
    linear-gradient(180deg, #09111f 0%, #0b1525 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: #fff;
  color: #111;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(9,17,31,.95), rgba(9,17,31,.74));
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand strong { display: block; font-size: .96rem; letter-spacing: .13em; }
.brand small { color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(225,184,90,.16), rgba(17,29,51,.6));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.mark-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  right: 8px;
  top: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(225,184,90,.45);
}
.mark-phone {
  position: absolute;
  left: 13px;
  top: 8px;
  width: 17px;
  height: 27px;
  border-radius: 6px;
  border: 2px solid #c6d2eb;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--text); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 12px 14px;
}

.hero { position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(9,17,31,0), var(--bg));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
  padding: 84px 0 72px;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.06em;
  max-width: 11ch;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 800;
}
.hero-text,
.section-head p,
.service-card p,
.step-card p,
.cta-box p,
.location-card li,
.location-section p,
.hero-panel p,
.pricing-note p,
.guarantee-section p,
.footer-grid p,
.fun-copy p { color: var(--muted); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--gold); color: #111720; }
.button-primary:hover { background: #f2ca71; }
.button-secondary {
  background: rgba(18,32,56,.6);
  border-color: rgba(255,255,255,.1);
  color: var(--text);
}
.button-secondary:hover { border-color: var(--gold); }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.hero-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(225,184,90,.4);
}
.hero-card { display: flex; justify-content: end; }
.hero-panel {
  width: min(100%, 430px);
  padding: 28px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(55,114,232,.2), transparent 28%),
    linear-gradient(180deg, rgba(19,33,57,.9), rgba(13,22,39,.92));
  box-shadow: var(--shadow);
}
.panel-kicker {
  display: inline-flex;
  padding: 8px 10px;
  background: rgba(225,184,90,.12);
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero-panel h2 { margin: 18px 0 10px; font-size: 1.8rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.hero-stats article {
  padding: 14px 12px;
  border: 1px solid var(--line);
  background: rgba(8,14,26,.44);
}
.hero-stats strong { display: block; color: var(--gold); font-size: 1.1rem; }
.hero-stats span { color: var(--muted); font-size: .84rem; }

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(14,24,43,.48);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust-grid article {
  padding: 22px;
  background: var(--bg-alt);
}
.trust-grid strong { display: block; margin-bottom: 6px; }
.trust-grid span { color: var(--muted); }

.section { padding: 86px 0; }
.section-head { max-width: 720px; margin-bottom: 30px; }
.section-head h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3rem); }
.section-head-left { margin-bottom: 0; }

.pricing-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}
.search-field span {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}
.search-field input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(12,20,35,.8);
  border: 1px solid var(--line);
  outline: 0;
}
.search-field input:focus { border-color: var(--gold); }
.brand-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(12,20,35,.8);
  color: var(--muted);
  cursor: pointer;
}
.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--text);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,29,51,.88), rgba(12,21,37,.88));
  box-shadow: var(--shadow);
}
.price-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.price-head h3 { margin: 0; font-size: 1.06rem; }
.price-brand {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.price-value {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}
.price-card p { color: var(--muted); margin: 0 0 20px; }
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.small-link {
  color: #c9d8ff;
  font-size: .95rem;
}
.small-link:hover { color: white; }
.no-results {
  padding: 26px;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  background: rgba(16,29,51,.52);
}
.pricing-note {
  margin-top: 24px;
  padding: 20px;
  border-left: 2px solid var(--gold);
  background: rgba(16,29,51,.42);
}
.pricing-note strong { display: block; margin-bottom: 8px; }

.services-grid,
.steps-grid,
.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card,
.step-card,
.guarantee-card,
.location-card,
.fun-box,
.cta-box {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,29,51,.82), rgba(12,21,37,.82));
  box-shadow: var(--shadow);
}
.service-card,
.step-card,
.guarantee-card,
.location-card { padding: 24px; }
.service-card h3,
.step-card h3,
.location-card h3 { margin: 0 0 10px; font-size: 1.18rem; }

.guarantee-grid,
.location-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: start;
}
.guarantee-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: var(--gold);
}
.guarantee-card span { color: var(--muted); }
.step-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(225,184,90,.12);
  color: var(--gold);
  font-weight: 800;
}
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
}
.cta-box h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.contact-list a {
  width: fit-content;
  color: #cfe0ff;
}
.contact-list a:hover { color: white; }
.location-card ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fun-box summary {
  list-style: none;
  padding: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.14rem;
  font-weight: 800;
}
.fun-box summary::-webkit-details-marker { display: none; }
.fun-box summary span {
  color: var(--gold);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fun-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 0 24px 24px;
}
.mini-phone {
  width: 240px;
  aspect-ratio: 9 / 18;
  margin: 0 auto;
  border-radius: 34px;
  padding: 16px;
  background: linear-gradient(160deg, #1f2d48, #0b1220);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.mini-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(225,184,90,.24), transparent 20%),
    linear-gradient(180deg, #0d2444, #081323);
  overflow: hidden;
  cursor: pointer;
}
.mini-screen::before,
.mini-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}
.mini-screen::before {
  background:
    linear-gradient(120deg, transparent 47%, rgba(255,255,255,.22) 48%, transparent 50%),
    linear-gradient(55deg, transparent 32%, rgba(255,255,255,.18) 33%, transparent 35%),
    linear-gradient(160deg, transparent 58%, rgba(255,255,255,.14) 59%, transparent 61%);
}
.mini-screen::after {
  background: radial-gradient(circle at center, rgba(255,255,255,.08), transparent 40%);
}
.mini-screen.is-1::before, .mini-screen.is-1::after { opacity: .22; }
.mini-screen.is-2::before, .mini-screen.is-2::after { opacity: .40; }
.mini-screen.is-3::before, .mini-screen.is-3::after { opacity: .62; }
.mini-screen.is-4::before, .mini-screen.is-4::after { opacity: .88; }
.game-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.site-footer {
  padding: 34px 0 18px;
  border-top: 1px solid var(--line);
  background: rgba(8,13,24,.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}
.footer-grid strong,
.footer-grid span { display: block; margin-bottom: 10px; }
.footer-grid a { color: var(--muted); display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: white; }
.copyright {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  box-shadow: 0 18px 30px rgba(47, 211, 107, 0.32);
}
.floating-whatsapp svg { width: 32px; height: 32px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid,
  .guarantee-grid,
  .location-grid,
  .cta-box,
  .fun-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid,
  .services-grid,
  .steps-grid,
  .guarantee-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-card { justify-content: start; }
  .fun-content { gap: 12px; }
}

@media (max-width: 780px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(9,17,31,.96);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .hero-grid { padding-top: 54px; }
  .pricing-grid,
  .services-grid,
  .steps-grid,
  .guarantee-cards,
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .floating-whatsapp { width: 58px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}


.brand { gap: 14px; }
.brand-text strong { font-size: 1.02rem; letter-spacing: .14em; }
.brand-text small { font-size: .78rem; letter-spacing: .16em; }
.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-block;
}
.mark-frame {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(225,184,90,.38);
  background: linear-gradient(180deg, rgba(24,38,62,.95), rgba(13,21,36,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.mark-phone {
  position: absolute;
  left: 16px;
  top: 8px;
  width: 14px;
  height: 24px;
  border-radius: 5px;
  border: 2px solid #dde5f5;
  z-index: 1;
}
.mark-phone::before {
  content: "";
  position: absolute;
  left: 50%; top: 2px;
  transform: translateX(-50%);
  width: 5px; height: 2px; border-radius: 2px;
  background: #dde5f5;
}
.mark-dot {
  position: absolute;
  right: 10px; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); z-index: 1;
  box-shadow: 0 0 10px rgba(225,184,90,.4);
}

.hero-grid { grid-template-columns: .88fr 1.12fr; gap: 54px; }
.hero-card-left { order: 1; justify-content: start; }
.hero-copy-right { order: 2; }
.hero-copy h1 { max-width: 11.4ch; }
.hero-panel-brands { width: min(100%, 460px); }
.brand-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 22px 0 24px;
}
.brand-chip {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(8,14,26,.44);
  color: var(--text);
  font-weight: 700;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}
.brand-chip::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(225,184,90,.35);
}
.brand-chip::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(225,184,90,.0), rgba(225,184,90,.55));
}
.brand-apple::before { background: linear-gradient(180deg, #d8dee8, #91a0bb); }
.brand-xiaomi::before { background: #ff9f43; }
.brand-samsung::before { background: #6bb5ff; }
.brand-motorola::before { background: #77d3ff; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-card-left, .hero-copy-right { order: initial; }
}


.hero-left-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
  padding-top: 6px;
}
.hero-brand-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  padding-left: 4px;
}
.hero-brand-logo {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.28));
  opacity: .98;
}
.hero-logo-apple { width: 54px; height: 54px; }
.hero-logo-samsung { width: 150px; height: 42px; }
.hero-logo-motorola { width: 50px; height: 50px; }
.hero-logo-xiaomi { width: 52px; height: 52px; }
.hero-panel-lifted { margin-top: 2px; }
.hero-panel-lifted h2 { margin-top: 14px; }
.hero-stats-compact article { min-height: 100px; }
.hero-copy h1 { max-width: 10.4ch; }
.hero-copy-right { padding-top: 14px; }

.dual-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.dual-price-box {
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  background: rgba(8,14,26,.38);
}
.dual-label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price-value-small {
  font-size: 1.55rem;
  margin-bottom: 0;
}
.price-card p { min-height: 48px; }

@media (max-width: 1040px) {
  .hero-left-column { order: 1; }
  .hero-copy-right { order: 2; padding-top: 0; }
}
@media (max-width: 780px) {
  .hero-brand-logos { gap: 14px; }
  .hero-logo-samsung { width: 120px; }
  .dual-prices { grid-template-columns: 1fr; }
}


.hero-grid { grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.hero-side { display: flex; flex-direction: column; gap: 20px; padding-top: 6px; }
.hero-brand-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.hero-brand-pill {
  min-height: 76px;
  border-radius: 18px;
  border: 1px solid rgba(80,170,255,.34);
  background: linear-gradient(180deg, rgba(7,15,30,.92), rgba(8,18,34,.78));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 26px rgba(0,0,0,.18);
}
.hero-brand-pill img { max-width: 92px; max-height: 30px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(255,255,255,.08)); }
.hero-panel-elevated { margin-top: -2px; width: min(100%, 460px); }
.hero-panel-elevated p { margin-bottom: 0; }
.hero-copy-right { padding-top: 30px; }
.hero-copy h1 { max-width: 12ch; }

.price-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 14px 0 14px;
}
.price-pair {
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  background: rgba(8,14,26,.54);
}
.price-pair span {
  display: block;
  font-size: .77rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 6px;
}
.price-pair strong {
  font-size: 1.18rem;
  color: var(--gold);
}

.location-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 34px;
  padding: 28px;
  border: 1px solid rgba(67,138,220,.45);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(4,12,27,.92), rgba(8,19,41,.88));
  box-shadow: 0 28px 60px rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,255,255,.02);
}
.location-copy { display:flex; flex-direction:column; justify-content:center; }
.location-kicker {
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(66,154,238,.42);
  color: #bfe2ff;
  font-weight: 700;
  margin-bottom: 22px;
}
.location-copy h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: .98; margin-bottom: 18px; max-width: 11ch; }
.location-copy p { max-width: 56ch; }
.location-actions-row { display:flex; gap:12px; flex-wrap:wrap; margin: 24px 0 14px; }
.button-light {
  background: #f4f7fb;
  color: #0a1830;
  border: 1px solid rgba(255,255,255,.25);
}
.location-address { color: var(--muted); font-size: .98rem; }
.map-embed-wrap {
  min-height: 350px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: #dfe6ee;
}
.map-embed-wrap iframe { width: 100%; height: 100%; min-height: 350px; border: 0; display:block; }

.fun-section { display:none !important; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy-right { padding-top: 0; }
  .hero-brand-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .location-shell { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-brand-pill { min-height: 64px; }
  .hero-brand-pill img { max-width: 78px; max-height: 25px; }
  .price-pairs { grid-template-columns: 1fr; }
  .location-shell { padding: 20px; border-radius: 24px; }
}


/* === Refinamento visual solicitado === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.brand { gap: 0; }
.brand-logo {
  width: min(100%, 270px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.28));
}
.brand-mark, .brand-text { display: none !important; }

.site-header {
  background: linear-gradient(to bottom, rgba(6,10,18,.97), rgba(6,10,18,.82));
}

.hero-copy-right { padding-top: 20px; }
.hero-copy h1 {
  max-width: 12.4ch;
  font-size: clamp(2.45rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 700;
  background: linear-gradient(90deg, #f4f7ff 0%, #8fd7ff 48%, #8c68ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #b8c7e7;
  font-size: .8rem;
  letter-spacing: .18em;
  font-weight: 700;
}
.hero .eyebrow::before {
  content: "";
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #37c8ff, #8f5dff);
  box-shadow: 0 0 12px rgba(92,138,255,.35);
}
.hero-panel {
  border: 1px solid rgba(112, 146, 255, 0.26);
  background:
    radial-gradient(circle at top right, rgba(70,124,255,.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(147,88,255,.16), transparent 32%),
    linear-gradient(180deg, rgba(17,28,49,.92), rgba(12,20,37,.94));
}
.panel-kicker {
  background: rgba(96,119,255,.12);
  color: #afd7ff;
  border: 1px solid rgba(126, 124, 255, 0.16);
}
.hero-stats strong {
  background: linear-gradient(90deg, #71cfff, #9d79ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-points li::before {
  border-radius: 999px;
  background: linear-gradient(180deg, #37c8ff, #8f5dff);
  box-shadow: 0 0 12px rgba(96,119,255,.45);
}
.hero-brand-pill {
  border: 1px solid rgba(93,170,255,.22);
  background: linear-gradient(180deg, rgba(9,17,31,.92), rgba(10,20,37,.78));
}
.hero-text { max-width: 56ch; }
.hero-actions { margin: 24px 0 22px; }

@media (max-width: 780px) {
  .brand-logo { width: 220px; }
  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
    max-width: 10.7ch;
  }
  .hero .eyebrow::before { width: 36px; }
}
