:root {
  --primary: #004b8d;
  --accent: #f7941d;
  --dark: #0b1220;
  --soft: #f6f8fb;
  --text: #222;
}

* {
  box-sizing: border-box;
}
body {
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  color: var(--text);
}

.brand-logo {
  height: 56px;
  width: auto;
}
.footer-logo {
  height: 44px;
  width: auto;
}

.text-accent {
  color: var(--accent) !important;
}

.btn-accent {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.1rem;
}
.btn-accent:hover {
  filter: brightness(0.95);
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  color: #fff;
  padding: 80px 0;
  background:
    linear-gradient(120deg, rgba(0, 75, 141, 0.92), rgba(11, 18, 32, 0.92)),
    url("https://images.unsplash.com/photo-1545143877-4e7723469520?auto=format&fit=crop&q=80&w=2000");
  background-size: cover;
  background-position: center;
}

.badge-soft {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.icon-pill {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(247, 148, 29, 0.15);
  color: var(--primary);
  flex: 0 0 auto;
}

.kpi {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px 14px;
}
.kpi-number {
  font-weight: 800;
  font-size: 1.15rem;
}
.kpi-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* SECCIONES */
.section {
  padding: 70px 0;
}
.bg-soft {
  background: var(--soft);
}

.section-head {
  margin-bottom: 34px;
}
.section-title {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-subtitle {
  color: #6b7280;
  margin: 0;
}

.service-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  transition: 0.25s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(247, 148, 29, 0.35);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(0, 75, 141, 0.08);
  color: var(--primary);
  font-size: 1.25rem;
}

/* FEATURES */
.feature {
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}
.feature i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(247, 148, 29, 0.15);
  color: var(--primary);
}

.image-panel {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1590486803833-ffc6f98629e8?auto=format&fit=crop&q=80&w=1600");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}
.image-panel-content {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: grid;
  gap: 10px;
}
.mini-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 12px 14px;
}

/* PROCESO */
.step {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  height: 100%;
}
.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 75, 141, 0.1);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

/* PILLS */
.pill {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 600;
  color: #111;
}

/* CONTACTO */
.contact-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}
.contact-mini {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 14px;
  background: var(--soft);
}
.contact-mini i {
  color: var(--primary);
  margin-bottom: 6px;
}

/* FOOTER */
.footer {
  background: linear-gradient(120deg, #0b1220, #0b1220);
  color: #fff;
  padding: 46px 0;
}
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
}
.footer-link:hover {
  color: #fff;
}
.social {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}
.social:hover {
  filter: brightness(1.05);
}

/* FABs */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 999;
  font-size: 1.4rem;
}
.backtop {
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: none;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
