:root {
  /* Nuevos Colores Institucionales */
  --brand-dark-blue: #00578e;
  --brand-light-blue: #1fa9e2;
  --brand-yellow: #ffdb28;
  --brand-green: #2ecc71;
  --brand-red: #e74c3c;

  --text-main: #00578e;
  --text-secondary: #5a6a7e;
  --text-dark: #000000;

  /* Glassmorphism para tema claro */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.8);
  --card-shadow:
    10px 10px 30px rgba(0, 87, 142, 0.1),
    -10px -10px 30px rgba(255, 255, 255, 0.9);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f0f4f8;
  /* Fondo claro */
  color: var(--text-secondary);
  overflow-x: hidden;
  position: relative;
}

/* --- AURORA GRADIENTS BACKGROUND --- */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: #f0f4f8;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.8;
  animation: drift 25s infinite ease-in-out;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--brand-dark-blue);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}
.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--brand-light-blue);
  bottom: 10%;
  right: -10%;
  animation-delay: -8s;
}
.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--brand-yellow);
  top: 40%;
  left: 40%;
  animation-delay: -15s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(200px, -150px) scale(1.1);
  }
  66% {
    transform: translate(-150px, 250px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* --- GLASSMORPHISM NAVBAR --- */
.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 87, 142, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  color: var(--brand-dark-blue) !important;
}
.nav-link {
  color: var(--brand-dark-blue) !important;
  font-weight: 500;
}
.nav-link:hover {
  color: var(--brand-light-blue) !important;
}

/* --- HERO SECTION --- */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.hero-logo-large {
  width: 600px;
  max-width: 90%;
  height: auto;
  margin-bottom: 3rem;
  animation:
    pulse-breathing 4s ease-in-out infinite,
    sudden-glow 10s ease-in-out infinite;
}

@keyframes pulse-breathing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sudden-glow {
  0%,
  90% {
    filter: drop-shadow(0 10px 20px rgba(0, 87, 142, 0.2)) brightness(1);
  }
  95% {
    filter: drop-shadow(0 0 40px rgba(255, 219, 40, 0.9)) brightness(1.2);
  }
  100% {
    filter: drop-shadow(0 10px 20px rgba(0, 87, 142, 0.2)) brightness(1);
  }
}

/* --- SECCIÓN QUÉ ES EVENTFUL --- */
.about-section {
  position: relative;
}

.typing-cursor::after {
  content: "|";
  animation: blink 1s step-end infinite;
  color: var(--brand-light-blue);
}

@keyframes blink {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* --- CLAYMORPHISM CARDS --- */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  color: var(--brand-dark-blue);
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: var(--brand-yellow);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.day-header {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-dark-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.day-header::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--brand-yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 219, 40, 0.6);
}

.event-card {
  background: var(--glass-bg);
  border-radius: 25px;
  padding: 15px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--brand-light-blue);
  box-shadow: 0 15px 30px rgba(31, 169, 226, 0.2);
}

.event-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.event-card:hover .event-img {
  transform: scale(1.05);
}

.event-date-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark-blue);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo para eventos transcurridos */
.event-card.expired .event-img {
  filter: grayscale(100%);
}

.expired-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(231, 76, 60, 0.9);
  color: white;
  padding: 10px 30px;
  border: 3px solid white;
  border-radius: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  z-index: 10;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
  pointer-events: none;
}

.event-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark-blue);
}

.event-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-location {
  color: var(--brand-light-blue);
  font-weight: 500;
}

/* --- UI CALENDAR SECTION --- */
.calendar-container {
  background: rgba(255, 255, 255, 0);
  border-radius: 30px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 87, 142, 0.9);
  box-shadow: var(--card-shadow);
  transition: height 0.3s ease;
}

.calendar-header-text {
  color: var(--brand-dark-blue);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 20px;
  text-align: center;
}

.cal-day-name {
  color: var(--brand-light-blue);
  font-weight: bold;
  margin-bottom: 10px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--brand-dark-blue);
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
}

.cal-day:hover {
  background: white;
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cal-day.empty {
  background: transparent;
  cursor: default;
  box-shadow: none;
}
.cal-day.empty:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.cal-day.active {
  background: var(--brand-dark-blue);
  color: white;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 87, 142, 0.3);
}

.cal-day.has-event::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 6px;
  height: 6px;
  background: var(--brand-dark-blue);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 219, 40, 0.5);
}

.cal-day.active.has-event::after {
  background: var(--brand-yellow);
  border: 1px solid var(--brand-dark-blue);
}

.calendar-nav-btn {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--brand-dark-blue);
  font-size: 1rem;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.calendar-nav-btn:hover:not(:disabled) {
  background: var(--brand-light-blue);
  color: white;
}
.calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #e9ecef;
}

/* --- PROVEEDORES SECTION --- */
.provider-section {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.provider-badge {
  background: var(--brand-green);
  color: white;
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.provider-counter {
  background: white;
  color: var(--brand-dark-blue);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  animation: bounce-gentle 3s infinite;
}

@keyframes bounce-gentle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* --- BOTONES --- */
.btn-glass {
  background: var(--brand-dark-blue);
  border: none;
  color: white;
  border-radius: 50px;
  padding: 8px 25px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 87, 142, 0.3);
}

.btn-glass:hover {
  background: var(--brand-light-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(31, 169, 226, 0.4);
}

.btn-glass:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary-glass {
  background: white;
  color: var(--brand-dark-blue);
  border: 1px solid var(--brand-dark-blue);
  border-radius: 50px;
  padding: 8px 25px;
  transition: 0.3s;
}

.btn-secondary-glass:hover {
  background: #f0f4f8;
  color: var(--brand-dark-blue);
}

.btn-green-pulse {
  background: var(--brand-green);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulse-green 2s infinite;
  transition: 0.3s;
}

.btn-green-pulse:hover {
  background: #27ae60;
  color: white;
  transform: scale(1.05);
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* --- MODAL STYLES --- */
.modal-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid white;
  color: var(--text-secondary);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.modal-header {
  border-bottom: 1px solid rgba(0, 87, 142, 0.1);
}
.modal-title {
  color: var(--brand-dark-blue);
}
.modal-footer {
  border-top: 1px solid rgba(0, 87, 142, 0.1);
}
.btn-close {
  filter: none;
}

/* --- FORM STEPS STYLES --- */
.progress-bar-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e9ecef;
  z-index: 0;
  transform: translateY(-50%);
}
.progress-line-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: var(--brand-dark-blue);
  z-index: 0;
  transform: translateY(-50%);
  width: 0%;
  transition: width 0.4s ease;
}
.step-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
  position: relative;
  transition: all 0.4s ease;
}
.step-circle.active {
  background: var(--brand-dark-blue);
  color: white;
  box-shadow: 0 0 0 5px rgba(0, 87, 142, 0.2);
}
.step-circle.completed {
  background: var(--brand-green);
  color: white;
}

.form-section-title {
  color: var(--brand-dark-blue);
  font-weight: 700;
  border-bottom: 2px solid var(--brand-yellow);
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.form-check-input:checked {
  background-color: var(--brand-dark-blue);
  border-color: var(--brand-dark-blue);
}

/* --- CHATBOT & EXTRAS --- */
.chat-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: var(--brand-dark-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0, 87, 142, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.chat-float-btn:hover {
  transform: scale(1.1);
  background: var(--brand-light-blue);
}

.chat-window {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 380px;
  height: 550px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border: 1px solid white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.chat-window.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  background: var(--brand-dark-blue);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}
.msg-bot {
  background: white;
  color: var(--text-secondary);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.msg-user {
  background: var(--brand-light-blue);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  box-shadow: 0 2px 5px rgba(31, 169, 226, 0.2);
}

.chat-options-container {
  padding: 15px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 150px;
  overflow-y: auto;
}
.chat-bubble-option {
  background: rgba(31, 169, 226, 0.1);
  color: var(--brand-dark-blue);
  border: 1px solid rgba(31, 169, 226, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.chat-bubble-option:hover {
  background: var(--brand-light-blue);
  color: white;
  transform: translateY(-2px);
}

.advisor-card {
  background: white;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
.advisor-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid var(--brand-light-blue);
  object-fit: cover;
}
.advisor-badge {
  background: var(--brand-dark-blue);
  color: var(--brand-yellow);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: bold;
}
.whatsapp-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  margin-top: 10px;
}
.whatsapp-btn:hover {
  background: #1ebc57;
  color: white;
  transform: scale(1.05);
}

.obj-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.obj-icon {
  width: 40px;
  height: 40px;
  background: rgba(31, 169, 226, 0.1);
  color: var(--brand-dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.obj-title {
  font-weight: bold;
  color: var(--brand-dark-blue);
  margin-bottom: 0.2rem;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f0f4f8;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-light-blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark-blue);
}

/* --- FOOTER STYLES --- */
.footer-eventful {
  background-color: var(
    --brand-dark-blue,
    #00578e
  ); /* Uso variable o color fallback */
  color: #fff;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Enlaces del Footer */
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(5px); /* Efecto desplazamiento */
}

/* Email Hover */
.hover-white:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

/* Botones Redes Sociales */
.social-icons {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-btn:hover {
  background: #fff;
  color: var(--brand-dark-blue, #00578e);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Enlaces legales (Bottom Bar) */
.footer-legal-link {
  position: relative;
}
.footer-legal-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s;
}
.footer-legal-link:hover {
  color: #fff !important;
}
.footer-legal-link:hover::after {
  width: 100%;
}

.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}
.transition-all {
  transition: all 0.3s ease;
}

/* Ocultar flechas en campos numéricos (Chrome, Safari, Edge, Opera) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Ocultar flechas en Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

#hero-section-final {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  background: #000;
}

#hero-carousel-final,
.carousel-inner,
.carousel-item {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

.hero-link-wrapper {
  display: block !important;
  width: 100vw !important;
  height: 100vh !important;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.hero-image-final {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

.hero-overlay-final {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 2;
}

#hero-section-final {
  z-index: 0;
}

/* ==========================================
   TAMAÑOS DE LOGOS NAVBAR (RESPONSIVE)
============================================= */

/* 1. Tamaños por defecto (Pantallas grandes) */
.logo-eventful,
.logo-alcaldia {
  width: auto;
  height: 50px;
  transition: height 0.3s ease; /* Le da una animación suave al encogerse */
}

/* 2. Tamaños para pantallas pequeñas (Móviles y Tablets) */
@media (max-width: 991px) {
  .logo-eventful {
    height: 40px;
  }
  .logo-alcaldia {
    height: 30px;
  }
}

/* ==========================================
   CHATBOT RESPONSIVE (MÓVILES)
============================================= */
@media (max-width: 576px) {
  /* Achicamos un poco el botón flotante */
  .chat-float-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  /* Ajustamos la ventana del chat */
  .chat-window {
    bottom: 85px; /* Lo acercamos un poco más al botón */
    right: 20px;
    /* Ocupará todo el ancho de la pantalla menos 40px (20px de cada lado) */
    width: calc(100vw - 40px);
    height: 450px; /* Reducimos la altura */
    max-height: 75vh; /* Seguridad: Nunca será más alto que el 75% de la pantalla */
  }

  /* Reducimos los espacios internos para aprovechar mejor el área pequeña */
  .chat-header {
    padding: 10px 15px;
  }

  .chat-body {
    padding: 15px;
    gap: 10px;
  }

  .chat-options-container {
    padding: 10px;
    max-height: 120px;
    gap: 5px;
  }

  /* Letra ligeramente más pequeña para las opciones */
  .chat-bubble-option {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}


 /* ============================================================
   EVENTFUL — NUEVOS ESTILOS
   Añadir al FINAL de assets/style.css
   ============================================================ */


/* ──────────────────────────────────────────────────────────
   1. HERO FLYER: Carrusel compacto con overlays
   ────────────────────────────────────────────────────────── */

/* Sobreescribir el alto del hero para que ya NO sea 100vh */
#hero-section-final {
  position: relative;
  width: 100%;
  height: 52vh !important;       /* Altura compacta */
  max-height: 500px;
  min-height: 300px;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 70px !important;   /* Espacio para la navbar fija */
  background: #000;
}

/* El carousel y sus hijos también se ajustan */
#hero-carousel-final,
#hero-carousel-final .carousel-inner,
#hero-carousel-final .carousel-item {
  width: 100% !important;
  height: 100% !important;
}

/* El wrapper puede ser <a> o <div>; siempre ocupa todo */
.hero-link-wrapper {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

/* Imagen: cubre el espacio y recorta desde arriba */
.hero-image-final {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block;
}

/* Degradado doble: izquierda oscura + abajo oscura */
.hero-overlay-final {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.60) 0%, transparent 55%),
    linear-gradient(to top,    rgba(0,0,0,0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

/* ── Label "Próximos Eventos" (izquierda, centrado vertical) ── */
.hero-upcoming-badge {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.hero-upcoming-badge .hup-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 87, 142, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 28px 18px 22px;
  border-radius: 0 35px 35px 0;
  border-left: 5px solid var(--brand-yellow);
  box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.35);
}

.hero-upcoming-badge .hup-inner i {
  font-size: 2rem;
  color: var(--brand-yellow);
  filter: drop-shadow(0 2px 6px rgba(255,219,40,0.5));
}

.hero-upcoming-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-upcoming-badge strong {
  display: block;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.15;
}

/* ── Nombre del evento (esquina inferior derecha) ── */
.hero-slide-name {
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 20;
  pointer-events: none;
  max-width: 55%;
}

.hero-slide-name span {
  display: inline-block;
  background: rgba(255, 219, 40, 0.95);
  color: #00578e;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 18px;
  border-radius: 25px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Responsive: en mobile el label es más pequeño */
@media (max-width: 576px) {
  #hero-section-final {
    height: 42vh !important;
    max-height: 320px;
    margin-top: 62px !important;
  }

  .hero-upcoming-badge .hup-inner {
    padding: 12px 18px 12px 14px;
    gap: 10px;
    border-radius: 0 25px 25px 0;
  }

  .hero-upcoming-badge .hup-inner i  { font-size: 1.4rem; }
  .hero-upcoming-badge strong        { font-size: 1rem; }
  .hero-upcoming-badge small         { font-size: 0.6rem; }

  .hero-slide-name { max-width: 65%; bottom: 14px; right: 14px; }
  .hero-slide-name span { font-size: 0.78rem; padding: 6px 14px; }
}


/* ──────────────────────────────────────────────────────────
   2. SECCIÓN "¿QUÉ ES EVENTFUL?" — Rediseño estilo ODECS
   ────────────────────────────────────────────────────────── */

.eventful-about-section {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}

/* Logo Eventful dentro de la sección */
.about-eventful-logo {
  height: 75px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 87, 142, 0.2));
  flex-shrink: 0;
}

/* Pill badge de encabezado */
.badge-eventful-pill {
  background: rgba(0, 87, 142, 0.08);
  color: var(--brand-dark-blue);
  border: 1px solid rgba(0, 87, 142, 0.18);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ── Botones de pestaña (Misión / Visión / Objetivos) ── */
.btn-about-tab {
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgba(0, 87, 142, 0.2);
  color: var(--brand-dark-blue);
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-about-tab:hover {
  background: var(--brand-dark-blue);
  color: #fff;
  border-color: var(--brand-dark-blue);
  transform: translateY(-1px);
}

.btn-about-tab.active {
  background: var(--brand-dark-blue);
  color: #fff;
  border-color: var(--brand-dark-blue);
  box-shadow: 0 5px 14px rgba(0, 87, 142, 0.35);
}

/* ── Paneles de contenido ── */
.about-content-panel {
  display: none;
  animation: fadeInUp 0.4s ease forwards;
}

.about-content-panel.active {
  display: block;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-panel-card {
  background: rgba(255, 255, 255, 0.85);
  border-left: 4px solid var(--brand-light-blue);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
  box-shadow: 0 4px 16px rgba(0, 87, 142, 0.06);
}

.about-panel-card .obj-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.about-panel-card .obj-list-item:last-child {
  margin-bottom: 0;
}

.about-panel-card .obj-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(31, 169, 226, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark-blue);
  font-size: 0.9rem;
}

/* ── Slideshow derecha ── */
.about-slideshow-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 87, 142, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.about-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.about-slide-item.active {
  opacity: 1;
}

.about-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slide-item a {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Ticker de indicadores (barra inferior) ── */
.about-indicators-ticker {
  overflow: hidden;
  width: 100%;
  background: var(--brand-dark-blue);
  border-radius: 20px;
  padding: 22px 0;
  box-shadow: 0 8px 30px rgba(0, 87, 142, 0.3);
}

.indicators-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ind-scroll 25s linear infinite;
  align-items: stretch;
}

.indicators-track:hover {
  animation-play-state: paused;
}

.indicator-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 16px 32px;
  min-width: 185px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: default;
  transition: background 0.3s;
}

.indicator-pill:hover {
  background: rgba(255, 255, 255, 0.18);
}

.indicator-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-yellow);
  line-height: 1;
  letter-spacing: -0.5px;
}

.indicator-label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-top: 5px;
  font-weight: 500;
  white-space: nowrap;
}

@keyframes ind-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive: slideshow se reduce en móvil */
@media (max-width: 991px) {
  .about-slideshow-wrapper {
    height: 250px;
    margin-top: 0;
  }
  .about-eventful-logo {
    height: 55px;
  }
}


/* ============================================================
   EVENTFUL — HERO FLYER CORREGIDO
   Reemplaza / sobreescribe los estilos del hero en style.css
   (el bloque que empieza en #hero-section-final hacia el final)
   ============================================================ */

/* ── 1. Etiqueta "Próximos Eventos" ENCIMA del carousel ── */
.hero-flyer-label {
  display: inline-flex;
  align-items: center;
  margin-top: 74px;          /* Compensa la navbar fija */
  margin-left: 0;
  padding: 10px 0 8px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark-blue);
  letter-spacing: 0.3px;
  width: 100%;
  max-width: 100%;
  /* Línea amarilla debajo del texto, igual al .section-title */
  position: relative;
}

.hero-flyer-label i {
  color: var(--brand-light-blue);
  font-size: 1.1rem;
}

/* Subrayado amarillo corto debajo del texto */
.hero-flyer-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 3px;
  background: var(--brand-yellow);
  border-radius: 2px;
}

/* Contiene la etiqueta para alinear con el carousel */
.hero-flyer-label {
  display: block;
  padding-left: max(16px, calc((100vw - 1320px) / 2 + 12px));
  padding-right: 16px;
  box-sizing: border-box;
}

/* ── 2. Sección hero: altura de flyer compacto ── */
#hero-section-final,
.hero-flyer-section {
  position: relative !important;
  width: 100% !important;
  /* Altura estilo flyer: fija y compacta, sin ocupar el viewport */
  height: 340px !important;
  max-height: 380px !important;
  min-height: 220px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin-top: 0 !important;   /* El margin-top ya lo maneja .hero-flyer-label */
  background: #000 !important;
  /* Bordes redondeados opcionales estilo card */
  border-radius: 0;
  /* Sombra sutil */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* ── 3. Carousel y sus hijos: llenan el contenedor ── */
#hero-carousel-final,
#hero-carousel-final .carousel-inner,
#hero-carousel-final .carousel-item {
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

/* ── 4. Wrapper (puede ser <a> o <div>) ── */
.hero-link-wrapper {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

/* ── 5. Imagen: cubre el espacio con recorte desde el centro ── */
.hero-image-final {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

/* ── 6. Overlay sutil solo en la parte inferior (para el texto) ── */
.hero-overlay-final {
  position: absolute;
  inset: 0;
  /* Degradado solo abajo-derecha para dar fondo al título */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.15) 38%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── 7. Etiqueta del título del evento — dentro del carousel, esquina inferior derecha ── */
.hero-slide-name {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  pointer-events: none;
  max-width: 60%;
}

.hero-slide-name span {
  display: block;
  /* Caja con borde blanco, fondo semitransparente oscuro — como en la maqueta */
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.90);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  /* Sombra de texto para legibilidad */
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── 8. Responsive ── */
@media (max-width: 768px) {
  .hero-flyer-section,
  #hero-section-final {
    height: 220px !important;
    max-height: 240px !important;
  }

  .hero-slide-name {
    max-width: 75%;
    bottom: 14px;
    right: 14px;
  }

  .hero-slide-name span {
    font-size: 0.78rem;
    padding: 7px 14px;
  }

  .hero-flyer-label {
    font-size: 1rem;
    padding-left: 16px;
  }

  .hero-flyer-label::after {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-flyer-section,
  #hero-section-final {
    height: 180px !important;
    max-height: 200px !important;
  }
}



/* ============================================================
   SECCIÓN: ATENCIÓN DE EVENTOS (COLLAGE Y ANIMACIONES)
   ============================================================ */

.atencion-images-wrapper {
    position: relative;
    height: 500px;
    width: 100%;
}

.at-img {
    position: absolute;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.at-img:hover {
    transform: scale(1.08);
    z-index: 10 !important;
}

/* --- 3 Imágenes de fondo (Opacas y detrás) --- */
.at-img-1 { width: 45%; height: 200px; top: 5%; left: 0; z-index: 1; opacity: 0.6; filter: grayscale(30%); }
.at-img-2 { width: 38%; height: 220px; top: 0; right: 5%; z-index: 1; opacity: 0.5; filter: grayscale(50%); }
.at-img-3 { width: 45%; height: 180px; bottom: 5%; left: 10%; z-index: 1; opacity: 0.7; filter: grayscale(20%); }

/* --- 2 Imágenes al frente (Claras y destacadas) --- */
.at-img-4 { width: 55%; height: 280px; top: 15%; left: 15%; z-index: 3; border: 6px solid white; }
.at-img-5 { width: 48%; height: 240px; bottom: 10%; right: 0; z-index: 4; border: 6px solid white; }

/* --- Contadores Flotantes Animados --- */
.at-counter {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 87, 142, 0.15);
    z-index: 5;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 1);
}

.at-counter-1 { top: 10%; right: -5%; }
.at-counter-2 { bottom: 5%; left: -5%; }

/* Keyframes de levitación */
.float-anim { animation: floating 4s ease-in-out infinite; }
.float-anim-alt { animation: floating 5s ease-in-out infinite reverse; }

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Ajustes Responsive */
@media (max-width: 991px) {
    .atencion-images-wrapper { height: 400px; margin-top: 40px; }
    .at-img-4 { width: 65%; height: 220px; left: 5%; }
    .at-img-5 { width: 55%; height: 190px; right: 0; bottom: 5%; }
    .at-counter { padding: 10px 15px; }
    .at-counter span { font-size: 1.5rem !important; }
    .at-counter small { font-size: 0.75rem; }
    .at-counter-1 { right: 0; top: 0; }
    .at-counter-2 { left: 0; bottom: 0; }
}

/* ============================================================
   SECCIÓN PROVEEDORES UNIFICADA
   ============================================================ */
.provider-action-card {
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.provider-action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 87, 142, 0.15) !important;
    border-color: rgba(31, 169, 226, 0.3);
}

.icon-wrapper {
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shadow-warning { box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4); }
.shadow-primary { box-shadow: 0 10px 20px rgba(0, 87, 142, 0.4); }

.counter-pulse {
    animation: text-pulse 2s infinite;
}

@keyframes text-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============================================================
   SECCIÓN NOTICIAS (FEATURED & SIDE)
   ============================================================ */
.news-fade-enter {
    animation: newsFadeIn 0.5s ease forwards;
}

@keyframes newsFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.news-featured-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-featured-card:hover .news-featured-img {
    transform: scale(1.05);
}

.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 30px 20px 20px 20px;
    color: white;
}

.news-side-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 135px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-side-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0,87,142,0.15);
    border-color: var(--brand-light-blue);
}

.news-side-img {
    width: 140px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.news-side-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .news-featured-card { height: 350px; margin-bottom: 20px; }
}

/* ============================================================
   SECCIÓN NOTICIAS (FEATURED & SIDE)
   ============================================================ */
.news-fade-enter {
    animation: newsFadeIn 0.5s ease forwards;
}

@keyframes newsFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.news-featured-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.news-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-featured-card:hover .news-featured-img {
    transform: scale(1.05);
}

.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 30px 20px 20px 20px;
    color: white;
}

.news-side-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 135px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.news-side-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0,87,142,0.15);
    border-color: var(--brand-light-blue);
}

.news-side-img {
    width: 140px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.news-side-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .news-featured-card { height: 350px; margin-bottom: 20px; }
}


/* ============================================================
   NUEVO MENÚ (HEADER) OSCURO
   ============================================================ */
.custom-nav {
    background-color: #0A1729 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.custom-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.custom-nav .nav-link:hover {
    color: var(--brand-yellow) !important;
}

.custom-dropdown {
    background-color: #0A1729;
    border: 1px solid rgba(255,255,255,0.1);
}

.custom-dropdown .dropdown-item {
    color: white;
}

.custom-dropdown .dropdown-item:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--brand-yellow);
}

/* ============================================================
   TAMAÑOS DE LOGOS NAVBAR (RESPONSIVE)
   ============================================================ */
.logo-eventful {
    width: auto;
    height: 90px; /* Tamaño solicitado */
    transition: height 0.3s ease;
}

.logo-alcaldia {
    width: auto;
    height: 70px; /* Ligeramente más grande para hacer juego */
    transition: height 0.3s ease;
}

@media (max-width: 991px) {
    .logo-eventful { height: 60px; }
    .logo-alcaldia { height: 45px; }
}

/* ============================================================
   AJUSTE DE "PRÓXIMOS EVENTOS" (HERO FLYER LABEL)
   ============================================================ */
/* Reemplaza o asegúrate que estas clases queden así en tu CSS */
.hero-flyer-label {
    display: block;
    padding-left: max(16px, calc((100vw - 1320px) / 2 + 12px));
    padding-right: 16px;
    margin-top: 130px; /* Margen superior para no chocar con el nav oscuro más grande */
    padding-top: 35px; /* Padding solicitado */
    box-sizing: border-box;
}

.hero-flyer-label-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 8px; /* Espacio entre el texto y la línea amarilla */
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-dark-blue);
    letter-spacing: 0.3px;
}

.hero-flyer-label-inner i {
    color: var(--brand-light-blue);
}

/* La línea amarilla ahora se ajusta EXACTAMENTE al ancho del texto */
.hero-flyer-label-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-yellow);
    border-radius: 2px;
}

/* Oculta la línea vieja si existía en .hero-flyer-label::after */
.hero-flyer-label::after {
    display: none;
}

/* ============================================================
   NUEVO MENÚ (HEADER) OSCURO
   ============================================================ */
.custom-nav {
    background-color: #0A1729 !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.custom-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.custom-nav .nav-link:hover {
    color: var(--brand-yellow) !important;
}

.custom-dropdown {
    background-color: #0A1729;
    border: 1px solid rgba(255,255,255,0.1);
}

.custom-dropdown .dropdown-item {
    color: white;
}

.custom-dropdown .dropdown-item:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--brand-yellow);
}

/* ============================================================
   TAMAÑOS DE LOGOS NAVBAR (RESPONSIVE)
   ============================================================ */
.logo-eventful {
    width: auto;
    height: 90px; /* Tamaño solicitado */
    transition: height 0.3s ease;
}

.logo-alcaldia {
    width: auto;
    height: 70px; /* Ligeramente más grande para hacer juego */
    transition: height 0.3s ease;
}

@media (max-width: 991px) {
    .logo-eventful { height: 60px; }
    .logo-alcaldia { height: 45px; }
}

/* ============================================================
   AJUSTE DE "PRÓXIMOS EVENTOS" (HERO FLYER LABEL)
   ============================================================ */
/* Reemplaza o asegúrate que estas clases queden así en tu CSS */
.hero-flyer-label {
    display: block;
    padding-left: max(16px, calc((100vw - 1320px) / 2 + 12px));
    padding-right: 16px;
    margin-top: 130px; /* Margen superior para no chocar con el nav oscuro más grande */
    padding-top: 35px; /* Padding solicitado */
    box-sizing: border-box;
}

.hero-flyer-label-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 8px; /* Espacio entre el texto y la línea amarilla */
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-dark-blue);
    letter-spacing: 0.3px;
}

.hero-flyer-label-inner i {
    color: var(--brand-light-blue);
}

/* La línea amarilla ahora se ajusta EXACTAMENTE al ancho del texto */
.hero-flyer-label-inner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-yellow);
    border-radius: 2px;
}

/* Oculta la línea vieja si existía en .hero-flyer-label::after */
.hero-flyer-label::after {
    display: none;
}

/* ============================================================
   ESTILOS DE LA NUEVA SECCIÓN DE PROVEEDORES (Copiados de tu código)
   ============================================================ */
.prov-card { position: relative; border-radius: 20px; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; background-size: cover; background-position: center; transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s ease; }
.prov-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0, 0, 0, .4); }
.prov-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 20, 40, .92) 0%, rgba(0, 20, 40, .6) 50%, rgba(0, 20, 40, .4) 100%); z-index: 1; }
.prov-shimmer { position: absolute; inset: 0; z-index: 2; background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .06) 38%, rgba(255, 255, 255, .12) 42%, rgba(255, 255, 255, .06) 46%, transparent 54%); background-size: 250% 100%; animation: provShimmer 8s ease-in-out infinite; pointer-events: none; }
@keyframes provShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.prov-card:hover .prov-shimmer { animation-duration: 3s; }
.prov-content { position: relative; z-index: 3; padding: 32px 28px; width: 100%; text-align: center; }
.prov-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(31, 169, 226, .2); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #1FA9E2; margin: 0 auto 16px auto; border: 1px solid rgba(31, 169, 226, .3); transition: transform .3s ease; }
.prov-card:hover .prov-icon { transform: scale(1.1) rotate(-5deg); }
.prov-btn { display: inline-flex; align-items: center; gap: 4px; padding: 12px 24px; background: linear-gradient(135deg, #1FA9E2, #0062B8); color: #fff; border: none; border-radius: 12px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all .3s ease; box-shadow: 0 4px 16px rgba(31, 169, 226, .3); cursor: pointer;}
.prov-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31, 169, 226, .4); color: #fff; }
.prov-btn-alt { background: linear-gradient(135deg, #1FA9E2, #0062B8); box-shadow: 0 4px 16px rgba(31, 169, 226, .3); }
.prov-btn-alt:hover { box-shadow: 0 8px 24px rgba(31, 169, 226, .4); }
@media (max-width: 768px) { .prov-card { min-height: 320px; } .prov-content { padding: 24px 20px; } }