/* ==========================================================================
   MOXOTÓ CONNECT — Design System
   Paleta extraída da logomarca: azul-marinho, azul-rio, verde-caatinga, sol/laranja
   ========================================================================== */

:root {
  /* Cores da marca */
  --navy: #132848;
  --navy-deep: #0a1a30;
  --navy-soft: #1e3a63;
  --blue: #2b6ca3;
  --blue-light: #5fa8d3;
  --green: #2f8f4e;
  --green-light: #8dc63f;
  --gold: #f5a623;
  --orange: #ef7d1f;
  --sand: #f6f1e6;
  --sand-deep: #ece2cc;
  --white: #ffffff;
  --ink: #16233a;
  --ink-soft: #55637a;
  --line: #e3e0d6;

  /* Tipografia */
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Espaçamento */
  --gap: clamp(1.25rem, 2vw, 2rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px -12px rgba(19, 40, 72, 0.25);
  --shadow-sm: 0 6px 16px -8px rgba(19, 40, 72, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9em 1.6em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: 0 14px 26px -10px rgba(239, 125, 31, 0.55); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 40, 72, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.7rem;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; }
.brand img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--navy);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-cta .btn-outline { display: none; }
}

/* ---------- Hero (dark / navy) ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero.hero-simple .hero-inner {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.hero .lead { color: rgba(255, 255, 255, 0.78); font-size: 1.08rem; max-width: 46ch; }

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.2rem;
}
.hero-badges span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5em 0.9em;
  border-radius: 100px;
}

/* Signal pulse — signature motif echoing the wifi arcs in the logo */
.signal {
  position: relative;
  width: 260px;
  height: 260px;
  margin-inline: auto;
}
.signal-dot {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
}
.signal-arc {
  position: absolute;
  left: 50%; top: 50%;
  border: 3px solid rgba(245, 166, 35, 0.55);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: pulse 2.6s ease-out infinite;
  opacity: 0;
}
.signal-arc.a1 { width: 90px; height: 90px; animation-delay: 0s; }
.signal-arc.a2 { width: 160px; height: 160px; animation-delay: 0.5s; }
.signal-arc.a3 { width: 230px; height: 230px; animation-delay: 1s; }

@keyframes pulse {
  0% { opacity: 0.9; transform: translate(-50%, -50%) rotate(45deg) scale(0.85); }
  70% { opacity: 0; }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(45deg) scale(1); }
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  line-height: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ---------- Hero carousel ---------- */
.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: var(--white);
}

.hc-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(155deg, var(--hc-bg-a) 0%, var(--hc-bg-b) 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s;
  z-index: 1;
}
.hc-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.hc-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 780px) {
  .hc-inner { grid-template-columns: 1fr; text-align: center; }
  .hc-inner .hero-actions { justify-content: center; }
}

.hc-text h1 { color: var(--white); font-size: clamp(2rem, 4.6vw, 3.3rem); }
.hc-text .lead { color: rgba(255, 255, 255, 0.78); max-width: 46ch; }
@media (max-width: 780px) { .hc-text .lead { margin-inline: auto; } }

.hc-art {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-dots {
  position: absolute;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hc-dot.is-active { background: var(--gold); transform: scale(1.3); }

.hc-badges {
  position: absolute;
  left: 0; right: 0;
  bottom: 22px;
  z-index: 3;
  justify-content: center;
  margin: 0;
}
@media (max-width: 640px) { .hc-badges { display: none; } }

/* Slide 1 — gaming / ping HUD */
.ping-hud {
  position: relative;
  width: 280px; height: 280px;
}
.ping-ring {
  position: absolute; inset: 0;
  border: 2px dashed rgba(245, 166, 35, 0.35);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ping-crosshair {
  position: absolute;
  left: 50%; top: 50%;
  width: 90px; height: 90px;
  transform: translate(-50%, -50%);
}
.ping-crosshair span {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
}
.ping-crosshair span:nth-child(1) { left: 50%; top: 0; width: 2px; height: 30px; transform: translateX(-50%); }
.ping-crosshair span:nth-child(2) { left: 50%; bottom: 0; width: 2px; height: 30px; transform: translateX(-50%); }
.ping-crosshair span:nth-child(3) { top: 50%; left: 0; height: 2px; width: 30px; transform: translateY(-50%); }
.ping-crosshair span:nth-child(4) { top: 50%; right: 0; height: 2px; width: 30px; transform: translateY(-50%); }

.ping-badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(245, 166, 35, 0.14);
  animation: pop 2.4s ease-in-out infinite;
}
.ping-badge small { font-size: 0.6rem; font-weight: 700; margin-left: 1px; }
@keyframes pop { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.08); } }

.ping-bars {
  position: absolute;
  left: 50%; bottom: 6px;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
  width: 180px;
}
.ping-bars i {
  display: block;
  width: 100%;
  height: var(--h);
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  border-radius: 3px 3px 0 0;
  animation: bar 1.8s ease-in-out infinite;
  animation-delay: calc(var(--h) * -0.01s);
}
@keyframes bar { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* Slide 2 — social / phone mock */
.phone-mock {
  position: relative;
  width: 148px; height: 280px;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 50px -18px rgba(0,0,0,0.5);
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}
.phone-glow {
  position: absolute;
  inset: 30px 10px;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--green-light), var(--blue-light));
  opacity: 0.35;
  filter: blur(2px);
}
.orbit-icon {
  position: absolute;
  font-size: 1.5rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: float 3.6s ease-in-out infinite;
}
.orbit-icon.o1 { top: 8%; left: 6%; animation-delay: 0s; }
.orbit-icon.o2 { top: 62%; left: 0%; animation-delay: 0.6s; }
.orbit-icon.o3 { top: 2%; right: 4%; animation-delay: 1.2s; }
.orbit-icon.o4 { bottom: 6%; right: 2%; animation-delay: 1.8s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Slide 3 — streaming / tv mock */
.tv-mock {
  position: relative;
  width: 300px; height: 190px;
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,0.5);
}
.tv-stand {
  width: 70px; height: 10px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 6px 6px;
  margin-top: -2px;
}
.tv-play {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  animation: pop 2.4s ease-in-out infinite;
}
.float-chip {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5em 0.9em;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  animation: float 4s ease-in-out infinite;
}
.float-chip.c1 { top: 4%; left: 2%; animation-delay: 0.2s; }
.float-chip.c2 { bottom: 10%; right: 0%; animation-delay: 0.9s; }
.float-chip.c3 { top: 62%; left: -6%; animation-delay: 1.5s; }
@media (max-width: 780px) {
  .float-chip.c3, .orbit-icon.o2 { display: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 6vw, 5rem); }
.section-sand { background: var(--sand); }
.section-navy {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255, 255, 255, 0.75); }

.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Feature grid ---------- */
.grid {
  display: grid;
  gap: var(--gap);
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr !important; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.feature-icon.blue { background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.feature-icon.gold { background: linear-gradient(135deg, var(--gold), var(--orange)); }
.feature-icon.navy { background: linear-gradient(135deg, var(--navy-soft), var(--navy)); }

.card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.card p { font-size: 0.94rem; margin-bottom: 0; }

/* ---------- Plan cards ---------- */
.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.is-featured { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.plan-tag {
  position: absolute;
  top: -13px; left: 1.6rem;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  border-radius: 100px;
}
.plan-speed {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
}
.plan-speed span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.plan-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin: 0.3rem 0 1rem;
}
.plan-price span { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.plan-list {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.plan-list li { display: flex; gap: 0.6em; align-items: flex-start; }
.plan-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-apps-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.app-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.4rem; }
.app-chip {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 0.4em 0.8em;
  border-radius: 100px;
  background: var(--sand);
  border: 1px solid var(--sand-deep);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.app-chip::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.plan-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-top: 1.5rem;
}

/* ---------- Service (empresarial) cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  scroll-margin-top: 100px;
}
.service-card h3 { display: flex; align-items: center; gap: 0.6em; font-size: 1.15rem; }
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.service-nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55em 1.1em;
  border-radius: 100px;
  background: var(--sand);
  color: var(--navy);
  border: 1px solid var(--sand-deep);
  transition: background 0.2s ease, color 0.2s ease;
}
.service-nav a:hover { background: var(--navy); color: var(--white); }

/* ---------- Value / Quem somos ---------- */
.value-card { text-align: left; }
.value-card .feature-icon { margin-bottom: 1.2rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.3em; }
.cta-banner p { margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.contact-info-card h3 { color: var(--white); font-size: 1.1rem; }
.contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding-block: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-row:first-of-type { border-top: none; }
.contact-row .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row strong { display: block; font-family: var(--font-display); font-size: 0.85rem; margin-bottom: 0.15em; }
.contact-row a, .contact-row span { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; }
.contact-row a:hover { color: var(--gold); }

.social-row { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}
.map-frame iframe { width: 100%; height: 240px; border: 0; display: block; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4em;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75em 0.9em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--sand);
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.9rem; }
.form-status { font-size: 0.88rem; margin-top: 0.9rem; display: none; }
.form-status.is-visible { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding-block: 3.2rem 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.68); transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand img { height: 34px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); max-width: 30ch; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

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

/* ---------- Page hero for inner pages ---------- */
.page-hero {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 4.2rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); }
.page-hero .lead { color: rgba(255, 255, 255, 0.75); max-width: 52ch; margin-inline: auto; }
.page-hero .eyebrow { justify-content: center; }

.breadcrumb {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.8); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
