: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); }
.home-obituaries {
  position: relative;
}
.obituary-home-grid {
  position: relative;
  z-index: 1;
  align-items: stretch;
  margin-top: 0;
}
.obituary-home-grid .obituary-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 22px 18px;
}
.obituary-home-grid .obituary-photo {
  width: 96px;
  height: 96px;
  margin-bottom: 14px;
}
.obituary-home-grid .script-label {
  display: none;
}
.obituary-home-grid .obituary-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.05;
}
.obituary-home-grid .obituary-card .btn {
  margin-top: auto;
  align-self: center;
}
.home-obituaries-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
  text-align: center;
}
.home-obituaries-action .btn {
  min-width: 230px;
}

.obituary-tribute-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7,20,34,.76), rgba(7,20,34,.93)),
    var(--tribute-photo, url("../img/sedes/sede-caguan-sala.jpeg")) center / cover no-repeat;
}
.obituary-tribute-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(200,164,93,.18), transparent 18%),
    linear-gradient(90deg, rgba(11,45,77,.34), rgba(11,45,77,.08), rgba(11,45,77,.34));
  pointer-events: none;
}
.tribute-hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 76px 0 70px;
  text-align: center;
}
.tribute-photo {
  width: 124px;
  height: 124px;
  margin: 0 auto 22px;
  padding: 5px;
  border-radius: 50%;
  border: 3px solid var(--dorado-suave);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.tribute-photo img,
.tribute-photo span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  object-fit: cover;
  border-radius: 50%;
  background: #EAF1F4;
  color: var(--azul-profundo);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
}
.tribute-kicker {
  margin: 0 0 10px;
  color: #F2D99C;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.tribute-hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4.9rem);
  line-height: .96;
  letter-spacing: .012em;
  text-shadow: 0 16px 34px rgba(0,0,0,.3);
}
.tribute-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}
.tribute-meta span {
  padding: 7px 14px;
  border-radius: 99px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .92rem;
}
.tribute-message {
  max-width: 650px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,.88);
  font-style: italic;
  font-weight: 500;
}
.tribute-message::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 28px;
  margin-right: 14px;
  vertical-align: middle;
  background: var(--dorado-suave);
}
.tribute-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 26px 0;
}
.tribute-stats div {
  min-width: 120px;
}
.tribute-stats strong {
  display: block;
  color: #F2D99C;
  font-size: 1.2rem;
}
.tribute-stats span {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tribute-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.obituary-tribute-body {
  padding: 68px 0 92px;
  background:
    radial-gradient(circle at 9% 8%, rgba(33,78,122,.05), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(200,164,93,.08), transparent 24%),
    linear-gradient(180deg, #fff, var(--blanco-calido));
  color: var(--texto-principal);
}
.tribute-narrow {
  width: min(920px, calc(100% - 34px));
}
.tribute-section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(11,45,77,.12);
}
.tribute-section:last-child {
  border-bottom: 0;
}
.tribute-section .eyebrow {
  color: var(--azul-institucional);
}
.tribute-section h2 {
  color: var(--azul-profundo);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}
.tribute-section p {
  color: var(--texto-principal);
}
.tribute-data-grid,
.ceremony-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.ceremony-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tribute-data-grid div,
.ceremony-grid div {
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-card);
}
.tribute-data-grid strong,
.ceremony-grid strong {
  display: block;
  color: var(--azul-profundo);
  margin-bottom: 6px;
}
.tribute-data-grid span,
.ceremony-grid p {
  margin: 0;
  color: var(--texto-principal);
}
.tribute-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.condolence-count {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 99px;
  background: var(--azul-profundo);
  color: #fff;
  font-weight: 700;
}
.tribute-condolence-form {
  padding: 26px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-suave);
}
.tribute-condolence-form label {
  color: var(--azul-profundo);
}
.tribute-condolence-form input,
.tribute-condolence-form textarea {
  color: var(--texto-principal);
  background: #fff;
  border-color: var(--borde-suave);
}
.tribute-condolence-form input::placeholder,
.tribute-condolence-form textarea::placeholder {
  color: rgba(16,42,67,.46);
}
.condolence-icon-picker {
  margin: 0 0 22px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--borde-suave);
}
.condolence-icon-picker legend {
  padding: 0 8px;
  color: var(--azul-institucional);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.condolence-icon-picker {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.condolence-icon-picker label {
  display: block;
}
.condolence-icon-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.condolence-icon-picker span {
  min-height: 82px;
  display: grid;
  place-items: center;
  gap: 7px;
  padding: 12px 8px;
  border-radius: 10px;
  background: #F4F8FA;
  border: 1px solid rgba(11,45,77,.14);
  color: var(--azul-profundo);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.condolence-icon-picker .icon-svg {
  width: 24px;
  height: 24px;
  color: var(--azul-institucional);
}
.condolence-icon-picker strong {
  font-size: .78rem;
}
.condolence-icon-picker input:checked + span {
  background: var(--azul-profundo);
  border-color: var(--azul-profundo);
  color: #fff;
  transform: translateY(-1px);
}
.condolence-icon-picker input:checked + span .icon-svg {
  color: #fff;
}
.tribute-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.condolence-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.condolence-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--borde-suave);
  box-shadow: var(--sombra-card);
}
.condolence-list-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #EEF3F7;
  color: var(--azul-profundo);
}
.condolence-list-icon .icon-svg {
  width: 23px;
  height: 23px;
}
.condolence-list strong {
  display: block;
  color: var(--azul-profundo);
}
.condolence-list small {
  color: var(--gris-medio);
}
.condolence-list p {
  margin: 8px 0 0;
}

.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: .84rem;
}
.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: .84rem;
  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;
  }
  .condolence-icon-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .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;
  }
  .obituary-tribute-hero {
    min-height: 610px;
  }
  .tribute-hero-content {
    padding: 54px 0 56px;
  }
  .tribute-photo {
    width: 104px;
    height: 104px;
  }
  .tribute-stats {
    gap: 14px;
  }
  .tribute-stats div {
    min-width: 96px;
  }
  .obituary-tribute-body {
    padding: 48px 0 70px;
  }
  .tribute-section {
    padding: 26px 0;
  }
  .tribute-data-grid,
  .ceremony-grid,
  .condolence-icon-picker {
    grid-template-columns: 1fr;
  }
  .tribute-section-head,
  .tribute-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .tribute-condolence-form {
    padding: 18px;
  }
  .condolence-icon-picker {
    gap: 8px;
  }
  .condolence-icon-picker span {
    min-height: 58px;
    grid-template-columns: 28px 1fr;
    justify-items: start;
    text-align: left;
  }
  .condolence-list article {
    grid-template-columns: 38px 1fr;
    padding: 14px;
  }
  .condolence-list-icon {
    width: 38px;
    height: 38px;
  }
  .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;
  }
}
