/* =========================================================
   ENLIX - Hoja de estilos corporativa
   Paleta sobria de azules + tipografía profesional
   ========================================================= */

:root {
  --enlix-blue-900: #0A2540;
  --enlix-blue-800: #0E3A6B;
  --enlix-blue-700: #154A85;
  --enlix-blue-600: #1E5DA8;
  --enlix-blue-500: #2D74C4;
  --enlix-blue-50:  #EAF1F9;

  --enlix-ink:      #16202E;
  --enlix-text:     #2C3848;
  --enlix-muted:    #6B7689;
  --enlix-border:   #DFE5EE;
  --enlix-bg-soft:  #F5F7FB;
  --enlix-bg-grey:  #EDF1F7;

  --enlix-accent:   #C9A24A;  /* gold acento sobrio */

  --font-heading: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 6px;
}

/* ---------- Base ---------- */
html, body {
  font-family: var(--font-body);
  color: var(--enlix-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--enlix-ink);
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-weight: 800; letter-spacing: -0.02em; }

p { color: var(--enlix-text); }

.text-muted-enlix { color: var(--enlix-muted) !important; }

a { color: var(--enlix-blue-700); text-decoration: none; }
a:hover { color: var(--enlix-blue-900); }

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }
}

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--enlix-blue-700);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--enlix-blue-700);
}

/* ---------- Navbar ---------- */
.enlix-navbar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--enlix-border);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(10, 37, 64, 0.02);
}
.enlix-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.enlix-navbar .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--enlix-blue-900);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
.enlix-navbar .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--enlix-blue-900);
}
.enlix-navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--enlix-text);
  padding: 8px 16px !important;
  position: relative;
}
.enlix-navbar .nav-link:hover,
.enlix-navbar .nav-link.active {
  color: var(--enlix-blue-800);
}
.enlix-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: -2px;
  height: 2px;
  background: var(--enlix-blue-700);
}
.enlix-navbar .dropdown-menu {
  border-radius: var(--radius-sm);
  border: 1px solid var(--enlix-border);
  box-shadow: 0 12px 40px -12px rgba(10, 37, 64, 0.18);
  padding: 8px;
  margin-top: 6px;
  min-width: 260px;
}
.enlix-navbar .dropdown-item {
  font-size: 14px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--enlix-text);
}
.enlix-navbar .dropdown-item:hover {
  background: var(--enlix-blue-50);
  color: var(--enlix-blue-900);
}

/* ---------- Buttons ---------- */
.btn-primary-enlix {
  background: var(--enlix-blue-800);
  color: #fff;
  border: 1px solid var(--enlix-blue-800);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background .18s ease, transform .18s ease;
}
.btn-primary-enlix:hover {
  background: var(--enlix-blue-900);
  border-color: var(--enlix-blue-900);
  color: #fff;
}
.btn-outline-enlix {
  background: transparent;
  color: var(--enlix-blue-800);
  border: 1px solid var(--enlix-blue-800);
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
}
.btn-outline-enlix:hover {
  background: var(--enlix-blue-800);
  color: #fff;
}
.btn-ghost-enlix {
  background: transparent;
  color: var(--enlix-blue-800);
  font-weight: 500;
  padding: 10px 0;
}
.btn-ghost-enlix:hover { color: var(--enlix-blue-900); }
.btn-ghost-enlix .arrow { transition: transform .2s ease; display: inline-block; }
.btn-ghost-enlix:hover .arrow { transform: translateX(4px); }

/* ---------- Hero (Inicio) ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, #08203D 0%, #0A2540 60%, #0E3A6B 100%);
  color: #fff;
  overflow: hidden;
  padding: 140px 0 120px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero .hero-line {
  width: 56px; height: 3px;
  background: var(--enlix-accent);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.hero .lead {
  font-size: clamp(18px, 2.1vw, 22px);
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-primary-enlix {
  background: #fff; color: var(--enlix-blue-900); border-color: #fff;
}
.hero .btn-primary-enlix:hover {
  background: var(--enlix-accent); color: var(--enlix-blue-900); border-color: var(--enlix-accent);
}
.hero .btn-outline-enlix {
  border-color: rgba(255,255,255,0.4); color: #fff;
}
.hero .btn-outline-enlix:hover {
  background: rgba(255,255,255,0.08); color: #fff; border-color: #fff;
}

.hero-stats {
  position: relative;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats .stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: #fff;
  line-height: 1;
  display: block;
}
.hero-stats .stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- Page title (interior pages) ---------- */
.page-banner {
  position: relative;
  background: var(--enlix-blue-900);
  color: #fff;
  overflow: hidden;
}
.page-banner .banner-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  opacity: 0.45;
}
.page-banner .banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,32,61,0.85) 0%, rgba(8,32,61,0.55) 70%, rgba(8,32,61,0.3) 100%);
  display: flex; align-items: center;
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.page-banner .crumbs {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-banner .crumbs a { color: rgba(255,255,255,0.7); }
.page-banner .crumbs a:hover { color: #fff; }

/* ---------- Services grid (Inicio) ---------- */
.svc-card {
  background: #fff;
  border: 1px solid var(--enlix-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover {
  border-color: var(--enlix-blue-700);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(10,37,64,0.25);
}
.svc-card .num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--enlix-blue-700);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.svc-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  line-height: 1.3;
}
.svc-card p {
  color: var(--enlix-muted);
  font-size: 14.5px;
  margin: 0 0 22px;
  flex-grow: 1;
}
.svc-card .svc-link {
  font-weight: 500;
  color: var(--enlix-blue-800);
  font-size: 14px;
}
.svc-card .svc-link .arrow { display: inline-block; transition: transform .2s ease; margin-left: 4px; }
.svc-card:hover .svc-link .arrow { transform: translateX(4px); }

/* ---------- Sidebar de servicios ---------- */
.svc-sidebar {
  position: sticky;
  top: 90px;
  background: var(--enlix-bg-soft);
  border: 1px solid var(--enlix-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.svc-sidebar .sidebar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--enlix-muted);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--enlix-border);
}
.svc-sidebar .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 16px;
  margin: 2px 0;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--enlix-text);
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.svc-sidebar .nav-link:hover {
  background: rgba(30, 93, 168, 0.06);
  color: var(--enlix-blue-800);
}
.svc-sidebar .nav-link.active {
  background: #fff;
  color: var(--enlix-blue-900);
  border-left-color: var(--enlix-blue-700);
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(10,37,64,0.04);
}
.svc-sidebar .nav-link .chev {
  color: var(--enlix-muted);
  font-size: 12px;
  opacity: 0;
  transition: opacity .15s ease;
}
.svc-sidebar .nav-link.active .chev,
.svc-sidebar .nav-link:hover .chev { opacity: 1; }

.svc-sidebar .sidebar-cta {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--enlix-border);
}
.svc-sidebar .sidebar-cta p {
  font-size: 13px;
  color: var(--enlix-muted);
  margin: 0 0 12px;
}

/* ---------- Service content ---------- */
.svc-hero-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
}
.svc-hero-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.svc-hero-img .svc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,32,61,0.20) 0%, rgba(8,32,61,0.75) 100%);
  display: flex; align-items: flex-end;
  padding: 40px;
}
.svc-hero-img h1 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.svc-hero-img .badge-svc {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--enlix-accent);
  margin-bottom: 10px;
}

.svc-block {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--enlix-border);
}
.svc-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-block h2 {
  font-size: 26px;
  margin: 0 0 16px;
  line-height: 1.3;
}
.svc-block .svc-block-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--enlix-blue-700);
  margin-bottom: 10px;
}
.svc-block p {
  font-size: 15.5px;
  line-height: 1.75;
}
.svc-block ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.svc-block ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--enlix-text);
}
.svc-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 2px;
  background: var(--enlix-blue-700);
}

/* ---------- Quiénes Somos ---------- */
.mvv-card {
  background: #fff;
  border: 1px solid var(--enlix-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mvv-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; height: 4px; width: 56px;
  background: var(--enlix-blue-700);
}
.mvv-card.accent::before { background: var(--enlix-accent); }
.mvv-card h3 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--enlix-muted);
  margin: 0 0 16px;
  font-weight: 700;
}
.mvv-card h4 {
  font-size: 22px;
  margin: 0 0 14px;
  line-height: 1.3;
}
.mvv-card p { font-size: 15px; line-height: 1.7; }
.mvv-card ul {
  list-style: none; padding: 0; margin: 0;
}
.mvv-card ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--enlix-border);
  font-size: 15px;
  font-weight: 500;
  color: var(--enlix-ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mvv-card ul li:last-child { border-bottom: none; }
.mvv-card ul li::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--enlix-blue-700);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--enlix-blue-900);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.cta-strip p { color: rgba(255,255,255,0.75); margin: 0; }
.cta-strip .btn-primary-enlix {
  background: #fff; color: var(--enlix-blue-900); border-color: #fff;
}
.cta-strip .btn-primary-enlix:hover {
  background: var(--enlix-accent); border-color: var(--enlix-accent);
}

/* ---------- Contact ---------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--enlix-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover {
  border-color: var(--enlix-blue-600);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(10,37,64,0.20);
}
.contact-card .ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--enlix-blue-800);
  box-shadow: 0 8px 18px -8px rgba(10,37,64,0.4);
}
.contact-card.contact-card-phone .ico {
  background: #1F8A4A;
  box-shadow: 0 8px 18px -8px rgba(31,138,74,0.55);
}
.contact-card.contact-card-mail .ico {
  background: var(--enlix-blue-700);
  box-shadow: 0 8px 18px -8px rgba(21,74,133,0.55);
}
.contact-card.contact-card-linkedin .ico {
  background: #0A66C2;
  box-shadow: 0 8px 18px -8px rgba(10,102,194,0.55);
}
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card .label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--enlix-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-card .value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--enlix-ink);
  line-height: 1.3;
  margin: 0;
}
.contact-card .value a {
  color: var(--enlix-ink);
  border-bottom: 1px solid transparent;
}
.contact-card .value a:hover {
  color: var(--enlix-blue-800);
  border-bottom-color: var(--enlix-blue-800);
}
.contact-card .note {
  font-size: 13.5px;
  color: var(--enlix-muted);
  margin-top: 14px;
}

.contact-form {
  background: var(--enlix-bg-soft);
  border: 1px solid var(--enlix-border);
  border-radius: var(--radius-md);
  padding: 40px;
}
.contact-form .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--enlix-ink);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--enlix-border);
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  padding: 11px 14px;
  color: var(--enlix-ink);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--enlix-blue-700);
  box-shadow: 0 0 0 3px rgba(30,93,168,0.15);
}

/* ---------- Footer ---------- */
.enlix-footer {
  background: var(--enlix-blue-900);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.enlix-footer h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}
.enlix-footer ul { list-style: none; padding: 0; margin: 0; }
.enlix-footer ul li { margin-bottom: 10px; font-size: 14.5px; }
.enlix-footer ul li a { color: rgba(255,255,255,0.65); }
.enlix-footer ul li a:hover { color: #fff; }
.enlix-footer .footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 16px;
  display: inline-block;
}
.enlix-footer .footer-tag {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  margin-bottom: 24px;
  line-height: 1.65;
}
.enlix-footer .footer-info {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 6px;
}
.enlix-footer .footer-info span {
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  display: block;
  margin-bottom: 2px;
}
.enlix-footer .footer-bottom {
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Logos strip ---------- */
.logos-strip {
  background: var(--enlix-bg-soft);
  border-top: 1px solid var(--enlix-border);
  border-bottom: 1px solid var(--enlix-border);
  padding: 32px 0;
}
.logos-strip .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--enlix-muted);
  font-weight: 600;
  margin-bottom: 18px;
}
.logos-strip .logo-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--enlix-muted);
  opacity: 0.7;
  letter-spacing: 0.08em;
}

/* ---------- Logo image ---------- */
.enlix-navbar .navbar-brand img.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.enlix-footer .footer-brand-img {
  height: 44px;
  width: auto;
  background: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 22px;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1080;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.55), 0 6px 14px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.wa-float:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 36px -6px rgba(37, 211, 102, 0.65), 0 8px 18px rgba(0,0,0,0.18);
}
.wa-float svg { width: 30px; height: 30px; position: relative; z-index: 2; }
.wa-float .wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.5; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-float .wa-label {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #fff;
  color: var(--enlix-ink);
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 576px) {
  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-float .wa-label { display: none; }
}

/* ---------- Brand logos strip ---------- */
.logos-strip .brand-logo-img {
  height: 30px;
  width: auto;
  max-width: 140px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease;
  object-fit: contain;
}
svg.brand-logo-img { height: 22px; }
.logos-strip .brand-logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---------- Map ---------- */
.map-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--enlix-border);
  box-shadow: 0 24px 50px -28px rgba(10,37,64,0.25);
  background: var(--enlix-bg-soft);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
@media (max-width: 768px) {
  .map-wrap iframe { height: 360px; }
}
.map-info {
  background: #fff;
  border: 1px solid var(--enlix-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.map-info .map-info-row {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--enlix-border);
  align-items: flex-start;
}
.map-info .map-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.map-info .map-info-row:first-child { padding-top: 0; }
.map-info .map-info-row .ico {
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px rgba(10,37,64,0.35);
}
.map-info .map-info-row.row-location .ico { background: #C9A24A; }
.map-info .map-info-row.row-hours    .ico { background: var(--enlix-blue-700); }
.map-info .map-info-row.row-whatsapp .ico { background: #25D366; }
.map-info .map-info-row .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--enlix-muted);
  font-weight: 600;
  margin: 0 0 4px;
}
.map-info .map-info-row .value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--enlix-ink);
  margin: 0;
  line-height: 1.4;
}
.map-info .map-info-row .value a {
  color: var(--enlix-ink);
}
.map-info .map-info-row .value a:hover { color: var(--enlix-blue-800); }

/* ---------- Helpers ---------- */
.divider-accent {
  width: 56px; height: 3px;
  background: var(--enlix-blue-700);
  margin: 0 0 24px;
}
.bg-soft { background: var(--enlix-bg-soft); }
.shadow-soft { box-shadow: 0 18px 40px -20px rgba(10,37,64,0.18); }
