/* ===================================================
   ASADA — Estilos Globales
   =================================================== */

/* ===== VARIABLES ===== */
:root {
  --blue-950: #051929;
  --blue-900: #0c2d48;
  --blue-800: #0e3f60;
  --blue-700: #0369a1;
  --blue-600: #0284c7;
  --blue-500: #0ea5e9;
  --blue-400: #38bdf8;
  --blue-300: #7dd3fc;
  --blue-100: #e0f2fe;
  --blue-50:  #f0f9ff;

  --white: #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);

  --r-sm:   .375rem;
  --r:      .5rem;
  --r-md:   .75rem;
  --r-lg:   1rem;
  --r-xl:   1.5rem;
  --r-full: 9999px;

  --ease: all .3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== UTILIDADES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }

.section-label {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  margin-bottom: .75rem;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--blue-400);
  border-radius: var(--r-full);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--blue-900);
  text-align: center;
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-full);
  font-size: .9375rem;
  font-weight: 600;
  transition: var(--ease);
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary  { background: var(--blue-700); color: var(--white); border-color: var(--blue-700); }
.btn-primary:hover  { background: var(--blue-800); border-color: var(--blue-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover  { background: rgba(255,255,255,.15); border-color: var(--white); transform: translateY(-2px); }
.btn-white    { background: var(--white); color: var(--blue-700); border-color: var(--white); }
.btn-white:hover    { background: var(--blue-50); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost    { background: var(--blue-50); color: var(--blue-700); border-color: var(--blue-100); }
.btn-ghost:hover    { background: var(--blue-100); transform: translateY(-2px); }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* Tarjeta genérica */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .3rem .875rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
}
.badge-blue { background: var(--blue-50); color: var(--blue-700); }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: var(--blue-900);
  transition: var(--ease);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.35); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-icon {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.nav-logo-texts { display: flex; flex-direction: column; line-height: 1.25; }
.nav-logo-name { font-size: .875rem; font-weight: 700; color: var(--white); }
.nav-logo-sub  { font-size: .6875rem; color: var(--blue-300); }

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .875rem;
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-radius: var(--r);
  transition: var(--ease);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.12); }
.nav-link i { font-size: .7rem; transition: transform .25s; }
.nav-link.drop-toggle:hover i { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + .625rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all .22s ease;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
  }
}
.dropdown-section {
  padding: .5rem 1rem .25rem;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-400);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: var(--gray-700);
  transition: var(--ease);
}
.dropdown-item:hover { background: var(--blue-50); color: var(--blue-700); }
.dropdown-item i { width: 18px; color: var(--blue-600); font-size: .875rem; flex-shrink: 0; }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: .25rem 0; }

/* Sub-dropdown (sistemas) */
.dropdown-item.sub {
  padding-left: 2.25rem;
  font-size: .8125rem;
  color: var(--gray-600);
}
.dropdown-item.sub:hover { color: var(--blue-700); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== AVISO BAR ===== */
.aviso-bar {
  margin-top: 72px;
  background: #fef3c7;
  border-bottom: 1px solid #fde68a;
}
.aviso-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.5rem;
  flex-wrap: wrap;
}
.aviso-bar-text {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-wrap: wrap;
  font-size: .875rem;
  color: #78350f;
  line-height: 1.5;
}
.aviso-bar-text strong { font-weight: 700; white-space: nowrap; }
.aviso-bar-close {
  background: none;
  border: none;
  color: #92400e;
  cursor: pointer;
  font-size: .9375rem;
  padding: .25rem;
  flex-shrink: 0;
  transition: var(--ease);
}
.aviso-bar-close:hover { color: #451a03; }

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  z-index: 2500;
  transition: var(--ease);
}
.whatsapp-float i { color: var(--white); font-size: 1.75rem; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 22px rgba(0,0,0,.32); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Referencias/Imagenes/Banner1.jpg.png');
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(5,25,41,.88) 0%,
    rgba(12,45,72,.82) 40%,
    rgba(3,105,161,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.hero-logo {
  width: 110px;
  height: auto;
  margin: 0 auto 1.75rem;
  animation: fadeDown .8s ease both;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,.4));
}

/* Fotos con personas: difuminadas para proteger identidad en la plantilla genérica */
.blur-people {
  filter: blur(9px);
  transform: scale(1.04);
}
.blur-light {
  filter: blur(2.5px);
}
.hero-badge {
  animation: fadeDown .8s ease .1s both;
  margin-bottom: 1.25rem;
  justify-content: center;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.125rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  animation: fadeDown .8s ease .15s both;
}
.hero-title em { font-style: normal; color: var(--blue-300); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 2.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeDown .8s ease .2s both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .3s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.55);
  font-size: .8125rem;
  animation: bounce 2.5s infinite .5s;
  z-index: 2;
}
.hero-scroll i { font-size: 1.25rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS BAR ===== */
.stats-bar { background: var(--blue-700); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.375rem 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .625rem 1rem;
  border-right: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  gap: .2rem;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.stat-label { font-size: .75rem; color: rgba(255,255,255,.78); }
.stat-icon { font-size: 1.125rem; color: var(--blue-300); margin-bottom: .2rem; }

/* ===== SERVICIOS (quick access) ===== */
.services-section { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
}
.service-card:hover { border-color: var(--blue-300); }
.svc-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.25rem;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.service-card:hover .svc-icon { background: var(--blue-700); }
.svc-icon i { font-size: 1.875rem; color: var(--blue-700); transition: var(--ease); }
.service-card:hover .svc-icon i { color: var(--white); }
.svc-title { font-size: 1.125rem; font-weight: 700; color: var(--blue-900); margin-bottom: .5rem; }
.svc-desc  { font-size: .875rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.25rem; }

/* ===== SOBRE NOSOTROS ===== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: .875rem 1.125rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-img-badge i { font-size: 1.5rem; color: var(--blue-700); }
.aib-text strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--blue-900); }
.aib-text span  { font-size: .75rem; color: var(--gray-600); }

.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.about-text p { color: var(--gray-600); line-height: 1.75; margin-bottom: 1.125rem; }
.about-features { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .5rem; }
.about-features li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--gray-700);
}
.about-features li i { color: var(--blue-600); font-size: .875rem; }

/* ===== RECIBOS ===== */
.recibos-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: var(--white);
}
.recibos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}
.recibos-text .section-label { color: var(--blue-300); }
.recibos-text .section-label::before,
.recibos-text .section-label::after { background: var(--blue-500); }
.recibos-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: left;
  color: var(--white);
}
.recibos-text p { color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: 1.5rem; font-size: 1.0625rem; }
.recibos-info { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.recibos-info li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
}
.recibos-info li i { color: var(--blue-300); width: 18px; flex-shrink: 0; }

.recibos-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-xl);
  padding: 2.25rem;
}
.recibos-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.recibos-card p  { font-size: .875rem; color: rgba(255,255,255,.72); margin-bottom: 1.75rem; }
.rc-form-group { margin-bottom: 1rem; }
.rc-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  margin-bottom: .375rem;
}
.rc-input {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r);
  color: var(--white);
  font-size: .9375rem;
  font-family: inherit;
  outline: none;
  transition: var(--ease);
}
.rc-input::placeholder { color: rgba(255,255,255,.45); }
.rc-input:focus { border-color: var(--blue-300); background: rgba(255,255,255,.2); }
.rc-hint { font-size: .75rem; color: rgba(255,255,255,.55); margin-top: .375rem; }

/* ===== NOTICIAS ===== */
.noticias-section { background: var(--gray-50); }
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.noticia-card { overflow: hidden; }
.noticia-img-wrap { overflow: hidden; }
.noticia-img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform .5s ease;
}
.noticia-card:hover .noticia-img { transform: scale(1.06); }
.noticia-body { padding: 1.375rem; }
.noticia-meta {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: .625rem;
}
.noticia-date { font-size: .75rem; color: var(--gray-400); }
.noticia-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: .5rem;
  line-height: 1.4;
}
.noticia-excerpt { font-size: .875rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1rem; }
.noticia-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: var(--ease);
}
.noticia-link:hover { color: var(--blue-900); gap: .6rem; }

/* ===== CONTACTO ===== */
.contacto-section { background: var(--white); }
.contacto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 3.5rem;
  align-items: start;
}
.contacto-info h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: .875rem;
}
.contacto-info p { color: var(--gray-600); line-height: 1.75; margin-bottom: 2rem; font-size: 1rem; }
.ci-items { display: flex; flex-direction: column; gap: 1.125rem; margin-bottom: 2rem; }
.ci-item { display: flex; gap: .875rem; align-items: flex-start; }
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--blue-700); font-size: 1rem; }
.ci-label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); margin-bottom: .15rem; }
.ci-value { font-size: .9375rem; color: var(--blue-900); font-weight: 500; }
.ci-hours { display: flex; flex-direction: column; gap: .125rem; }
.ci-hours span { font-size: .8125rem; color: var(--gray-600); }

.contacto-right { display: flex; flex-direction: column; gap: 1.5rem; }
.map-box {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 270px;
}
#map { width: 100%; height: 100%; }

.contacto-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.contacto-form h3 { font-size: 1.125rem; font-weight: 700; color: var(--blue-900); margin-bottom: 1.375rem; }
.cf-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: .75rem; }
.cf-group { margin-bottom: .875rem; }
.cf-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--gray-700); margin-bottom: .325rem; }
.cf-input {
  width: 100%;
  padding: .625rem .875rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  font-size: .9375rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: var(--ease);
}
.cf-input:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(3,105,161,.1); }
textarea.cf-input { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-950);
  color: rgba(255,255,255,.75);
  padding: 3.75rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .fb-logo {
  height: 90px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 270px; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: .625rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.09);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--ease);
}
.social-links a:hover { background: var(--blue-700); color: var(--white); }

.ft-title {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  margin-bottom: 1.125rem;
}
.ft-links { display: flex; flex-direction: column; gap: .5rem; }
.ft-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: .375rem;
}
.ft-links a::before { content: '›'; font-size: 1rem; line-height: 1; }
.ft-links a:hover { color: var(--blue-300); }

.footer-contact { display: flex; flex-direction: column; gap: .875rem; }
.footer-contact .fci {
  display: flex;
  gap: .625rem;
  align-items: flex-start;
  font-size: .875rem;
}
.footer-contact .fci i { color: var(--blue-400); width: 16px; flex-shrink: 0; margin-top: .2rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
}
.footer-bottom a { color: var(--blue-400); }
.footer-bottom a:hover { color: var(--blue-300); }

/* ===== ANIMACIONES ===== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .6s ease, transform .6s ease; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ===== SUBPAGINAS - PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Referencias/Imagenes/Banner2.jpg') center / cover no-repeat;
  opacity: .12;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.page-hero-label { color: var(--blue-300); }
.page-hero-label::before, .page-hero-label::after { background: var(--blue-400); }
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .875rem;
  line-height: 1.2;
}
.page-hero-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.78); max-width: 500px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.75); transition: var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .625rem; }

/* ===== NOSOTROS PAGE ===== */
.nosotros-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.nos-sidebar {
  position: sticky;
  top: 90px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.nos-sidebar-title {
  background: var(--blue-900);
  color: var(--white);
  padding: .875rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nos-nav { padding: .5rem 0; }
.nos-nav-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  color: var(--gray-700);
  transition: var(--ease);
  border-left: 3px solid transparent;
}
.nos-nav-item:hover { background: var(--blue-50); color: var(--blue-700); }
.nos-nav-item.active { background: var(--blue-50); color: var(--blue-700); border-left-color: var(--blue-700); font-weight: 600; }
.nos-nav-item i { width: 18px; font-size: .875rem; flex-shrink: 0; }

.nos-section { margin-bottom: 3.5rem; }
.nos-section-header { margin-bottom: 2rem; }
.nos-section-header h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: .375rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--blue-100);
}

/* Historia timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-100);
}
.tl-item { position: relative; margin-bottom: 2rem; }
.tl-dot {
  position: absolute;
  left: -2.5rem;
  top: .375rem;
  width: 14px;
  height: 14px;
  background: var(--blue-700);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-300);
}
.tl-year {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-600);
  margin-bottom: .25rem;
}
.tl-title { font-size: 1rem; font-weight: 700; color: var(--blue-900); margin-bottom: .375rem; }
.tl-body  { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; }

/* Misión / Visión */
.mv-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; }
.mv-card { padding: 2rem; border-radius: var(--r-lg); }
.mv-card-mision { background: var(--blue-50); border: 1px solid var(--blue-100); }
.mv-card-vision { background: var(--blue-900); color: var(--white); }
.mv-icon { font-size: 2rem; margin-bottom: 1rem; }
.mv-card-mision .mv-icon { color: var(--blue-700); }
.mv-card-vision .mv-icon { color: var(--blue-300); }
.mv-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem; }
.mv-card-mision .mv-title { color: var(--blue-900); }
.mv-card-vision .mv-title { color: var(--white); }
.mv-text { font-size: .9375rem; line-height: 1.75; }
.mv-card-mision .mv-text { color: var(--gray-700); }
.mv-card-vision .mv-text { color: rgba(255,255,255,.8); }

/* Datos generales */
.datos-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.dato-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.dato-icon { font-size: 2rem; color: var(--blue-700); margin-bottom: .75rem; }
.dato-value { font-size: 1.75rem; font-weight: 800; color: var(--blue-900); line-height: 1; margin-bottom: .375rem; }
.dato-label { font-size: .8125rem; color: var(--gray-600); }

.info-institucional-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: .75rem 2rem; }
.info-institucional-grid span { overflow-wrap: break-word; word-break: break-word; }

/* Junta Directiva */
.junta-photo-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
}
.junta-photo-wrap img { width: 100%; max-height: 360px; object-fit: cover; object-position: top; }
.junta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.junta-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.junta-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-200); transform: translateY(-3px); }
.junta-avatar {
  width: 56px;
  height: 56px;
  background: var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .875rem;
}
.junta-avatar i { font-size: 1.5rem; color: var(--blue-700); }
.junta-nombre { font-size: .9375rem; font-weight: 700; color: var(--blue-900); margin-bottom: .25rem; }
.junta-puesto { font-size: .8125rem; color: var(--blue-600); font-weight: 600; }

/* Sello de calidad */
.sello-intro {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.sello-intro i { font-size: 2.5rem; color: var(--blue-700); flex-shrink: 0; }
.sello-intro h3 { font-size: 1.0625rem; font-weight: 700; color: var(--blue-900); margin-bottom: .375rem; }
.sello-intro p  { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; }
.sello-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.sello-table th {
  background: var(--blue-900);
  color: var(--white);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sello-table th:first-child { border-radius: var(--r) 0 0 0; }
.sello-table th:last-child  { border-radius: 0 var(--r) 0 0; }
.sello-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.sello-table tr:last-child td { border-bottom: none; }
.sello-table tr:hover td { background: var(--blue-50); }
.sello-table a { color: var(--blue-700); font-weight: 500; display: inline-flex; align-items: center; gap: .3rem; }
.sello-table a:hover { color: var(--blue-900); }

/* Red Acueducto - Sistemas */
.sistemas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.sistema-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.sistema-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue-300); }
.sistema-header {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: .875rem;
}
.sistema-num {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.sistema-name { font-weight: 700; color: var(--white); font-size: .9375rem; }
.sistema-body { padding: 1.125rem; }
.sistema-detail { font-size: .875rem; color: var(--gray-600); line-height: 1.65; margin-bottom: .875rem; }
.sistema-specs { display: flex; flex-direction: column; gap: .375rem; }
.sistema-spec {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--gray-600);
}
.sistema-spec i { color: var(--blue-600); width: 14px; }

/* ===== MODAL SISTEMAS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,25,41,.75);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--white);
  border-radius: var(--r-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(.97);
  transition: transform .3s ease;
  position: relative;
  box-shadow: 0 32px 64px rgba(0,0,0,.4);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: .875rem;
  right: .875rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.55);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
}
.modal-close:hover { background: rgba(0,0,0,.8); transform: scale(1.1); }
.modal-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: block;
}
.modal-img-placeholder {
  width: 100%;
  height: 230px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .625rem;
}
.modal-img-placeholder i { font-size: 3.5rem; color: rgba(255,255,255,.3); }
.modal-img-placeholder span { font-size: .875rem; color: rgba(255,255,255,.45); }
.modal-body { padding: 1.625rem; }
.modal-heading {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.375rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--blue-50);
}
.modal-sys-num {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.modal-sys-title { font-size: 1.25rem; font-weight: 800; color: var(--blue-900); line-height: 1.25; }
.modal-sys-sub   { font-size: .8125rem; color: var(--blue-600); font-weight: 600; }
.modal-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: .75rem;
  margin-bottom: 1rem;
}
.modal-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: .875rem;
  display: flex;
  gap: .625rem;
  align-items: flex-start;
}
.modal-stat i {
  color: var(--blue-600);
  width: 18px;
  font-size: .9375rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.modal-stat-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  display: block;
  margin-bottom: .2rem;
}
.modal-stat-value { font-size: .9rem; color: var(--blue-900); font-weight: 600; line-height: 1.3; }
.modal-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .35rem .875rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 700;
}
.modal-badge-sello { background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); }
.modal-badge-prop  { background: var(--gray-100); border: 1px solid var(--gray-200); color: var(--gray-700); }
.modal-footer-note {
  font-size: .8125rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  line-height: 1.55;
}
.modal-footer-note i { color: var(--gray-400); flex-shrink: 0; margin-top: .15rem; }

/* sistema-card clickable */
.sistema-card { cursor: pointer; }

/* ===== TRAMITES PAGE ===== */
.tramites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.tramite-card {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1.375rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.tramite-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-300); transform: translateY(-3px); }
.tramite-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.375rem;
  color: var(--blue-700);
}
.tramite-card:hover .tramite-icon { background: var(--blue-700); color: var(--white); }
.tramite-info { flex: 1; }
.tramite-title { font-size: .9375rem; font-weight: 700; color: var(--blue-900); margin-bottom: .375rem; line-height: 1.4; }
.tramite-desc  { font-size: .8125rem; color: var(--gray-600); line-height: 1.6; margin-bottom: .875rem; }
.tramite-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue-700);
  transition: var(--ease);
}
.tramite-link:hover { color: var(--blue-900); gap: .6rem; }

.tramites-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.tramites-aside {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-top: 3rem;
}
.tramites-aside h3 { font-size: 1.0625rem; font-weight: 700; color: var(--blue-900); margin-bottom: 1rem; }
.ta-item { display: flex; gap: .625rem; align-items: center; margin-bottom: .625rem; font-size: .9375rem; color: var(--gray-700); }
.ta-item i { color: var(--blue-700); width: 18px; flex-shrink: 0; }

/* FAQ Acordeón */
.faq-list { max-width: 760px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--ease);
}
.faq-item.open { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--blue-900);
  text-align: left;
  transition: var(--ease);
}
.faq-question:hover { background: var(--blue-50); }
.faq-question i { color: var(--blue-600); flex-shrink: 0; transition: transform .25s ease; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 1.375rem;
}
.faq-item.open .faq-answer { max-height: 240px; padding: 0 1.375rem 1.25rem; }
.faq-answer p { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .noticias-grid   { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-grid     { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .nosotros-layout { grid-template-columns: 220px minmax(0, 1fr); }
  .datos-grid      { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 768px) {
  /* Hero mobile — el aviso-bar ya despeja el header fijo, solo bajamos un poco el contenido */
  .hero-content {
    padding-top: 32px;
    justify-content: flex-start;
  }
  .hero { align-items: flex-start; }
  .hero-logo { width: 88px; margin-bottom: 1.25rem; }
  .hero-ctas { display: none; }

  /* Nav mobile */
  .nav-menu {
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--blue-900);
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    gap: .125rem;
    display: none;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-menu.open    { display: flex; }
  .hamburger        { display: flex; }
  .nav-link         { padding: .625rem .875rem; }

  .dropdown-menu {
    position: static;
    transform: none !important;
    left: auto;
    box-shadow: none;
    background: rgba(255,255,255,.06);
    border: none;
    border-radius: var(--r);
    margin-top: .25rem;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-dropdown.open .dropdown-menu { display: block; pointer-events: all; }

  /* Corrige visibilidad del sub-menú en móvil */
  .nav-menu .dropdown-menu {
    background: rgba(255,255,255,.08);
    border-left: 3px solid rgba(255,255,255,.15);
    border-radius: 0 var(--r) var(--r) 0;
    margin-left: .5rem;
  }
  .nav-menu .dropdown-menu .dropdown-section {
    color: var(--blue-300);
    font-size: .6875rem;
    font-weight: 700;
    padding-top: .625rem;
  }
  .nav-menu .dropdown-menu .dropdown-item {
    color: rgba(255,255,255,.88);
    background: transparent;
    padding: .5rem 1rem;
  }
  .nav-menu .dropdown-menu .dropdown-item i {
    color: var(--blue-300);
  }
  .nav-menu .dropdown-menu .dropdown-item:hover {
    background: rgba(255,255,255,.12);
    color: var(--white);
  }
  .nav-menu .dropdown-menu .dropdown-divider {
    background: rgba(255,255,255,.12);
  }
  .nav-link i { margin-left: auto; }

  /* Layout */
  .stats-grid    { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .about-grid, .recibos-grid, .contacto-grid { grid-template-columns: minmax(0, 1fr); }
  .services-grid, .noticias-grid { grid-template-columns: minmax(0, 1fr); }
  .mv-grid       { grid-template-columns: minmax(0, 1fr); }
  .datos-grid    { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-grid   { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .625rem; text-align: center; }
  .nosotros-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .nos-sidebar   { display: none; }

  /* Sin sidebar en móvil: centrar el banner y los encabezados de cada sección */
  .page-hero-content { max-width: 100%; margin: 0 auto; text-align: center; }
  .page-hero-content .breadcrumb { justify-content: center; }
  .page-hero-content .page-hero-label { justify-content: center !important; }
  .nos-section-header { text-align: center; }
  .nos-section-header .section-label { justify-content: center !important; }
  .cf-row        { grid-template-columns: minmax(0, 1fr); }
  .hero-ctas     { flex-direction: column; align-items: center; }
  .section       { padding: 3.5rem 0; }
  .contacto-grid { gap: 2rem; }
  .tramites-support-grid  { grid-template-columns: minmax(0, 1fr); }
  .info-institucional-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .datos-grid  { grid-template-columns: minmax(0, 1fr); }
  .junta-grid  { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .sistemas-grid { grid-template-columns: minmax(0, 1fr); }
  .tramites-grid { grid-template-columns: minmax(0, 1fr); }
  .whatsapp-float { width: 50px; height: 50px; bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float i { font-size: 1.5rem; }
  .aviso-bar-text { font-size: .8125rem; }
}
