.hero {
  background: linear-gradient(
      rgba(0,0,0,.5),
      rgba(0,0,0,.5)
    ),
    url('../img/banner.jpg') center/cover no-repeat;
  height: 60vh;
}

.hero-slide {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide .overlay {
  background: rgba(0,0,0,.55);
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slide h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-event-link {
  color: #fff;
  text-decoration: none;
  text-shadow: 0 3px 14px rgba(0,0,0,.75);
}

.hero-event-link:hover,
.hero-event-link:focus {
  color: var(--uan-dorado);
  text-decoration: underline;
  text-underline-offset: .25em;
}

:root {
  --uan-azul: #002147;
  --uan-dorado: #cfae70;
}

.navbar .nav-link {
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--uan-dorado) !important;
}

.admin-access-link {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
}

.admin-access-link::before {
  content: '\1F464';
  font-size: .72rem;
  margin-right: .3rem;
}

@media (max-width: 575.98px) {
  .admin-access-link { margin-right: .5rem !important; }
  .navbar-brand { font-size: .82rem; max-width: 55%; white-space: normal; }
}

body {
  font-family: 'Merriweather', serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > footer { margin-top: auto; }

.direccion-hero {
  background: linear-gradient(135deg, #00152e, var(--uan-azul));
  color: #fff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.direccion-kicker {
  color: var(--uan-dorado);
  font-family: system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.direccion-card { border: 0; border-top: 4px solid var(--uan-dorado); }

.direccion-icon {
  align-items: center;
  background: rgba(207, 174, 112, .2);
  border-radius: 50%;
  color: var(--uan-azul);
  display: inline-flex;
  font-family: system-ui, sans-serif;
  font-size: 1.35rem;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.noticia-img {
  height: 180px;   
  object-fit: cover;   
}

.home-carousel-card{background:#fff;border:1px solid #e3e8ef;border-radius:16px;box-shadow:0 10px 30px rgba(0,33,71,.1);overflow:hidden}.home-carousel-heading{align-items:center;background:var(--uan-azul);color:#fff;display:flex;justify-content:space-between;padding:14px 18px}.home-carousel-heading a{color:var(--uan-dorado);font-family:system-ui,sans-serif;font-size:.78rem;font-weight:700;text-decoration:none}.home-carousel-image,.home-carousel-placeholder{height:155px;width:100%}.home-carousel-image{object-fit:cover}.home-carousel-placeholder{align-items:center;background:linear-gradient(135deg,#dfeaf6,#f7f2e8);color:var(--uan-azul);display:flex;font-size:3.5rem;font-weight:700;justify-content:center}.home-carousel-body{min-height:245px;padding:18px 44px 20px}.home-carousel-body h4{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.home-carousel-body>p:not(.home-carousel-date){color:#5e6875;font-family:system-ui,sans-serif;font-size:.9rem}.home-carousel-date{color:#075cac;font-family:system-ui,sans-serif;font-size:.75rem;font-weight:700;text-transform:uppercase}.home-carousel-control{background:var(--uan-azul);border-radius:50%;height:32px;opacity:.8;top:215px;width:32px}.home-carousel-control.carousel-control-prev{left:7px}.home-carousel-control.carousel-control-next{right:7px}.home-carousel-control .carousel-control-prev-icon,.home-carousel-control .carousel-control-next-icon{height:15px;width:15px}.home-carousel-empty{align-items:center;color:#6c757d;display:flex;font-family:system-ui,sans-serif;min-height:400px;padding:30px;text-align:center}

#chatbot-btn{
  position:fixed;
  bottom:24px;
  right:24px;
  align-items:center;
  background:linear-gradient(135deg,#0069d9,#002147);
  border:2px solid rgba(255,255,255,.8);
  box-shadow:0 12px 30px rgba(0,33,71,.35);
  color:white;
  display:flex;
  gap:9px;
  padding:12px 17px 12px 13px;
  border-radius:999px;
  cursor:pointer;
  z-index:9999;
  font-family:system-ui,sans-serif;
  font-weight:700;
  transition:transform .2s ease,box-shadow .2s ease;
}
#chatbot-btn:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 16px 36px rgba(0,33,71,.45)}
#chatbot-btn:focus-visible,#chatbot-close:focus-visible,#chatSend:focus-visible{outline:3px solid var(--uan-dorado);outline-offset:3px}
.chatbot-icon{width:28px;height:28px;position:relative;z-index:1}
.chatbot-label{white-space:nowrap}
.chatbot-pulse{position:absolute;left:10px;width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.3);animation:chatbotPulse 2s infinite}
@keyframes chatbotPulse{0%{transform:scale(.8);opacity:.7}70%,100%{transform:scale(1.5);opacity:0}}

#chatbot-box{
  position:fixed;
  bottom:96px;
  right:24px;
  width:min(370px,calc(100vw - 32px));
  background:white;
  border:1px solid rgba(0,33,71,.12);
  border-radius:18px;
  box-shadow:0 20px 55px rgba(0,0,0,.28);
  overflow:hidden;
  z-index:9999;
  font-family:system-ui,sans-serif;
}

.chat-header{
  align-items:center;
  background:linear-gradient(135deg,#002147,#064f96);
  color:white;
  display:flex;
  gap:10px;
  padding:14px 16px;
}
.chat-header span:nth-child(2){display:flex;flex:1;flex-direction:column}.chat-header small{color:#bce4c8;font-size:.75rem}.chat-avatar{align-items:center;background:rgba(255,255,255,.15);border-radius:50%;display:flex;height:38px;justify-content:center;width:38px}
#chatbot-close{background:transparent;border:0;color:white;font-size:1.7rem;line-height:1;padding:2px 6px}

.chat-body{
  height:290px;
  overflow-y:auto;
  padding:16px;
  font-size:14px;
  background:#f5f8fc;
}
.chat-message{border-radius:14px;margin-bottom:10px;max-width:88%;padding:10px 12px;white-space:pre-wrap}.chat-message.bot{background:white;border:1px solid #dbe5f0;color:#203040}.chat-message.user{background:#075cac;color:white;margin-left:auto}.chat-message.status{background:transparent;color:#667085;font-style:italic;padding-left:0}
.chat-input-wrap{align-items:center;background:white;border-top:1px solid #e2e8f0;display:flex;padding:10px}#chatInput{border:0;flex:1;min-width:0;outline:0;padding:9px}#chatSend{align-items:center;background:#075cac;border:0;border-radius:50%;color:white;display:flex;font-size:1.15rem;height:38px;justify-content:center;width:38px}
.chat-contact-wrap{background:#fff;border-top:1px solid #e2e8f0;padding:9px 14px 5px}.chat-contact-wrap label{color:#475467;display:block;font-size:.72rem;margin-bottom:3px}.chat-contact-wrap input{border:1px solid #d7e0ea;border-radius:8px;font-size:.8rem;padding:6px 8px;width:100%}
@media(max-width:576px){#chatbot-btn{bottom:16px;right:16px}.chatbot-label{display:none}#chatbot-box{bottom:86px;right:16px}.chat-body{height:250px}}@media(prefers-reduced-motion:reduce){.chatbot-pulse{animation:none}#chatbot-btn{transition:none}}
