:root {
  --primary: #0b57d0;
  --secondary: #39c51a;
  --dark: #07142e;
  --dark-soft: #0e2048;
  --text: #eaf1ff;
  --body: #0c1836;
  --muted: #c8d6ff;
  --white: #ffffff;
  --card: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 18px 40px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #2b3f67 0%, #0c1836 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(7,20,46,.82);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
nav { display: flex; flex-wrap: wrap; gap: 18px; }
nav a { color: var(--muted); font-size: 15px; }
nav a:hover { color: var(--white); }
.hero { padding: 72px 0 56px; background: radial-gradient(circle at top right, rgba(57,197,26,.22), transparent 28%), radial-gradient(circle at top left, rgba(11,87,208,.25), transparent 34%); }
.hero-grid, .two-col, .contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 32px; align-items: center; }
.tag {
  display: inline-block; margin-bottom: 16px; padding: 8px 14px; border-radius: 999px;
  background: rgba(57,197,26,.12); color: #b9ff9f; border: 1px solid rgba(57,197,26,.35); font-size: 14px; font-weight: 700;
}
.hero h1, .section h2, .legal-wrap h1 { margin: 0 0 16px; line-height: 1.08; }
.hero h1 { font-size: clamp(2.1rem, 4vw, 4rem); }
.hero p, .section p, .card-body p, .legal-wrap p { color: var(--muted); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 22px; border-radius: 14px; font-weight: 700; transition: .25s ease; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--secondary), #5deb37); color: #04111b; box-shadow: var(--shadow); }
.btn-outline { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.05); color: var(--white); }
.full { width: 100%; }
.hero-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; color: var(--white); }
.hero-card {
  background: linear-gradient(180deg, rgba(11,87,208,.18), rgba(57,197,26,.12));
  border: 1px solid var(--border); border-radius: 24px; padding: 20px; box-shadow: var(--shadow);
}
.hero-card img { width: 100%; border-radius: 20px; }
.section { padding: 72px 0; }
.section.alt { background: rgba(255,255,255,.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.info-box, .location-box, .contact-form, .card {
  background: var(--card); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow);
}
.info-box { padding: 26px; }
.section-head { text-align: center; margin-bottom: 30px; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: 22px 22px 0 0; }
.card-body { padding: 20px; }
.location-box { display: flex; align-items: center; gap: 20px; padding: 28px; }
.location-icon {
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; font-size: 2rem;
  background: linear-gradient(135deg, rgba(11,87,208,.5), rgba(57,197,26,.4));
}
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery img { width: 100%; height: 270px; object-fit: cover; border-radius: 18px; border: 1px solid var(--border); }
.contact-links { display: grid; gap: 12px; margin-top: 24px; }
.contact-pill {
  background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px;
}
.contact-form { padding: 24px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.05);
  color: var(--white); padding: 14px 16px; font: inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #b0bfdc; }
.footer { padding: 24px 0 36px; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); }
.legal-page { background: linear-gradient(180deg, #07142e 0%, #0c1836 100%); }
.legal-wrap { max-width: 900px; padding: 60px 0; }
.legal-wrap h2 { margin-top: 28px; }
@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid, .cards.three, .gallery { grid-template-columns: 1fr 1fr; }
  .nav { flex-direction: column; }
}
@media (max-width: 720px) {
  .hero-grid, .two-col, .contact-grid, .cards.three, .gallery { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  nav { justify-content: center; }
  .location-box { flex-direction: column; text-align: center; }
}

.coverage{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px
}
.cover-item{
  background:#344163;border:1px solid var(--borda);box-shadow:var(--sombra);
  border-radius:24px;padding:22px
}
.cover-item h3{margin:0 0 12px;color:var(--azul);font-size:21px}
.cover-item ul{margin:0;padding-left:18px;color:var(--texto-2);line-height:1.75}
