/* ════════════════════════════════════════════════════
   sections.css — Nosotros, Áreas, Equipo, Servicios, CTA, Footer
   ════════════════════════════════════════════════════ */

/* ── Nosotros ────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
/* Sin esto, el tamaño intrínseco de un hijo (ej. el newsCarousel con su
   max-width:580px) obliga a su columna "1fr" a ser al menos así de ancha,
   aplastando la columna vecina — el bug clásico de "grid blowout". */
.about-grid > * { min-width: 0; }
.about-body .lead { max-width: 520px; }
.about-timeline { display: flex; flex-direction: column; margin-top: 32px; }
.abt-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.abt-step:last-child { border-bottom: none; }
.abt-year { font-size: 11px; font-weight: 700; color: var(--teal); min-width: 42px; padding-top: 3px; }
.abt-title { font-size: 14px; font-weight: 700; color: var(--deep); }
.abt-desc  { font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.6; }

.about-img-wrap {
  border-radius: var(--rlg); overflow: hidden;
  aspect-ratio: 4/3; position: relative; box-shadow: var(--shlg); margin-bottom: 28px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(var(--deep-rgb),0.92); color: #fff; backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; line-height: 1.4;
}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card  { border: 1px solid var(--border); border-radius: var(--r); padding: 20px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; row-gap: 10px; }
.value-icon  { font-size: 22px; margin-bottom: 10px; }
.value-img   { height: 56px; width: auto; display: block; grid-row: 1; grid-column: 1; }
.value-name  { font-size: 14px; font-weight: 700; color: var(--deep); grid-row: 1; grid-column: 2; align-self: center; }
.value-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; grid-row: 2; grid-column: 1 / -1; }

/* ── Áreas ───────────────────────────────────────── */
.areas-bg  { background: var(--slate); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.area-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--rlg);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.area-card:hover { box-shadow: var(--shlg); transform: translateY(-3px); }
.area-img  { width: 100%; height: 160px; object-fit: cover; display: block; }
.area-head { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.area-icon { display: none; }
.area-name { font-size: 17px; font-weight: 800; color: var(--deep); margin-bottom: 6px; }
.area-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.area-body { padding: 20px 28px 24px; }
.area-body-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── Equipo: member cards ────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.member-card {
  border: 1px solid var(--border); border-radius: var(--rlg); padding: 28px;
  text-align: center; transition: box-shadow .2s, transform .2s; background: var(--white);
}
.member-card:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.member-card.featured { border-color: var(--deep); border-width: 2px; }
.member-card.featured .member-name { font-size: 16px; }
.member-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; letter-spacing: -1px;
}
.av-audit   { background: rgba(var(--deep-rgb),.1);  color: var(--deep); }
.av-agua    { background: rgba(0,163,177,.12); color: var(--teal2); }
.av-slate   { background: var(--slate);        color: var(--muted); }
.av-suelo   { background: #F5EDD5;             color: #7A5410; }
.av-aire    { background: #D5E7F5;             color: #2878C8; }
.av-lab     { background: rgba(42,158,106,.12); color: #1A7A50; }
.av-soporte { background: rgba(192,86,58,.12);  color: #8F3A22; }
.member-name { font-size: 15px; font-weight: 700; color: var(--deep); margin-bottom: 3px; }
.member-role { font-size: 13px; color: var(--teal2); font-weight: 600; margin-bottom: 6px; }
.member-area { font-size: 12px; color: var(--muted); }
.team-note {
  margin-top: 36px; padding: 20px 24px;
  background: rgba(var(--deep-rgb),.04); border: 1px solid rgba(var(--deep-rgb),.1); border-radius: var(--r);
  font-size: 14px; color: var(--muted); line-height: 1.7; text-align: center;
}
.team-note strong { color: var(--deep); }

/* ── Area lead cards ─────────────────────────────── */
.area-leads-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px;
  grid-auto-rows: 1fr; /* ambas filas con la misma altura */
}
.area-lead-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--rlg);
  overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
  /* columna flexible: header fijo, body estira, botón siempre al fondo */
  display: flex; flex-direction: column;
}
.area-lead-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }

.alc-header {
  padding: 14px 18px; display: flex; flex-direction: column; gap: 3px;
  position: relative; justify-content: center;
  min-height: 68px; /* misma altura tenga el nombre de área 1 o 2 líneas */
}
.alc-agua  { background: linear-gradient(135deg,var(--teal) 0%,var(--teal2) 100%); }
.alc-suelo { background: linear-gradient(135deg,#C49A26 0%,#8B6914 100%); }
.alc-aire  { background: linear-gradient(135deg,#4EA0E0 0%,#2878C8 100%); }
.alc-lab   { background: linear-gradient(135deg,#2A9E6A 0%,#1A7A50 100%); }
.alc-audit   { background: linear-gradient(135deg,var(--deep) 0%,var(--deep2) 100%); }
.alc-soporte { background: linear-gradient(135deg,#C0563A 0%,#8F3A22 100%); }
.alc-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.65);
}
.alc-area  { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; }

.alc-body  { display: flex; align-items: center; gap: 16px; padding: 18px; flex: 1; }
.alc-photo { flex-shrink: 0; }
.alc-photo-img {
  width: 64px; height: 64px; border-radius: 10px; object-fit: cover; display: block;
}
.alc-avatar {
  width: 64px; height: 64px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800; flex-shrink: 0;
}
.alc-body--soporte { align-items: flex-start; gap: 14px; }

.alc-body--multi      { flex-direction: column; align-items: stretch; gap: 10px; }
.alc-multi-item       { display: flex; align-items: center; gap: 10px; }
.alc-multi-item .alc-avatar { width: 42px; height: 42px; font-size: 14px; border-radius: 8px; }
.alc-multi-img        { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0; display: block; }
.alc-multi-info       { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.alc-multi-cargo      { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; opacity: .6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alc-multi-nombre     { font-size: 13px; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alc-body-loading     { width: 100%; min-height: 64px; border-radius: 8px; } /* .skeleton (animations.css) aplica el shimmer */
.alc-body-empty       { width: 100%; text-align: center; font-size: 13px; opacity: .5; padding: 8px 0; }

.alc-soporte-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
  background: rgba(192,86,58,.1); color: #C0563A;
  display: flex; align-items: center; justify-content: center;
}
.alc-lab-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
  background: rgba(42,158,106,.12); color: #2A9E6A;
  display: flex; align-items: center; justify-content: center;
}
.alc-soporte-info { display: flex; flex-direction: column; gap: 6px; }
.alc-soporte-desc { font-size: 13px; color: var(--text); line-height: 1.5; text-align: left; }

.alc-role {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); margin-bottom: 4px;
}
.alc-name    { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 5px; }
.alc-contact {
  font-size: 11px; color: var(--teal2); text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}
.alc-contact:hover { text-decoration: underline; }

.alc-footer { padding: 0 18px 18px; margin-top: auto; }
.alc-btn {
  width: 100%; padding: 9px; border-radius: 8px; cursor: pointer;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  border: 1px solid var(--border); background: var(--slate); color: var(--muted);
  transition: background .15s, color .15s, border-color .15s;
}
.alc-btn:hover { background: var(--deep); color: #fff; border-color: var(--deep); }

/* ── Gallery strip ───────────────────────────────── */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.gallery-item  { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── Servicios ───────────────────────────────────── */
.link-bg { background: var(--slate); }
.mission-quote {
  border-left: 4px solid var(--teal); padding: 20px 24px;
  background: var(--white); border-radius: 0 var(--r) var(--r) 0;
  font-size: 15px; color: var(--text); line-height: 1.75; font-style: italic; margin: 32px 0;
}
.mission-quote cite { display: block; margin-top: 10px; font-size: 12px; font-style: normal; font-weight: 600; color: var(--teal2); }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.svc-card {
  border: 1px solid var(--border); border-radius: var(--rlg);
  background: var(--white); overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.svc-card:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.svc-img  { width: 100%; height: 130px; object-fit: cover; display: block; }
.svc-card-body { padding: 20px 22px 22px; }
.svc-icon { font-size: 26px; margin-bottom: 12px; }
.svc-name { font-size: 15px; font-weight: 700; color: var(--deep); margin-bottom: 6px; }
.svc-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.pillar-card { border: 1px solid var(--border); border-radius: var(--r); padding: 22px; background: var(--white); }
.pillar-icon { font-size: 22px; margin-bottom: 10px; }
.pillar-name { font-size: 14px; font-weight: 700; color: var(--deep); margin-bottom: 5px; }
.pillar-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── CTA ─────────────────────────────────────────── */
.cta-band  { background: linear-gradient(135deg, var(--deep) 0%, #12566e 100%); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-title { font-size: clamp(20px,3vw,30px); font-weight: 800; color: #fff; margin-bottom: 6px; }
.cta-sub   { font-size: 14.5px; color: rgba(255,255,255,.6); }
.cta-btns  { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Gestión de noticias (modal admin) ──────────── */
#noticiasMgmtBar {
  justify-content: flex-end;
  margin-bottom: 6px;
}
.btn-noticia-mgmt {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--teal2);
  background: none; border: 1px solid rgba(0,149,179,.35);
  border-radius: 20px; padding: 5px 13px; cursor: pointer;
  transition: background .15s, color .15s;
}
.btn-noticia-mgmt:hover { background: rgba(0,149,179,.08); color: var(--teal); }
.na-modal { max-width: 560px; }
.na-modal-body { padding: 20px 24px 24px; max-height: 70vh; overflow-y: auto; }
.na-dropzone {
  border: 2px dashed #dde3e9; border-radius: 10px;
  padding: 22px 16px; text-align: center; transition: border-color .15s, background .15s;
  background: #f8fafc; position: relative;
}
.na-dropzone.na-drag-over { border-color: var(--teal); background: rgba(0,149,179,.05); }
.na-drop-inner svg   { opacity: .4; margin-bottom: 8px; }
.na-drop-text        { font-size: 13px; color: var(--muted); margin: 4px 0 10px; }
.na-drop-hint        { display: block; font-size: 11.5px; color: var(--muted); margin-top: 8px; opacity: .7; }
.na-foto-preview     { display: block; max-height: 150px; max-width: 100%; margin: 0 auto; border-radius: 8px; object-fit: cover; }
.na-foto-remove {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 8px; font-size: 12px; color: var(--muted);
  background: none; border: none; cursor: pointer; padding: 4px 8px;
  border-radius: 4px; transition: color .15s, background .15s;
}
.na-foto-remove:hover { color: #c53030; background: rgba(197,48,48,.07); }
.na-current-foto-wrap { margin-bottom: 14px; }
.na-current-foto-lbl  { font-size: 11.5px; color: var(--muted); font-weight: 600; letter-spacing: .03em; margin-bottom: 6px; }
.na-current-foto      { max-height: 110px; max-width: 100%; border-radius: 8px; object-fit: cover; display: block; }
.na-list              { display: flex; flex-direction: column; gap: 8px; }
.na-loading, .na-empty { color: var(--muted); font-size: 13px; text-align: center; padding: 20px 0; }
.na-list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px; background: #f8fafc;
  border: 1px solid #eef0f3; transition: background .15s;
}
.na-list-item:hover { background: #f0f4f8; }
.na-item-baja        { opacity: .5; }
.na-item-thumb       { width: 46px; height: 46px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.na-thumb-empty      { width: 46px; height: 46px; border-radius: 6px; background: #dde3e9; flex-shrink: 0; }
.na-item-info        { flex: 1; min-width: 0; }
.na-item-fecha       { font-size: 11px; color: var(--teal2); font-weight: 600; margin-bottom: 2px; }
.na-item-titulo      { font-size: 13px; color: var(--deep); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.na-badge-baja {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .04em;
  color: #9b2c2c; background: #fff5f5; border: 1px solid #fed7d7;
  border-radius: 4px; padding: 1px 6px; margin-top: 3px;
}
.na-item-actions { flex-shrink: 0; }
.na-btn-edit {
  width: 30px; height: 30px; border-radius: 6px; border: 1px solid #dde3e9;
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .15s, border-color .15s, background .15s;
}
.na-btn-edit:hover { color: var(--teal); border-color: var(--teal); background: rgba(0,149,179,.05); }
.na-back-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--teal2);
  background: none; border: none; cursor: pointer; margin-bottom: 16px; padding: 0;
  transition: color .15s;
}
.na-back-btn:hover       { color: var(--teal); }
.na-edit-actions         { display: flex; gap: 10px; margin-top: 4px; }
.na-btn-toggle-activo    { background: #fff5f5; color: #c53030; border-color: #fed7d7; font-size: 13px; white-space: nowrap; padding: 0 16px; }
.na-btn-toggle-activo:hover { background: #fed7d7; }
.na-btn-alta             { background: #f0fff4; color: #276749; border-color: #c6f6d5; }
.na-btn-alta:hover       { background: #c6f6d5; }
.na-confirm-bar {
  border-radius: 8px; padding: 12px 14px; margin-top: 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  animation: na-fade-in .15s ease;
}
.na-confirm-baja { background: #fff5f5; border: 1px solid #fed7d7; }
.na-confirm-alta { background: #f0fff4; border: 1px solid #c6f6d5; }
.na-confirm-text { font-size: 13px; font-weight: 500; margin: 0; flex: 1; }
.na-confirm-baja .na-confirm-text { color: #742a2a; }
.na-confirm-alta .na-confirm-text { color: #1c4532; }
.na-confirm-btns { display: flex; gap: 8px; flex-shrink: 0; }
.na-btn-confirm-danger { background: #c53030; color: #fff; border-color: #c53030; }
.na-btn-confirm-danger:hover { background: #9b2c2c; border-color: #9b2c2c; }
.na-btn-confirm-ok { background: #276749; color: #fff; border-color: #276749; }
.na-btn-confirm-ok:hover { background: #1c4532; border-color: #1c4532; }
@keyframes na-fade-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ── Equipo admin ─────────────────────────────────── */
.ea-mgmt-btn {
  position: absolute; top: 10px; right: 10px;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.45);
  color: #fff; cursor: pointer;
  transition: background .15s, border-color .15s, transform .12s;
  flex-shrink: 0;
}
.ea-mgmt-btn:hover {
  background: rgba(255,255,255,.32); border-color: rgba(255,255,255,.75);
  transform: scale(1.1);
}

/* Modal */
.ea-modal  { max-width: 600px; }

/* Dropzone rediseñado */
.ea-dropzone {
  border: 2px dashed var(--border); border-radius: 12px;
  background: var(--slate); transition: border-color .15s, background .15s;
  overflow: hidden; margin-bottom: 18px;
}
.ea-dropzone.ea-drag-over { border-color: var(--teal2); background: rgba(0,149,179,.04); }
.ea-drop-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 16px; text-align: center;
}
.ea-drop-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(var(--deep-rgb),.07); color: var(--deep);
  display: flex; align-items: center; justify-content: center;
}
.ea-drop-text { font-size: 13px; font-weight: 500; color: var(--text); }
.ea-drop-btn  {
  font-size: 13px; padding: 6px 16px; border-radius: 7px;
  margin-top: 2px; cursor: pointer;
}
.ea-drop-hint { font-size: 11.5px; color: var(--muted); }

.ea-drop-preview {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
}
.ea-drop-preview img {
  width: 70px; height: 70px; border-radius: 9px;
  object-fit: cover; border: 1.5px solid var(--border); flex-shrink: 0;
}
.ea-drop-remove {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: #c53030;
  background: #fff5f5; border: 1px solid #fed7d7; border-radius: 6px;
  padding: 5px 11px; cursor: pointer; transition: background .15s;
}
.ea-drop-remove:hover { background: #fed7d7; }

/* Dropzone compacta (edit view) */
.ea-dropzone-sm .ea-drop-inner { padding: 14px; gap: 6px; }
.ea-dropzone-sm .ea-drop-icon  { width: 34px; height: 34px; }

/* Foto actual + dropzone en fila */
.ea-foto-edit-row {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px;
}
.ea-foto-actual {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: 10px; border: 1.5px solid var(--border); flex-shrink: 0;
}
.ea-foto-edit-row .ea-dropzone { flex: 1; margin-bottom: 0; }

/* Chips de roles */
.ea-chips-wrap {
  display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px;
}
.ea-chip {
  display: inline-flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: 20px;
  padding: 5px 14px; font-size: 12.5px; font-weight: 500;
  color: var(--muted); background: var(--white);
  cursor: pointer; transition: all .12s; user-select: none;
}
.ea-chip:hover { border-color: var(--deep); color: var(--deep); background: var(--slate); }
.ea-chip.checked {
  background: rgba(var(--deep-rgb),.08); border-color: var(--deep);
  color: var(--deep); font-weight: 600;
}
.ea-chip.checked::before { content: '✓ '; font-size: 11px; font-weight: 800; }
.ea-chips-empty  { font-size: 13px; color: var(--muted); }
.ea-chips-loading { font-size: 13px; color: var(--muted); font-style: italic; }

/* Tags en lista de empleados */
.ea-rol-tag  { display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 10px; background: rgba(var(--deep-rgb),.07); color: var(--deep); font-weight: 500; }
.na-badge-baja { display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 10px; background: #fed7d7; color: #c53030; font-weight: 600; margin-top: 4px; }
.na-item-baja  { opacity: .65; }

/* Búsqueda de empleado existente */
.ea-search-wrap  { margin-bottom: 18px; }
.ea-search-field { padding-right: 32px; }

.ea-dd {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 200;
  background: #fff; border: 1px solid rgba(0,0,0,.12); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); overflow: hidden; max-height: 240px; overflow-y: auto;
}
.ea-dd-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; transition: background .12s;
}
.ea-dd-item:hover  { background: rgba(var(--teal-rgb),.06); }
.ea-dd-foto        { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ea-dd-avatar      { width: 32px; height: 32px; border-radius: 50%; background: var(--teal2); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.ea-dd-nombre      { font-size: 13px; font-weight: 600; color: var(--deep); }
.ea-dd-email       { font-size: 11.5px; color: var(--muted); }
.ea-dd-empty       { padding: 12px 14px; font-size: 13px; color: var(--muted); text-align: center; }

.ea-selected-badge {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 8px; padding: 8px 12px; border-radius: 8px;
  background: rgba(var(--teal-rgb),.08); border: 1px solid rgba(var(--teal-rgb),.2);
}
.ea-selected-nombre { font-size: 13px; font-weight: 600; color: var(--deep); }
.ea-selected-clear  {
  background: none; border: none; cursor: pointer; font-size: 12px;
  color: var(--muted); padding: 2px 6px; border-radius: 5px; transition: background .12s;
}
.ea-selected-clear:hover { background: rgba(0,0,0,.07); color: var(--deep); }

/* ── Footer ──────────────────────────────────────── */
footer { background: var(--deep3); color: rgba(255,255,255,.5); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; }
.footer-logo-name { font-size: 16px; font-weight: 800; color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.footer-utn-logo { height: 34px; width: auto; margin-bottom: 14px; opacity: .9; }
.footer-col a  { display: block; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 8px; cursor: pointer; transition: color .15s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; font-size: 11.5px;
  padding-top: 24px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,.08);
}
