:root {
  --azul-profundo: #0B2D4D;
  --azul-institucional: #214E7A;
  --blanco-calido: #F8F7F2;
  --gris-claro: #F2F2F2;
  --gris-medio: #6E6E6E;
  --texto-principal: #102A43;
  --verde-acento: #2BA84A;
  --dorado-suave: #C8A45D;
  --borde-suave: rgba(11,45,77,.14);
  --sombra-suave: 0 18px 42px rgba(11,45,77,.10);
  --sombra-card: 0 8px 24px rgba(11,45,77,.08);
  --radio: 12px;
  --paper:
    radial-gradient(circle at 12% 10%, rgba(11,45,77,.045), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(33,78,122,.055), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(248,247,242,.98));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--texto-principal);
  font-family: Inter, Montserrat, system-ui, sans-serif;
  font-weight: 400;
  background: var(--blanco-calido);
  line-height: 1.62;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(1160px, calc(100% - 34px)); margin: 0 auto; }
.section {
  position: relative;
  padding: 72px 0 88px;
  background: var(--paper);
  overflow: hidden;
}
.section.alt {
  background:
    radial-gradient(circle at 8% 20%, rgba(200,164,93,.08), transparent 24%),
    linear-gradient(180deg, #fff, #F4F4EF);
}
.section::before,
.hero::before,
.admin-login::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background:
    url("data:image/svg+xml,%3Csvg width='160' height='420' viewBox='0 0 160 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230B2D4D' stroke-width='1.2' opacity='.34'%3E%3Cpath d='M78 408C38 310 42 148 98 18'/%3E%3Cpath d='M72 320C44 316 22 298 14 270c30 1 52 18 58 50Z'/%3E%3Cpath d='M78 250C48 244 31 222 30 194c30 5 49 25 48 56Z'/%3E%3Cpath d='M88 176C62 162 54 136 62 110c26 13 38 38 26 66Z'/%3E%3Cpath d='M98 105C78 84 78 58 92 36c22 20 25 46 6 69Z'/%3E%3C/g%3E%3C/svg%3E") left 48px top 20px / 112px auto no-repeat,
    url("data:image/svg+xml,%3Csvg width='160' height='420' viewBox='0 0 160 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230B2D4D' stroke-width='1.2' opacity='.34'%3E%3Cpath d='M82 408c40-98 36-260-20-390'/%3E%3Cpath d='M88 320c28-4 50-22 58-50-30 1-52 18-58 50Z'/%3E%3Cpath d='M82 250c30-6 47-28 48-56-30 5-49 25-48 56Z'/%3E%3Cpath d='M72 176c26-14 34-40 26-66-26 13-38 38-26 66Z'/%3E%3Cpath d='M62 105c20-21 20-47 6-69-22 20-25 46-6 69Z'/%3E%3C/g%3E%3C/svg%3E") right 48px top 20px / 112px auto no-repeat;
}
.section::after,
.cta-band::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -94px;
  height: 150px;
  background: var(--azul-profundo);
  border-top: 6px solid var(--verde-acento);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}
.section-head {
  position: relative;
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head::after,
.ornament::after {
  content: "";
  display: block;
  width: min(390px, 70%);
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--azul-profundo), var(--verde-acento), var(--azul-profundo), transparent);
  opacity: .58;
}
.eyebrow {
  color: var(--azul-institucional);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .12em;
}
.script-label {
  display: inline-block;
  color: var(--verde-acento);
  font-family: Allura, cursive;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1;
}
h1, h2, h3, .section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--azul-profundo);
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1.08;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2.125rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.75rem); }
p { margin: 0 0 16px; }
.muted { color: var(--gris-medio); font-size: .94rem; }
.note {
  margin: 28px auto 0;
  max-width: 880px;
  padding: 15px 18px;
  border: 1px solid var(--borde-suave);
  border-left: 3px solid var(--azul-institucional);
  background: rgba(255,255,255,.82);
  color: var(--gris-medio);
  border-radius: var(--radio);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 9px 28px;
  background: rgba(248,247,242,.97);
  border-bottom: 1px solid rgba(11,45,77,.12);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; min-width: 190px; }
.brand-logo { width: clamp(170px, 14vw, 230px); height: auto; max-height: 58px; object-fit: contain; }
.footer-brand .brand-logo { width: 210px; max-height: none; filter: drop-shadow(0 8px 20px rgba(0,0,0,.2)); }
.main-nav { display: flex; justify-content: center; gap: 16px; font-size: .91rem; font-weight: 500; }
.main-nav a { padding: 9px 0; color: #233a54; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.is-active { color: var(--azul-profundo); border-color: var(--azul-institucional); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--borde-suave); background: #fff; border-radius: 8px; }
.nav-toggle span { display: block; width: 21px; height: 2px; background: var(--azul-profundo); margin: 4px auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(11,45,77,.14); }
.btn-primary { background: var(--azul-profundo); color: #fff; }
.btn-secondary, .btn-soft { background: #EEF3F7; color: var(--azul-profundo); border-color: var(--borde-suave); }
.btn-whatsapp { background: var(--verde-acento); color: #fff; }
.btn-light { background: #fff; color: var(--azul-profundo); border-color: var(--borde-suave); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.08); }
.btn-link { color: var(--azul-profundo); background: transparent; border-color: var(--borde-suave); }

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--azul-profundo);
}
.hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(11,45,77,.95) 0%, rgba(11,45,77,.84) 42%, rgba(11,45,77,.25) 100%),
    url("../img/sedes/sede-caguan-sala.jpeg") center right / cover no-repeat;
}
.hero-curve {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -86px;
  height: 160px;
  background: var(--blanco-calido);
  border-top: 6px solid var(--verde-acento);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-content { position: relative; padding: 84px 0 132px; color: #fff; }
.hero-logo {
  width: clamp(170px, 18vw, 230px);
  height: auto;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.hero h1 { max-width: 760px; color: #fff; text-shadow: 0 10px 22px rgba(0,0,0,.18); }
.hero p { max-width: 700px; font-size: 1.05rem; color: rgba(255,255,255,.92); }
.hero-phrase { color: #F2D99C !important; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero-slider .hero-content { z-index: 2; }
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(11,45,77,.94) 0%, rgba(11,45,77,.80) 44%, rgba(11,45,77,.34) 100%),
    radial-gradient(circle at 78% 36%, rgba(33,78,122,.08), transparent 34%);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  background-size: cover;
  background-position: center;
  transition: opacity .9s ease, transform 6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.home-page .hero h1 {
  max-width: 920px;
  font-size: clamp(2.75rem, 6vw, 5.35rem);
  line-height: .98;
}
.home-page .hero p { font-size: clamp(1.02rem, 1.35vw, 1.22rem); }
.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.hero-slider-controls button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.hero-slider-controls button.is-active {
  width: 54px;
  background: #fff;
}

.home-page .section::after,
.home-page .cta-band::after {
  display: none;
}
.home-page .section {
  padding-top: 78px;
  padding-bottom: 78px;
}
.home-editorial,
.home-feature-grid,
.home-emotional-grid,
.testimonial-layout {
  position: relative;
  z-index: 1;
}
.home-editorial {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}
.home-copy .lead {
  font-size: 1.12rem;
  color: var(--azul-profundo);
}
.home-trust-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}
.home-trust-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--azul-profundo);
  font-weight: 600;
}
.home-trust-list .icon-svg {
  width: 21px;
  height: 21px;
  color: var(--azul-institucional);
}
.home-image-stack {
  position: relative;
  min-height: 430px;
}
.home-image-stack .main-photo {
  height: 430px;
  min-height: 430px;
}
.mini-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: min(310px, calc(100% - 24px));
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.93);
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-suave);
}
.mini-card p { margin-bottom: 0; color: var(--azul-profundo); }
.home-services .grid-3 .card:nth-child(2) {
  transform: translateY(-10px);
}
.home-emotional-band {
  position: relative;
  padding: 76px 0;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(11,45,77,.95), rgba(11,45,77,.78)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}
.home-emotional-band h2 { color: #fff; max-width: 620px; }
.home-emotional-band p { color: rgba(255,255,255,.88); max-width: 650px; }
.home-emotional-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.home-emotional-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}
.home-emotional-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.home-emotional-cards article {
  padding: 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: var(--texto-principal);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.home-emotional-cards h3 { font-size: 1.35rem; }
.home-emotional-cards p { color: var(--gris-medio); font-size: .94rem; }
.home-emotional-cards .icon-dot {
  width: 48px;
  height: 48px;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(260px, .62fr) minmax(0, .88fr);
  gap: 20px;
  align-items: stretch;
}
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-photo-panel {
  min-height: 390px;
  border-radius: 14px;
  border: 1px solid rgba(11,45,77,.12);
  box-shadow: var(--sombra-card);
  background:
    linear-gradient(180deg, rgba(11,45,77,.10), rgba(11,45,77,.22)),
    url("https://images.unsplash.com/photo-1609220136736-443140cffec6?auto=format&fit=crop&w=1200&q=82") center / cover no-repeat;
}
.home-branches .sede-card {
  padding: 18px;
}
.home-branches .sede-image {
  height: 275px;
}
.testimonial-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: center;
}
.testimonial-photo {
  min-height: 360px;
  border-radius: 14px;
  border: 1px solid rgba(11,45,77,.12);
  box-shadow: var(--sombra-suave);
  background:
    linear-gradient(180deg, rgba(11,45,77,.06), rgba(11,45,77,.22)),
    url("https://images.unsplash.com/photo-1491438590914-bc09fcaaf77a?auto=format&fit=crop&w=1100&q=82") center / cover no-repeat;
}

.inner-visual-page .section::after,
.inner-visual-page .cta-band::after {
  display: none;
}
.inner-hero {
  padding-top: 82px;
  padding-bottom: 82px;
}
.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}
.inner-hero .lead {
  font-size: 1.13rem;
  color: var(--azul-profundo);
}
.inner-photo-collage {
  position: relative;
  min-height: 460px;
}
.collage-main {
  width: 86%;
  height: 410px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(11,45,77,.14);
  box-shadow: var(--sombra-suave);
}
.collage-secondary {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 42%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  border: 5px solid rgba(255,255,255,.92);
  box-shadow: var(--sombra-suave);
}
.inner-photo-collage .mini-card {
  left: auto;
  right: 24px;
  bottom: 224px;
  width: min(280px, 78%);
}
.about-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr .9fr 1.15fr;
  gap: 22px;
  align-items: stretch;
}
.story-card {
  min-height: 310px;
}
.family-panel {
  min-height: 360px;
  border-radius: 16px;
  border: 1px solid rgba(11,45,77,.14);
  box-shadow: var(--sombra-suave);
  background:
    linear-gradient(180deg, rgba(11,45,77,.08), rgba(11,45,77,.32)),
    url("../img/sedes/sede-macarena.jpeg") center / cover no-repeat;
}
.value-card {
  text-align: center;
}
.value-card .icon-dot {
  margin-left: auto;
  margin-right: auto;
}
.service-journey {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-journey article {
  padding: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-card);
  text-align: center;
}
.service-journey .icon-dot,
.service-detail-card .icon-dot {
  margin-left: auto;
  margin-right: auto;
}
.service-detail-card {
  text-align: left;
}
.service-detail-card h2 {
  text-align: center;
}
.services-page .service-block-grid .card:nth-child(2) {
  transform: translateY(-12px);
}
.plan-highlight-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.plan-highlight-card {
  text-align: center;
}
.plan-highlight-card .icon-dot {
  margin-left: auto;
  margin-right: auto;
}
.plans-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.plans-page .plan-card {
  min-height: 100%;
}
.plans-page .plan-card .card-actions {
  justify-content: center;
}
.plan-hero-panel {
  position: relative;
  min-height: 450px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,45,77,.14);
  box-shadow: var(--sombra-suave);
}
.plan-hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}
.plan-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,45,77,.06) 35%, rgba(11,45,77,.62));
}
.plan-hero-note {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.plan-hero-note p {
  margin: 6px 0 0;
  color: var(--azul-profundo);
  font-size: 1.08rem;
  font-weight: 500;
}
.plan-portfolio-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-portfolio-card {
  position: sticky;
  top: 98px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    radial-gradient(circle at 18% 12%, rgba(200,164,93,.14), transparent 32%);
  box-shadow: var(--sombra-suave);
}
.plan-portfolio-card .btn {
  width: 100%;
}
.plan-grid-organized {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.plan-grid-organized .plan-card {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.plan-grid-organized .plan-card .icon-dot {
  margin-left: 0;
  margin-right: 0;
}
.plan-grid-organized .plan-card .card-actions {
  margin-top: auto;
  justify-content: flex-start;
}
.plan-portfolio-note {
  grid-column: 2;
  margin-top: 0;
}
.plan-choice-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: center;
}
.plan-choice-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.plan-choice-panel article {
  min-height: 155px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-card);
}
.plan-choice-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--azul-profundo);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}
.plan-choice-panel p {
  margin: 0;
  color: var(--azul-profundo);
  font-weight: 600;
}
.plan-section-head {
  margin-bottom: 24px;
}
.plan-portfolio-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.plan-portfolio-band article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px 14px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-card);
}
.plan-portfolio-band span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--azul-profundo);
  background: #fff;
  border: 1px solid rgba(11,45,77,.18);
  box-shadow: 0 8px 18px rgba(11,45,77,.08);
}
.plan-portfolio-band .icon-svg {
  width: 24px;
  height: 24px;
}
.plan-portfolio-band strong {
  color: var(--azul-profundo);
  font-weight: 600;
}
.plan-portfolio-band p {
  margin: 0;
  color: var(--gris-medio);
  font-size: .92rem;
}
.plan-grid-dynamic {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.plan-grid-dynamic .plan-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}
.plan-grid-dynamic .plan-card .card-actions {
  margin-top: auto;
}
.plan-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.plan-price-box {
  padding: 13px 12px;
  border-radius: 10px;
  background: #F4F7FA;
  border: 1px solid rgba(11,45,77,.12);
  text-align: left;
}
.plan-price-box span {
  display: block;
  color: var(--azul-institucional);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.plan-price-box strong {
  display: block;
  margin-top: 4px;
  color: var(--azul-profundo);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 600;
}
.plan-price-box small {
  display: block;
  margin-top: 5px;
  color: var(--gris-medio);
  font-size: .82rem;
}
.plan-grid-dynamic .plan-card:nth-child(3n+2) {
  transform: translateY(12px);
}
.plan-grid-dynamic .plan-card:hover {
  transform: translateY(6px);
}
.plan-grid-dynamic .plan-card:nth-child(3n+2):hover {
  transform: translateY(6px);
}
.plan-grid-dynamic .plan-card.is-featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.93)),
    radial-gradient(circle at 18% 8%, rgba(200,164,93,.18), transparent 28%);
}
.plan-portfolio-note {
  max-width: none;
  margin-top: 34px;
}
.corporate-visual-panel {
  position: relative;
  min-height: 450px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,45,77,.14);
  box-shadow: var(--sombra-suave);
}
.corporate-visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}
.corporate-visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,45,77,.58));
}
.corporate-metric {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  color: #fff;
  background: rgba(11,45,77,.78);
  backdrop-filter: blur(8px);
}
.corporate-metric strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  line-height: 1;
}
.corporate-metric span {
  font-weight: 600;
}
.corporate-benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.corporate-benefit-card {
  min-height: 250px;
}
.corporate-process {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--azul-profundo);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}
.corporate-form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
}
.proposal-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.90)),
    radial-gradient(circle at 12% 18%, rgba(200,164,93,.13), transparent 30%);
}

.quick-benefits, .grid-2, .grid-3, .grid-4, .plans-grid { display: grid; gap: 22px; }
.quick-benefits { grid-template-columns: repeat(5, 1fr); margin-top: -52px; position: relative; z-index: 2; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  position: relative;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--borde-suave);
  border-radius: var(--radio);
  padding: 24px;
  box-shadow: var(--sombra-card);
  overflow: hidden;
}
.card::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--azul-institucional), var(--verde-acento), transparent);
  opacity: .45;
}
.card:hover { transform: translateY(-2px); transition: transform .2s ease; }
.icon-dot {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--azul-profundo);
  background: #fff;
  border: 1px solid rgba(11,45,77,.2);
  box-shadow: 0 8px 18px rgba(11,45,77,.08);
  margin-bottom: 16px;
}
.icon-svg { width: 26px; height: 26px; display: block; }
.service-card, .plan-card, .obituary-card { text-align: center; }
.service-card .icon-dot, .plan-card .icon-dot, .obituary-card .obituary-photo { margin-left: auto; margin-right: auto; }
.badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--azul-profundo);
  background: #F3E8C8;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.plan-card.is-featured { border-color: rgba(33,78,122,.45); box-shadow: var(--sombra-suave); }
.plan-people { color: var(--azul-profundo); font-weight: 600; }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.editorial-image,
.visual-panel {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(43,168,74,.32);
  box-shadow: var(--sombra-suave);
}
.visual-panel {
  background:
    linear-gradient(145deg, rgba(11,45,77,.7), rgba(33,78,122,.16)),
    url("../img/sedes/sede-caguan-sala.jpeg") center / cover no-repeat;
}

.feature-list, .check-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 12px; }
.feature-list li, .check-list li { padding-left: 30px; position: relative; }
.feature-list li::before, .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(11,45,77,.24);
  color: var(--verde-acento);
  font-weight: 600;
  font-size: .75rem;
}

.coverage-card .icon-dot { color: var(--verde-acento); }
.sede-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(11,45,77,.12);
}
.gallery { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 16px; }
.gallery-tile {
  min-height: 250px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--sombra-card);
  border: 1px solid rgba(11,45,77,.12);
}
.gallery-tile:nth-child(2) { min-height: 310px; }

.locations-visual,
.contact-visual {
  position: relative;
  min-height: 460px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,45,77,.14);
  box-shadow: var(--sombra-suave);
}
.locations-visual img,
.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.locations-visual::after,
.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,45,77,.02) 30%, rgba(11,45,77,.58));
}
.location-floating-card,
.contact-hours-card {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border-radius: 12px;
  color: #fff;
  background: rgba(11,45,77,.82);
  backdrop-filter: blur(8px);
}
.location-floating-card .icon-dot {
  flex: 0 0 auto;
  margin: 0;
  color: var(--azul-profundo);
}
.location-floating-card strong,
.contact-hours-card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .03em;
}
.location-floating-card p,
.contact-hours-card span {
  margin: 4px 0 0;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
}
.location-service-strip,
.contact-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.location-service-strip article {
  padding: 26px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-card);
}
.location-service-strip h2,
.contact-option h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}
.location-service-strip .icon-dot,
.contact-option .icon-dot {
  margin-bottom: 18px;
}
.locations-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.sede-card-enhanced {
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.sede-media {
  position: relative;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 12px;
}
.sede-media .sede-image {
  height: 300px;
  margin: 0;
  border-radius: 0;
  border: 0;
  transition: transform .45s ease;
}
.sede-card-enhanced:hover .sede-image {
  transform: scale(1.035);
}
.sede-media figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(11,45,77,.78);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.sede-body {
  flex: 1;
  padding: 0 6px;
}
.sede-meta,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.sede-meta li,
.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--texto-principal);
}
.sede-meta .icon-svg,
.contact-list .icon-svg {
  width: 22px;
  height: 22px;
  color: var(--azul-institucional);
}
.sede-card-enhanced .card-actions {
  padding: 0 6px 6px;
}
.contact-hours-card {
  justify-content: space-between;
}
.contact-hours-card strong {
  font-size: 3.1rem;
  color: #fff;
}
.contact-service-panel {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(11,45,77,.98), rgba(33,78,122,.86)),
    radial-gradient(circle at 86% 16%, rgba(200,164,93,.22), transparent 28%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--sombra-suave);
  overflow: hidden;
}
.contact-service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    url("data:image/svg+xml,%3Csvg width='220' height='420' viewBox='0 0 220 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='1.2' opacity='.5'%3E%3Cpath d='M108 404C62 294 68 150 146 22'/%3E%3Cpath d='M104 314C70 310 43 289 34 258c36 1 62 22 70 56Z'/%3E%3Cpath d='M116 224C83 215 63 188 65 156c34 8 55 34 51 68Z'/%3E%3Cpath d='M132 130C104 112 98 82 112 52c28 18 38 48 20 78Z'/%3E%3C/g%3E%3C/svg%3E") right -24px bottom -30px / 180px auto no-repeat;
}
.contact-service-panel > * {
  position: relative;
  z-index: 1;
}
.contact-service-header strong {
  display: block;
  margin: 8px 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6.3rem);
  line-height: .86;
  letter-spacing: .02em;
}
.contact-service-header p {
  max-width: 360px;
  color: rgba(255,255,255,.86);
}
.contact-service-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 12px;
}
.contact-service-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.contact-service-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--azul-profundo);
}
.contact-service-list strong {
  display: block;
  color: #fff;
  font-weight: 600;
}
.contact-service-list small {
  color: rgba(255,255,255,.75);
}
.contact-options {
  align-items: stretch;
}
.contact-option {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-option .btn {
  margin-top: auto;
}
.contact-grid,
.affiliate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
}
.contact-info-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.9)),
    radial-gradient(circle at 18% 12%, rgba(200,164,93,.12), transparent 32%);
}
.contact-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11,45,77,.09);
}
.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.contact-form-card,
.affiliate-card,
.map-card {
  box-shadow: var(--sombra-suave);
}
.map-card iframe {
  min-height: 420px;
  box-shadow: inset 0 0 0 1px rgba(11,45,77,.12);
}

.obituary-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--azul-profundo);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-card);
}
.obituary-photo img { width: 100%; height: 100%; object-fit: cover; }
.obituary-card .script-label { display: block; margin-bottom: 8px; color: var(--dorado-suave); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; color: var(--azul-profundo); font-weight: 600; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--borde-suave);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--texto-principal);
}
textarea { min-height: 130px; resize: vertical; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; width: 1px !important; height: 1px !important; }

.cta-band {
  position: relative;
  padding: 58px 0 86px;
  background: var(--azul-profundo);
  color: #fff;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band .eyebrow { color: #D7E3ED; }
.cta-band::after { background: #071e34; bottom: -118px; height: 150px; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.cta-icon { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); }

.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 14% 10%, rgba(33,78,122,.36), transparent 28%),
    linear-gradient(180deg, #08243d, #071e34);
  color: rgba(255,255,255,.82);
  padding: 0 0 0;
  overflow: hidden;
}
.footer-topline {
  height: 7px;
  background: linear-gradient(90deg, var(--azul-institucional), var(--dorado-suave), var(--verde-acento), var(--azul-institucional));
  opacity: .85;
}
.footer-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-action-bar .eyebrow { color: rgba(255,255,255,.62); }
.footer-action-bar strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
}
.footer-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.footer-action-links .btn {
  min-height: 40px;
  padding: 9px 13px;
  margin: 0;
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr .82fr 1fr .82fr;
  gap: 34px;
  padding: 34px 0 34px;
}
.footer-grid-pro > * {
  min-width: 0;
}
.footer-brand-block p {
  max-width: 390px;
}
.footer-brand .brand-logo {
  width: 205px;
  max-height: none;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.18));
}
.site-footer h3 {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 16px;
}
.footer-column a {
  display: table;
  color: rgba(255,255,255,.84);
  margin-bottom: 10px;
  border-bottom: 1px solid transparent;
}
.footer-column a:hover {
  color: #fff;
  border-color: rgba(200,164,93,.75);
}
.footer-slogan {
  color: #F2D99C;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.18;
  margin-top: 16px;
}
.footer-contact p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-contact .icon-svg {
  width: 22px;
  height: 22px;
  color: var(--dorado-suave);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  font-size: .9rem;
}
.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100vw - 40px);
  min-height: 56px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: var(--verde-acento);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(43,168,74,.34);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(43,168,74,.28);
  animation: waPulse 2.4s ease-out infinite;
}
.float-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(43,168,74,.42);
}
.float-whatsapp-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex: 0 0 auto;
}
.float-whatsapp-icon .icon-svg {
  width: 22px;
  height: 22px;
}
.float-whatsapp-text {
  line-height: 1;
  white-space: nowrap;
}
@keyframes waPulse {
  0% { transform: scale(.94); opacity: .72; }
  70% { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}
.flash {
  position: fixed;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  width: min(620px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 8px;
  color: #123;
  background: #e8f7ed;
  border: 1px solid #bde3c8;
  box-shadow: var(--sombra-suave);
}
.flash-error { background: #fff1f1; border-color: #efbbbb; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  background: rgba(7,30,52,.72);
  padding: 20px;
}
.modal.is-open { display: grid; }
.modal-panel { width: min(620px, 100%); max-height: 90vh; overflow: auto; background: #fff; border-radius: 12px; padding: 26px; }
.modal-close { float: right; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--borde-suave); background: #fff; cursor: pointer; }

.admin-body { background: #F4F4EF; }
.admin-menu-toggle,
.admin-menu-overlay {
  display: none;
}
.admin-shell {
  display: grid;
  grid-template-columns: 248px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background:
    linear-gradient(180deg, rgba(11,45,77,.98), rgba(7,30,52,1)),
    var(--azul-profundo);
  color: #fff;
  padding: 16px 14px;
  overflow: auto;
}
.admin-brand { display: grid; gap: 5px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.14); }
.admin-brand .brand-logo { width: 168px; max-height: none; filter: drop-shadow(0 6px 14px rgba(0,0,0,.22)); }
.admin-brand small { color: rgba(255,255,255,.74); font-size: .82rem; line-height: 1.25; }
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(255,255,255,.88);
  margin-bottom: 2px;
  font-size: .9rem;
  font-weight: 600;
}
.admin-sidebar a .icon-svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
.admin-sidebar a:hover { background: rgba(255,255,255,.10); color: #fff; }
.admin-main { padding: 24px; min-width: 0; }
.admin-main > h1 { margin-bottom: 14px; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sombra-card);
  margin-bottom: 18px;
}
.admin-table th, .admin-table td { padding: 10px 12px; border-bottom: 1px solid rgba(11,45,77,.10); text-align: left; vertical-align: top; font-size: .93rem; }
.admin-table th { background: #EAF1F4; color: var(--azul-profundo); font-weight: 600; }
.admin-table td:last-child {
  white-space: nowrap;
}
.admin-table td:last-child form {
  display: inline-flex !important;
  margin: 0 0 0 6px;
}
.admin-table td:last-child a,
.admin-table td:last-child button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(11,45,77,.16);
  border-radius: 8px;
  background: #fff;
  color: var(--azul-profundo);
  font-weight: 600;
  font-size: .88rem;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.admin-table td:last-child a:hover {
  background: #EEF3F7;
  border-color: rgba(11,45,77,.28);
}
.admin-table td:last-child form button {
  color: #7A1E1E;
  border-color: rgba(122,30,30,.18);
}
.admin-table td:last-child form button:hover {
  background: #FFF2F2;
  border-color: rgba(122,30,30,.32);
}
.admin-actions { display: flex; gap: 7px; flex-wrap: wrap; margin: 12px 0; }
.admin-dashboard-card h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 0; }
.admin-main .section-head {
  margin-bottom: 20px;
}
.admin-main .section-head::after {
  margin-top: 10px;
}
.admin-main .card {
  padding: 18px;
  margin-bottom: 14px;
}
.admin-main .card::after {
  width: 110px;
  margin-top: 10px;
}
.admin-main form {
  margin: 0;
}
.admin-main .form-grid {
  gap: 9px 11px;
}
.admin-main label {
  gap: 4px;
  font-size: .88rem;
  line-height: 1.25;
}
.admin-main input,
.admin-main textarea,
.admin-main select {
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 7px;
}
.admin-main textarea {
  min-height: 74px;
}
.admin-main .btn {
  min-height: 38px;
  padding: 8px 14px;
}
.admin-main input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  accent-color: var(--azul-profundo);
}
.admin-main label:has(input[type="checkbox"]),
.admin-main .admin-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
}
.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--sombra-card);
}

.admin-login {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(11,45,77,.96), rgba(33,78,122,.78)),
    url("../img/sedes/sede-caguan-sala.jpeg") center / cover no-repeat;
}
.login-card {
  width: min(470px, 100%);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.login-card .brand-logo { width: 210px; margin: 0 auto 18px; }
.login-card h1 { text-align: center; }
.login-card .muted { text-align: center; margin-bottom: 22px; }

@media (min-width: 641px) and (max-width: 1024px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .main-nav, .header-actions { display: none; grid-column: 1 / -1; justify-content: stretch; width: 100%; }
  .main-nav.is-open, .header-actions.is-open { display: grid; }
  .main-nav { gap: 7px; }
  .main-nav a { display: block; width: 100%; padding: 12px 14px; border: 0; background: #EEF3F7; border-radius: 8px; }
  .header-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-actions .btn { width: 100%; }
  .quick-benefits, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .plans-grid, .grid-3, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-action-bar { align-items: flex-start; }
  .footer-action-links { justify-content: flex-start; }
  .split, .cta-grid, .admin-shell, .inner-hero-grid, .about-story-grid { grid-template-columns: 1fr; }
  .service-journey,
  .plan-highlight-grid,
  .corporate-benefit-grid,
  .process-steps,
  .corporate-process,
  .corporate-form-grid,
  .plan-portfolio-layout,
  .plan-choice-layout,
  .plan-portfolio-band,
  .location-service-strip,
  .locations-grid,
  .contact-options,
  .contact-grid,
  .affiliate-grid { grid-template-columns: 1fr; }
  .plan-portfolio-card { position: relative; top: auto; }
  .plan-portfolio-note { grid-column: 1; }
  .services-page .service-block-grid .card:nth-child(2) { transform: none; }
  .admin-menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 101;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    background: var(--azul-profundo);
    box-shadow: var(--sombra-card);
  }
  .admin-menu-bars {
    display: grid;
    gap: 4px;
  }
  .admin-menu-bars span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }
  .admin-menu-toggle strong { font-size: .9rem; }
  .admin-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(7,30,52,.48);
  }
  .admin-menu-open .admin-menu-overlay { display: block; }
  .admin-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: min(330px, 86vw);
    height: 100vh;
    transform: translateX(105%);
    transition: transform .22s ease;
  }
  .admin-menu-open .admin-sidebar { transform: translateX(0); }
  .admin-main {
    padding: 68px 22px 22px;
  }
  .admin-main .card {
    padding: 16px;
  }
  .admin-main .form-grid {
    gap: 8px 10px;
  }
  .admin-main input,
  .admin-main textarea,
  .admin-main select {
    min-height: 35px;
    padding: 7px 9px;
  }
  .admin-main textarea {
    min-height: 70px;
  }
  .admin-main .btn {
    min-height: 37px;
    padding: 8px 12px;
  }
  .admin-main input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-height: 22px;
  }
  .admin-table {
    min-width: 760px;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { grid-template-columns: auto auto; padding: 9px 14px; }
  .brand { min-width: 0; }
  .brand-logo { width: clamp(135px, 42vw, 165px); max-height: 48px; }
  .hero-logo { width: clamp(135px, 42vw, 165px); }
  .nav-toggle { display: block; justify-self: end; }
  .main-nav, .header-actions { display: none; grid-column: 1 / -1; justify-content: stretch; width: 100%; }
  .main-nav.is-open, .header-actions.is-open { display: grid; }
  .main-nav { gap: 7px; }
  .main-nav a { display: block; width: 100%; padding: 13px 14px; border: 0; background: #EEF3F7; border-radius: 8px; }
  .header-actions { grid-template-columns: 1fr; }
  .hero { min-height: 680px; }
  .home-page .hero h1 { font-size: clamp(2.45rem, 13vw, 3.8rem); }
  .hero-content { padding: 54px 0 110px; }
  .hero p { font-size: 1rem; }
  .section { padding: 54px 0 82px; }
  .quick-benefits, .grid-2, .grid-3, .grid-4, .plans-grid, .footer-grid, .form-grid, .gallery { grid-template-columns: 1fr; }
  .footer-action-bar,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-action-links {
    justify-content: flex-start;
  }
  .footer-action-links .btn {
    width: auto;
    max-width: 100%;
  }
  .footer-brand .brand-logo {
    width: 190px;
  }
  .quick-benefits { margin-top: -34px; }
  .hero-actions, .card-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .home-emotional-actions { flex-direction: column; align-items: stretch; }
  .split, .cta-grid, .admin-shell { grid-template-columns: 1fr; }
  .editorial-image, .visual-panel { min-height: 280px; }
  .home-editorial,
  .home-emotional-grid,
  .home-feature-grid,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }
  .home-image-stack,
  .home-image-stack .main-photo {
    min-height: 310px;
    height: 310px;
  }
  .mini-card {
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }
  .home-emotional-cards {
    grid-template-columns: 1fr;
  }
  .home-photo-panel,
  .testimonial-photo {
    min-height: 280px;
  }
  .home-services .grid-3 .card:nth-child(2) {
    transform: none;
  }
  .inner-hero-grid,
  .about-story-grid,
  .service-journey,
  .plan-highlight-grid,
  .corporate-benefit-grid,
  .process-steps,
  .corporate-process,
  .corporate-form-grid,
  .plan-portfolio-layout,
  .plan-grid-organized,
  .plan-grid-dynamic,
  .plan-choice-layout,
  .plan-choice-panel,
  .plan-portfolio-band,
  .location-service-strip,
  .locations-grid,
  .contact-options,
  .contact-grid,
  .affiliate-grid {
    grid-template-columns: 1fr;
  }
  .inner-photo-collage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }
  .collage-main,
  .collage-secondary {
    position: static;
    width: 100%;
    height: 280px;
    border-width: 1px;
  }
  .inner-photo-collage .mini-card {
    position: static;
    width: 100%;
  }
  .family-panel {
    min-height: 280px;
  }
  .services-page .service-block-grid .card:nth-child(2) {
    transform: none;
  }
  .corporate-visual-panel,
  .corporate-visual-panel img {
    min-height: 300px;
  }
  .plan-hero-panel,
  .plan-hero-panel img {
    min-height: 310px;
  }
  .plan-hero-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .plan-portfolio-card {
    position: relative;
    top: auto;
  }
  .plan-portfolio-note {
    grid-column: 1;
  }
  .plan-grid-organized .plan-card,
  .plan-grid-dynamic .plan-card,
  .plan-grid-organized .plan-card .card-actions,
  .plan-grid-dynamic .plan-card .card-actions {
    text-align: center;
    justify-content: center;
  }
  .plan-grid-organized .plan-card .icon-dot,
  .plan-grid-dynamic .plan-card .icon-dot {
    margin-left: auto;
    margin-right: auto;
  }
  .plan-price-grid {
    grid-template-columns: 1fr;
  }
  .plan-price-box {
    text-align: center;
  }
  .plan-grid-dynamic .plan-card,
  .plan-grid-dynamic .plan-card:nth-child(3n+2),
  .plan-grid-dynamic .plan-card:hover,
  .plan-grid-dynamic .plan-card:nth-child(3n+2):hover {
    transform: none;
  }
  .contact-service-panel {
    min-height: auto;
    padding: 22px;
  }
  .float-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    width: 54px;
    padding: 9px;
    justify-content: center;
  }
  .float-whatsapp-text {
    display: none;
  }
  .corporate-metric {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .locations-visual,
  .locations-visual img,
  .contact-visual,
  .contact-visual img {
    min-height: 310px;
  }
  .location-floating-card,
  .contact-hours-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }
  .contact-hours-card strong {
    font-size: 2.25rem;
  }
  .sede-media .sede-image {
    height: 235px;
  }
  .gallery-tile, .gallery-tile:nth-child(2) { min-height: 220px; }
  .admin-body {
    overflow-x: hidden;
  }
  .admin-menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 101;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 11px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    background: var(--azul-profundo);
    box-shadow: var(--sombra-card);
  }
  .admin-menu-bars {
    display: grid;
    gap: 4px;
  }
  .admin-menu-bars span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }
  .admin-menu-toggle strong { font-size: .88rem; }
  .admin-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(7,30,52,.52);
  }
  .admin-menu-open .admin-menu-overlay { display: block; }
  .admin-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: min(320px, 86vw);
    height: 100vh;
    max-height: none;
    display: block;
    padding: 18px 14px;
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform .22s ease;
  }
  .admin-menu-open .admin-sidebar { transform: translateX(0); }
  .admin-brand {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .admin-brand .brand-logo { width: 160px; }
  .admin-brand small { font-size: .82rem; line-height: 1.3; }
  .admin-sidebar a {
    min-height: 42px;
    margin-bottom: 5px;
    padding: 9px 10px;
    gap: 9px;
    font-size: .92rem;
  }
  .admin-sidebar a .icon-svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
  }
  .admin-main {
    padding: 68px 14px 16px;
    overflow-x: hidden;
  }
  .admin-main .section-head h1,
  .admin-main > h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
  .admin-main .card {
    padding: 12px;
  }
  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table th,
  .admin-table td {
    display: block;
    width: 100%;
  }
  .admin-table {
    min-width: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .admin-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .admin-table tbody {
    display: grid;
    gap: 10px;
  }
  .admin-table tr {
    padding: 10px;
    border: 1px solid var(--borde-suave);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--sombra-card);
  }
  .admin-table td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(11,45,77,.09);
  }
  .admin-table td:last-child { border-bottom: 0; }
  .admin-table td::before {
    content: attr(data-label);
    color: var(--azul-profundo);
    font-weight: 700;
    font-size: .82rem;
  }
  .admin-table td .btn,
  .admin-table td:last-child a,
  .admin-table td:last-child button,
  .admin-table td button,
  .admin-table td form {
    width: 100%;
    margin-top: 6px;
  }
  .admin-table td:last-child {
    white-space: normal;
  }
  .admin-table td:last-child form {
    margin-left: 0;
  }
  .admin-actions .btn,
  .admin-main form .btn {
    width: 100%;
  }
  .admin-main input,
  .admin-main textarea,
  .admin-main select {
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 7px;
  }
  .admin-main textarea {
    min-height: 62px;
  }
  .admin-main label {
    gap: 3px;
    font-size: .82rem;
  }
  .admin-main .form-grid {
    gap: 7px;
  }
  .admin-main .btn {
    min-height: 36px;
    padding: 7px 11px;
  }
  .admin-main input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    flex: 0 0 auto;
  }
  .admin-main label:has(input[type="checkbox"]),
  .admin-main .admin-check-label {
    min-height: 28px;
    justify-content: flex-start;
    gap: 8px;
  }
}

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

/* =========================================================
   MDF BRAND OVERRIDE — Servicios Integrales Manantial de Fe
   Adaptación visual basada en manual de marca 2026
   ========================================================= */
:root {
  --azul-profundo: #1B136C;
  --azul-institucional: #1B136C;
  --azul-noche: #10083F;
  --morado-institucional: #2E0D7F;
  --morado-suave: #39218B;
  --naranja-esperanza: #F6A100;
  --turquesa: #17B8E5;
  --amarillo-acento: #FFD447;
  --blanco-calido: #F8F6FF;
  --gris-claro: #F1EEFB;
  --gris-medio: #6F688A;
  --texto-principal: #170B3E;
  --verde-acento: #17B8E5;
  --dorado-suave: #F6A100;
  --borde-suave: rgba(27,19,108,.12);
  --sombra-suave: 0 22px 55px rgba(27,19,108,.12);
  --sombra-card: 0 18px 45px rgba(27,19,108,.10);
  --radio: 24px;
  --paper: linear-gradient(180deg, #FFFFFF 0%, #F8F6FF 100%);
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--texto-principal);
  background: var(--azul-noche);
}

h1, h2, h3, .section-title {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: var(--azul-profundo);
}

.script-label {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--naranja-esperanza);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--naranja-esperanza);
  font-weight: 900;
  letter-spacing: .12em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 72px;
  padding: 8px 28px;
  background: rgba(14, 7, 60, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.site-header .brand-logo { width: clamp(165px, 14vw, 205px); max-height: 55px; filter: drop-shadow(0 8px 18px rgba(0,0,0,.18)); }
.main-nav { gap: 22px; font-size: .84rem; font-weight: 800; }
.main-nav a { color: rgba(255,255,255,.84); border-bottom: 3px solid transparent; }
.main-nav a:hover, .main-nav a.is-active { color: #fff; border-color: var(--naranja-esperanza); }
.nav-toggle { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.nav-toggle span { background: #fff; }

.btn { border-radius: 999px; min-height: 46px; padding: 13px 22px; font-weight: 900; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--naranja-esperanza), #FFB629); box-shadow: 0 16px 34px rgba(246,161,0,.28); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(246,161,0,.34); }
.btn-secondary, .btn-soft { background: rgba(23,184,229,.14); color: #fff; border-color: rgba(23,184,229,.7); }
.btn-whatsapp { background: #28C75D; color: #fff; }
.btn-light { background: #fff; color: var(--azul-profundo); border-color: rgba(255,255,255,.46); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.08); }
.btn-link { color: var(--azul-profundo); background: transparent; border-color: var(--borde-suave); }

.section, .section.alt {
  background: var(--paper);
  border-radius: 48px 48px 0 0;
}
.section::before { opacity: .06; }
.section::after, .cta-band::after { display: none; }
.section-head h2, .section-title { color: var(--azul-profundo); }
.section-head::after, .ornament::after { background: linear-gradient(90deg, transparent, var(--turquesa), var(--naranja-esperanza), transparent); opacity: .68; }
.card, .plan-card, .benefit-card, .service-card, .sede-card, .obituary-card, .step, .login-card {
  border-radius: 24px;
  border: 1px solid rgba(27,19,108,.10);
  box-shadow: var(--sombra-card);
}

/* Hero web plate */
.hero.mdf-hero {
  position: relative;
  min-height: 680px;
  padding-top: 0;
  display: block;
  background: var(--azul-noche);
}
.hero.mdf-hero .hero-slides::after {
  background:
    linear-gradient(90deg, rgba(16,8,63,.92) 0%, rgba(16,8,63,.70) 36%, rgba(16,8,63,.22) 68%, rgba(16,8,63,.08) 100%),
    linear-gradient(180deg, rgba(16,8,63,.08) 0%, rgba(16,8,63,.62) 100%);
}
.hero.mdf-hero .hero-slide { transform: scale(1.01); transition: opacity 1s ease, visibility 1s ease, transform 6s ease; }
.hero.mdf-hero .hero-slide.is-active { transform: scale(1); }
.hero.mdf-hero .hero-content {
  position: relative;
  z-index: 2;
  min-height: 608px;
  padding: 46px 0 150px;
  display: grid;
  align-content: start;
  color: #fff;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amarillo-acento);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-kicker::before { content: "♥"; }
.hero.mdf-hero h1,
.home-page .hero.mdf-hero h1 {
  max-width: 720px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
  margin-bottom: 16px;
}
.hero.mdf-hero h1 span { display: block; color: var(--naranja-esperanza); }
.hero-divider { display: flex; align-items: center; gap: 18px; width: min(390px,100%); margin: 4px 0 20px; color: #8F54FF; }
.hero-divider::before, .hero-divider::after { content: ""; height: 2px; flex: 1; background: rgba(143,84,255,.72); border-radius: 999px; }
.hero.mdf-hero p,
.home-page .hero.mdf-hero p {
  max-width: 500px;
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 26px;
}
.hero.mdf-hero .hero-actions { gap: 16px; margin-top: 0; }
.hero.mdf-hero .hero-slider-controls { position: absolute; z-index: 8; left: 50%; bottom: 116px; transform: translateX(-50%); margin: 0; }
.hero.mdf-hero .hero-slider-controls button { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.36); }
.hero.mdf-hero .hero-slider-controls button.is-active { width: 34px; background: var(--naranja-esperanza); }
.hero-arrow { position: absolute; top: 50%; z-index: 9; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); background: rgba(16,8,63,.58); color: #fff; display: grid; place-items: center; font-size: 28px; cursor: pointer; transform: translateY(-50%); backdrop-filter: blur(10px); transition: .25s ease; }
.hero-arrow:hover { background: rgba(246,161,0,.92); border-color: rgba(246,161,0,.92); transform: translateY(-50%) scale(1.06); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }
.hero-benefits-wrap { position: absolute; left: 50%; bottom: 0; z-index: 5; width: min(1160px, calc(100% - 38px)); transform: translateX(-50%); }
.hero-benefits { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border-radius: 26px 26px 0 0; background: rgba(28,12,86,.92); border: 1px solid rgba(255,255,255,.10); border-bottom: 0; box-shadow: 0 -18px 55px rgba(0,0,0,.20); backdrop-filter: blur(12px); }
.hero-benefit { padding: 24px 26px; display: flex; align-items: center; gap: 18px; border-right: 1px solid rgba(255,255,255,.10); }
.hero-benefit:last-child { border-right: 0; }
.hero-benefit-icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 64px; color: var(--turquesa); border: 2px solid currentColor; background: rgba(23,184,229,.07); }
.hero-benefit-icon .icon-svg { width: 28px; height: 28px; }
.hero-benefit h3 { color: #fff; font-size: 17px; line-height: 1.1; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 7px; }
.hero-benefit h3 span { color: var(--turquesa); }
.hero-benefit p { margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.45; }

.quick-benefits { margin-top: -30px; position: relative; z-index: 5; }
.quick-benefits .card, .service-card { background: rgba(255,255,255,.94); }
.home-emotional-band, .cta-band {
  background:
    radial-gradient(circle at top right, rgba(23,184,229,.12), transparent 30%),
    linear-gradient(135deg, #110844 0%, #1B136C 55%, #2E0D7F 100%);
}
.home-emotional-band h2, .cta-band h2 { color: #fff; }
.home-emotional-band p, .cta-band p { color: rgba(255,255,255,.78); }
.home-emotional-cards article { background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.10); border-radius: 24px; }
.icon-dot { color: var(--turquesa); border-color: currentColor; background: rgba(23,184,229,.08); }

/* intermediate CTA as white/lilac with yellow button */
.home-corporate .feature-card:first-child,
.soft-cta,
.feature-card {
  background: radial-gradient(circle at 92% 22%, rgba(23,184,229,.16), transparent 28%), linear-gradient(135deg, #FFFFFF 0%, #F4F1FF 100%);
}

.site-footer {
  background: radial-gradient(circle at 14% 10%, rgba(46,13,127,.42), transparent 28%), linear-gradient(180deg, #13084B, #0D0635);
}
.footer-brand .brand-logo { background: transparent; padding: 0; width: 190px; }
.footer-slogan { color: var(--amarillo-acento); font-family: "Montserrat", system-ui, sans-serif; font-weight: 900; letter-spacing: -0.02em; }
.footer-column a:hover, .footer-bottom a:hover { color: var(--amarillo-acento); border-color: rgba(246,161,0,.75); }
.float-whatsapp { background: #28C75D; color: #fff; border-radius: 999px; font-weight: 900; box-shadow: 0 16px 36px rgba(40,199,93,.42); }

.admin-sidebar, .admin-topbar, .admin-menu-toggle { background: var(--azul-profundo); }
.admin-sidebar .brand-logo { background: transparent; }
.admin-main { background: #F8F6FF; }
.admin-card, .admin-main .card { border-radius: 20px; }

@media (max-width: 1024px) {
  .main-nav a { color: var(--azul-profundo); background: rgba(255,255,255,.92); }
  .header-actions .btn-secondary, .header-actions .btn-soft { color: var(--azul-profundo); background: #fff; }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); }
  .hero-benefit:nth-child(2) { border-right: 0; }
  .hero-benefit:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.10); }
}
@media (max-width: 640px) {
  .hero.mdf-hero { min-height: 860px; }
  .hero.mdf-hero .hero-content { min-height: 788px; padding: 42px 0 235px; }
  .hero.mdf-hero h1, .home-page .hero.mdf-hero h1 { font-size: clamp(34px, 11vw, 52px); line-height: 1.04; }
  .hero.mdf-hero p, .home-page .hero.mdf-hero p { max-width: 100%; font-size: 15px; }
  .hero-arrow { top: auto; bottom: 286px; width: 46px; height: 46px; font-size: 24px; }
  .hero-arrow.prev { left: 18px; }
  .hero-arrow.next { right: 18px; }
  .hero-benefits { grid-template-columns: 1fr; }
  .hero-benefit { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); padding: 20px; }
  .hero-benefit:nth-child(3) { grid-column: auto; border-top: 0; border-bottom: 0; }
  .hero.mdf-hero .hero-slider-controls { bottom: 250px; }
  .site-header { background: rgba(14,7,60,.92); }
}

/* =========================================================
   MANANTIAL DE FE - HOME RESCATADO DEL HTML / MANUAL VISUAL
   ========================================================= */
.home-mdf-redesign {
  --azul-profundo: #1B136C;
  --azul-noche: #10083F;
  --morado-institucional: #2E0D7F;
  --morado-suave: #39218B;
  --naranja-esperanza: #F6A100;
  --turquesa: #17B8E5;
  --amarillo-acento: #FFD447;
  --blanco: #FFFFFF;
  --gris-luz: #F8F6FF;
  --gris-card: #F1EEFB;
  --texto-oscuro: #170B3E;
  --texto-suave: #6F688A;
  --whatsapp: #28C75D;
  --sombra-soft-mdf: 0 24px 70px rgba(0, 0, 0, .28);
  --sombra-card-mdf: 0 18px 45px rgba(27, 19, 108, .12);
  --sombra-orange-mdf: 0 16px 34px rgba(246, 161, 0, .28);
  color: var(--texto-oscuro);
  background: var(--azul-noche);
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.home-mdf-redesign h1,
.home-mdf-redesign h2,
.home-mdf-redesign h3,
.home-mdf-redesign .section-title {
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.home-mdf-redesign .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  min-height: 72px;
  background: rgba(14, 7, 60, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}
.home-mdf-redesign .brand-logo {
  width: clamp(160px, 13vw, 190px);
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}
.home-mdf-redesign .main-nav a {
  color: rgba(255,255,255,.86);
  border-bottom-color: transparent;
  font-weight: 800;
}
.home-mdf-redesign .main-nav a:hover,
.home-mdf-redesign .main-nav a.is-active {
  color: #fff;
  border-color: var(--naranja-esperanza);
}
.home-mdf-redesign .header-actions .btn-soft {
  background: linear-gradient(135deg, var(--naranja-esperanza), #FFB629);
  color: #fff;
  border: none;
  box-shadow: var(--sombra-orange-mdf);
}
.home-mdf-redesign .header-actions .btn-whatsapp {
  background: rgba(23,184,229,.14);
  border: 1px solid rgba(23,184,229,.72);
  color: #fff;
}

.home-mdf-redesign .btn {
  border-radius: 999px;
  min-height: 45px;
  padding: 13px 22px;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}
.home-mdf-redesign .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--naranja-esperanza), #FFB629);
  border: none;
  box-shadow: var(--sombra-orange-mdf);
}
.home-mdf-redesign .btn-secondary {
  color: #fff;
  background: rgba(23, 184, 229, .14);
  border: 1px solid rgba(23, 184, 229, .72);
  box-shadow: 0 14px 30px rgba(23, 184, 229, .12);
}
.home-mdf-redesign .btn-light {
  background: #fff;
  color: var(--azul-profundo);
  border-color: rgba(27,19,108,.12);
}

.home-mdf-redesign .hero.mdf-hero {
  position: relative;
  min-height: 680px;
  padding-top: 72px;
  display: block;
  background: var(--azul-noche);
  overflow: hidden;
}
.home-mdf-redesign .hero-slides::after {
  background:
    linear-gradient(90deg, rgba(16, 8, 63, .92) 0%, rgba(16, 8, 63, .70) 36%, rgba(16, 8, 63, .22) 68%, rgba(16, 8, 63, .08) 100%),
    linear-gradient(180deg, rgba(16, 8, 63, .08) 0%, rgba(16, 8, 63, .62) 100%);
}
.home-mdf-redesign .hero-slides::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 95px;
  background: linear-gradient(180deg, transparent, rgba(16, 8, 63, .88));
  pointer-events: none;
}
.home-mdf-redesign .hero-slide {
  transform: scale(1.01);
}
.home-mdf-redesign .hero-slide.is-active {
  transform: scale(1);
}
.home-mdf-redesign .hero-content {
  position: relative;
  z-index: 3;
  min-height: 608px;
  display: grid;
  align-content: start;
  padding: 46px 0 135px;
  color: #fff;
}
.home-mdf-redesign .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amarillo-acento);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.home-mdf-redesign .hero-kicker::before {
  content: "♥";
  color: var(--amarillo-acento);
}
.home-mdf-redesign.home-page .hero h1,
.home-mdf-redesign .hero h1 {
  max-width: 720px;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
  margin-bottom: 16px;
}
.home-mdf-redesign .hero h1 span {
  display: block;
  color: var(--naranja-esperanza);
}
.home-mdf-redesign .hero-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(390px, 100%);
  margin: 4px 0 20px;
  color: #8F54FF;
}
.home-mdf-redesign .hero-divider::before,
.home-mdf-redesign .hero-divider::after {
  content: "";
  height: 2px;
  flex: 1;
  background: rgba(143,84,255,.72);
  border-radius: 999px;
}
.home-mdf-redesign.home-page .hero p,
.home-mdf-redesign .hero [data-hero-text] {
  max-width: 500px;
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 26px;
}
.home-mdf-redesign .hero-actions { gap: 16px; margin-top: 0; }
.home-mdf-redesign .hero-slider-controls {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 116px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  margin: 0;
}
.home-mdf-redesign .hero-slider-controls button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.36);
}
.home-mdf-redesign .hero-slider-controls button.is-active {
  width: 34px;
  background: var(--naranja-esperanza);
}
.home-mdf-redesign .hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(16,8,63,.58);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}
.home-mdf-redesign .hero-arrow:hover {
  background: rgba(246,161,0,.92);
  border-color: rgba(246,161,0,.92);
  transform: translateY(-50%) scale(1.06);
}
.home-mdf-redesign .hero-arrow.prev { left: 28px; }
.home-mdf-redesign .hero-arrow.next { right: 28px; }
.home-mdf-redesign .hero-benefits-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 5;
  transform: translateX(-50%);
}
.home-mdf-redesign .hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  background: rgba(28,12,86,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-bottom: 0;
  box-shadow: 0 -18px 55px rgba(0,0,0,.20);
  backdrop-filter: blur(12px);
}
.home-mdf-redesign .hero-benefit {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.home-mdf-redesign .hero-benefit:last-child { border-right: 0; }
.home-mdf-redesign .hero-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  color: var(--turquesa);
  border: 2px solid currentColor;
  background: rgba(23,184,229,.07);
}
.home-mdf-redesign .hero-benefit-icon .icon-svg { width: 29px; height: 29px; }
.home-mdf-redesign .hero-benefit h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0;
}
.home-mdf-redesign .hero-benefit h3 span { color: var(--turquesa); }
.home-mdf-redesign .hero-benefit p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.45;
}

.home-mdf-redesign .section-light,
.home-mdf-redesign .mdf-web-services,
.home-mdf-redesign .mdf-process {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6FF 100%);
  color: var(--texto-oscuro);
  padding: 82px 0;
  border-radius: 48px 48px 0 0;
}
.home-mdf-redesign .mdf-process { border-radius: 0; }
.home-mdf-redesign .section::before,
.home-mdf-redesign .section::after,
.home-mdf-redesign .mdf-process::before,
.home-mdf-redesign .mdf-process::after { display: none; }
.home-mdf-redesign .mdf-section-title {
  text-align: center;
  margin-bottom: 42px;
}
.home-mdf-redesign .mdf-section-title .mini-heart {
  color: var(--naranja-esperanza);
  font-size: 18px;
  margin-bottom: 8px;
}
.home-mdf-redesign .mdf-section-title h2 {
  margin: 0;
  color: var(--azul-profundo);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.home-mdf-redesign .mdf-section-title h2 span { color: var(--naranja-esperanza); }
.home-mdf-redesign .mdf-section-title p {
  max-width: 690px;
  margin: 16px auto 0;
  color: var(--texto-suave);
  font-size: 15px;
  line-height: 1.65;
}
.home-mdf-redesign .mdf-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.home-mdf-redesign .mdf-service-card {
  min-height: 340px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--sombra-card-mdf);
  background: var(--azul-profundo);
}
.home-mdf-redesign .mdf-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27,19,108,.92), rgba(27,19,108,.45), rgba(27,19,108,.18)),
    linear-gradient(180deg, transparent 40%, rgba(14,7,60,.90) 100%);
  z-index: 1;
}
.home-mdf-redesign .mdf-service-card.family {
  background: url("https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=1300&q=85") center/cover;
}
.home-mdf-redesign .mdf-service-card.pets {
  background: url("https://images.unsplash.com/photo-1601758124510-52d02ddb7cbd?auto=format&fit=crop&w=1300&q=85") center/cover;
}
.home-mdf-redesign .mdf-service-content {
  position: relative;
  z-index: 2;
  padding: 34px;
  color: #fff;
  max-width: 440px;
}
.home-mdf-redesign .service-kicker {
  color: var(--amarillo-acento);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.home-mdf-redesign .mdf-service-content h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.home-mdf-redesign .mdf-service-content p {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.home-mdf-redesign .mdf-soft-cta {
  margin-top: 32px;
  padding: 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 22%, rgba(23,184,229,.16), transparent 28%),
    linear-gradient(135deg, #FFFFFF 0%, #F4F1FF 100%);
  color: var(--texto-oscuro);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(27,19,108,.10);
  box-shadow: 0 22px 55px rgba(27,19,108,.12);
  position: relative;
  overflow: hidden;
}
.home-mdf-redesign .mdf-soft-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  background: linear-gradient(180deg, var(--turquesa), var(--morado-institucional));
}
.home-mdf-redesign .mdf-soft-cta::after {
  content: "♡";
  position: absolute;
  right: 42px;
  bottom: -26px;
  font-size: 150px;
  line-height: 1;
  color: rgba(27,19,108,.045);
  font-weight: 900;
}
.home-mdf-redesign .mdf-soft-cta h3 {
  margin: 0 0 14px;
  color: var(--azul-profundo);
  font-size: clamp(30px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -0.045em;
  position: relative;
  z-index: 1;
}
.home-mdf-redesign .mdf-soft-cta h3 span {
  display: block;
  color: var(--morado-institucional);
}
.home-mdf-redesign .mdf-soft-cta p {
  color: #332762;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.home-mdf-redesign .mdf-soft-cta .btn {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--naranja-esperanza), #FFB629);
  border: none;
  color: #fff;
  box-shadow: var(--sombra-orange-mdf);
}

.home-mdf-redesign .mdf-benefits-dark {
  padding: 84px 0;
  background:
    radial-gradient(circle at top right, rgba(23,184,229,.12), transparent 30%),
    linear-gradient(135deg, #110844 0%, #1B136C 55%, #2E0D7F 100%);
}
.home-mdf-redesign .mdf-section-title.dark h2 { color: #fff; }
.home-mdf-redesign .mdf-section-title.dark p { color: rgba(255,255,255,.70); }
.home-mdf-redesign .mdf-benefits-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.home-mdf-redesign .mdf-value-card {
  padding: 30px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.10);
  text-align: center;
  color: #fff;
  transition: .25s ease;
}
.home-mdf-redesign .mdf-value-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.105);
}
.home-mdf-redesign .mdf-value-card .value-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--turquesa);
  border: 2px solid currentColor;
  background: rgba(23,184,229,.07);
}
.home-mdf-redesign .mdf-value-card .icon-svg { width: 31px; height: 31px; }
.home-mdf-redesign .mdf-value-card h3 {
  color: #fff;
  font-size: 19px;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.home-mdf-redesign .mdf-value-card h3 span { color: var(--turquesa); }
.home-mdf-redesign .mdf-value-card p {
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}
.home-mdf-redesign .mdf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-mdf-redesign .mdf-step {
  background: var(--gris-card);
  border: 1px solid rgba(27,19,108,.09);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 34px rgba(27,19,108,.06);
}
.home-mdf-redesign .mdf-step .step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--morado-institucional);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.home-mdf-redesign .mdf-step h3 {
  color: var(--azul-profundo);
  font-size: 21px;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.home-mdf-redesign .mdf-step p {
  color: var(--texto-suave);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.home-mdf-redesign .mdf-corporate-section,
.home-mdf-redesign .mdf-branches-section,
.home-mdf-redesign .mdf-testimonials-section {
  border-radius: 0;
}
.home-mdf-redesign .mdf-corporate-section .card,
.home-mdf-redesign .mdf-branches-section .card,
.home-mdf-redesign .mdf-testimonials-section .card {
  border-radius: 24px;
  border: 1px solid rgba(27,19,108,.10);
  box-shadow: var(--sombra-card-mdf);
}
.home-mdf-redesign .home-photo-panel,
.home-mdf-redesign .testimonial-photo {
  border-radius: 24px;
  border: 1px solid rgba(27,19,108,.10);
}

.home-mdf-redesign .mdf-final-cta {
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(27,19,108,.95), rgba(46,13,127,.94)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1500&q=85") center/cover;
}
.home-mdf-redesign .mdf-final-cta .cta-box {
  padding: 46px;
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--sombra-soft-mdf);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.home-mdf-redesign .mdf-final-cta h2 {
  color: #fff;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0;
}
.home-mdf-redesign .mdf-final-cta h2 span { color: var(--amarillo-acento); }
.home-mdf-redesign .mdf-final-cta p {
  margin-top: 16px;
  max-width: 710px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.65;
}
.home-mdf-redesign .phone-big {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: .04em;
  color: #fff;
}
.home-mdf-redesign .wa-circle {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 16px 32px rgba(40,199,93,.35);
}
.home-mdf-redesign .wa-circle .icon-svg { width: 30px; height: 30px; }

.home-mdf-redesign .site-footer {
  background: #0D0635;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.09);
}
.home-mdf-redesign .site-footer h3 { color: #fff; }
.home-mdf-redesign .site-footer p,
.home-mdf-redesign .site-footer a { color: rgba(255,255,255,.70); }
.home-mdf-redesign .footer-bottom a { color: rgba(255,255,255,.76); font-weight: 800; }
.home-mdf-redesign .footer-bottom a:hover { color: var(--amarillo-acento); }
.home-mdf-redesign .float-whatsapp {
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 16px 36px rgba(40,199,93,.42);
}

@media (max-width: 1080px) {
  .home-mdf-redesign .mdf-services-grid,
  .home-mdf-redesign .mdf-soft-cta,
  .home-mdf-redesign .mdf-final-cta .cta-box { grid-template-columns: 1fr; }
  .home-mdf-redesign .mdf-benefits-cards { grid-template-columns: repeat(2, 1fr); }
  .home-mdf-redesign .hero-benefits { grid-template-columns: repeat(2, 1fr); }
  .home-mdf-redesign .hero-benefit:nth-child(2) { border-right: 0; }
  .home-mdf-redesign .hero-benefit:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.10); }
}

@media (max-width: 860px) {
  .home-mdf-redesign .site-header { position: sticky; }
  .home-mdf-redesign .main-nav.is-open,
  .home-mdf-redesign .header-actions.is-open {
    background: rgba(14,7,60,.96);
  }
  .home-mdf-redesign .main-nav.is-open a { color: #fff; }
  .home-mdf-redesign .hero.mdf-hero { min-height: 820px; }
  .home-mdf-redesign .hero-content { min-height: 748px; padding: 42px 0 235px; }
  .home-mdf-redesign .hero-arrow { top: auto; bottom: 286px; width: 46px; height: 46px; font-size: 24px; }
  .home-mdf-redesign .hero-arrow.prev { left: 18px; }
  .home-mdf-redesign .hero-arrow.next { right: 18px; }
  .home-mdf-redesign .hero-slider-controls { bottom: 250px; }
  .home-mdf-redesign .hero-benefits { grid-template-columns: 1fr; border-radius: 24px 24px 0 0; }
  .home-mdf-redesign .hero-benefit { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .home-mdf-redesign .hero-benefit:nth-child(3) { grid-column: auto; border-top: 0; border-bottom: 0; }
  .home-mdf-redesign .mdf-steps { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .home-mdf-redesign .hero.mdf-hero { min-height: 860px; }
  .home-mdf-redesign .hero-content { min-height: 788px; }
  .home-mdf-redesign.home-page .hero h1,
  .home-mdf-redesign .hero h1 { font-size: clamp(34px, 11vw, 52px); line-height: 1.04; }
  .home-mdf-redesign .hero-actions .btn { width: 100%; }
  .home-mdf-redesign .mdf-benefits-cards { grid-template-columns: 1fr; }
  .home-mdf-redesign .section-light,
  .home-mdf-redesign .mdf-process,
  .home-mdf-redesign .mdf-benefits-dark,
  .home-mdf-redesign .mdf-final-cta { padding: 64px 0; }
  .home-mdf-redesign .mdf-service-card { min-height: 410px; }
  .home-mdf-redesign .mdf-soft-cta,
  .home-mdf-redesign .mdf-final-cta .cta-box { padding: 30px 22px; }
  .home-mdf-redesign .phone-big { flex-direction: column; align-items: flex-start; }
}
