@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0B3B73;
  --navy-dark: #062B55;
  --teal: #10B9B0;
  --teal-dark: #079B95;
  --ink: #17324D;
  --muted: #64798C;
  --surface: #FFFFFF;
  --bg: #F3F9FA;
  --line: #DCECEF;
  --shadow: 0 20px 60px rgba(11, 59, 115, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(16,185,176,.10), transparent 28rem),
    radial-gradient(circle at 92% 82%, rgba(11,59,115,.08), transparent 32rem),
    var(--bg);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.page {
  min-height: 100svh;
  display: flex;
  justify-content: center;
  padding: 32px 18px;
}

.hero {
  width: min(1080px, 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  text-align: center;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(220,236,239,.9);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  opacity: .45;
}
.glow-one {
  width: 220px; height: 220px;
  top: -110px; left: -80px;
  background: rgba(16,185,176,.13);
}
.glow-two {
  width: 260px; height: 260px;
  bottom: -150px; right: -100px;
  background: rgba(11,59,115,.10);
}

.brand-logo {
  display: block;
  width: min(370px, 72vw);
  max-height: 270px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(16,185,176,.24);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(16,185,176,.08);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(16,185,176,.12);
}

h1 {
  max-width: 760px;
  margin: 22px auto 12px;
  color: var(--navy-dark);
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.lead {
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

.lead strong { color: var(--navy); }

.coverage {
  width: min(650px, 100%);
  margin: 30px auto 0;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: linear-gradient(135deg, rgba(11,59,115,.06), rgba(16,185,176,.08));
  border: 1px solid var(--line);
  border-radius: 18px;
}

.coverage-icon {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 12px;
  font-size: 1.3rem;
}

.coverage div { display: grid; gap: 3px; }
.coverage strong { color: var(--navy); font-size: .95rem; }
.coverage span:not(.coverage-icon) { color: var(--muted); font-size: .86rem; line-height: 1.45; }

.services {
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}

.service-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.service-icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  color: var(--teal-dark);
  background: rgba(16,185,176,.10);
  font-weight: 900;
  font-size: 1.1rem;
}

.service-card h2 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

.contact {
  margin: 44px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-kicker {
  margin: 0 0 5px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact h2 {
  margin: 0 0 22px;
  color: var(--navy-dark);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -.025em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}

.contact-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16,185,176,.35);
  box-shadow: 0 12px 30px rgba(11,59,115,.08);
}

.contact-icon {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--navy);
  font-size: .8rem;
  font-weight: 900;
}

.whatsapp .contact-icon { background: #12A89D; }
.instagram .contact-icon { background: #0B3B73; }
.facebook .contact-icon { background: #174F88; font-family: Arial, sans-serif; font-size: 1.15rem; }

.contact-text {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.contact-text small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.contact-text strong {
  overflow: hidden;
  color: var(--navy);
  font-size: .78rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.arrow {
  margin-left: auto;
  color: var(--teal-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

footer {
  margin-top: 34px;
  color: #8295A4;
  font-size: .76rem;
}
footer span { color: var(--navy); font-weight: 800; }

@media (max-width: 800px) {
  .services,
  .contact-grid { grid-template-columns: 1fr; }

  .service-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 14px;
    align-items: center;
  }

  .service-icon {
    grid-row: span 2;
    margin: 0;
  }

  .service-card h2 { margin: 0 0 3px; }
}

@media (max-width: 560px) {
  .page { padding: 0; }
  .hero {
    min-height: 100svh;
    border-radius: 0;
    border: 0;
    padding: 28px 18px 24px;
  }

  .brand-logo {
    width: min(310px, 82vw);
    max-height: 220px;
  }

  h1 { margin-top: 18px; }

  .lead { line-height: 1.65; }

  .coverage {
    padding: 14px;
    gap: 11px;
  }

  .coverage-icon {
    flex-basis: 38px;
    width: 38px; height: 38px;
  }

  .services { margin-top: 30px; }
  .contact { margin-top: 34px; padding-top: 28px; }

  .contact-card { padding: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .contact-card { transition: none; }
}
