html {
  font-size: 14px;
  width: 100vw;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #12961b;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* ============================================= ESTILOS PARA EL HOME ================================================== */

/* Variables de color */
:root {
  --azul-profundo: #124696;
  --naranja-activo: #e8502e;
  --celeste-cielo: #35a8e0;
  --gris-claro: #f8f9fa;
  --gris-oscuro: #64748b;
}

/* Colores de utilidad */
.azul-profundo {
  color: var(--azul-profundo) !important;
}

.bg-azul-profundo {
  background-color: var(--azul-profundo) !important;
}

.naranja-activo {
  color: var(--naranja-activo) !important;
}

.bg-naranja-activo {
  background-color: var(--naranja-activo) !important;
}

.celeste-cielo {
  color: var(--celeste-cielo) !important;
}

.bg-celeste-cielo {
  background-color: var(--celeste-cielo) !important;
}

/* HEADER FULL WIDTH Y ESTILO */
.main-navbar {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border: none !important;
  box-shadow: none !important;
  background: var(--azul-profundo) !important;
  min-height: 70px;
  z-index: 100;
}

.main-navbar .navbar-brand img {
  height: 60px;
  max-width: 240px;
  object-fit: contain;
}

.main-navbar .nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--naranja-activo) !important;
}

.main-navbar .navbar-nav {
  gap: 1.5rem;
}

/* Estilos para el botón hamburguesa */
.main-navbar .navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border-radius: 0.375rem;
  transition: box-shadow 0.15s ease-in-out;
}

.main-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================= HERO FULL WIDTH ================================================== */
.hero-video {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
  border: none;
  padding: 0;
  background: url("/img/fondo pattern.png") center center/cover no-repeat;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
}

/* ============================================= BOTONES ================================================== */

.btn-cta,
.btn-cta-naranja {
  background-color: var(--naranja-activo);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
}

.btn-cta:hover,
.btn-cta:focus,
.btn-cta-naranja:hover,
.btn-cta-naranja:focus {
  background-color: #c43d1e;
  color: #fff;
}

.btn-cta.loading,
.btn-cta-naranja.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-cta.loading::after,
.btn-cta-naranja.loading::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 1.2em;
  height: 1.2em;
  margin-top: -0.6em;
  border: 2px solid #fff;
  border-top: 2px solid var(--naranja-activo);
  border-radius: 50%;
  animation: spinBtn 0.7s linear infinite;
}

@keyframes spinBtn {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================= FILTROS Y MAPA ================================================== */
.filtro-card {
  border: none;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(18, 70, 150, 0.07);
  background: #fff;
}
/* ============================================= RESPONSIVE ================================================== */

@media (max-width: 768px) {
  .main-navbar .navbar-brand img {
    height: 50px;
    max-width: 180px;
  }
  .main-navbar .nav-link {
    font-size: 0.95rem;
  }
}
/* ============================================= CONTACTO ================================================== */

.contacto-section {
  background: var(--gris-claro);
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.contacto-section .container {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.contacto-titulo,
.contacto-descripcion {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.contacto-form-dark {
  margin-right: 0;
  margin-left: auto;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  background-color: var(--gris-oscuro);
  border-radius: 18px;
}

.contacto-form {
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(30, 58, 138, 0.07);
}

.contacto-form .form-label {
  color: var(--gris-oscuro);
  font-weight: 600;
}

.contacto-form .form-control:focus {
  border-color: #12961b;
  box-shadow: 0 0 0 0.2rem rgba(18, 150, 27, 0.15);
}

/* ============================================= HEADER FIXED ================================================== */

.main-navbar.fixed-top {
  position: fixed !important;
  top: 0;
  width: 100vw;
  z-index: 2000;
}

.main-content-pt {
  padding-top: 25px;
}

@media (max-width: 991px) {
  .main-content-pt {
    padding-top: 80px;
  }
  .contacto-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .contacto-titulo,
  .contacto-descripcion {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .contacto-form-dark {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* LABELS BLANCOS EN FORMULARIO OSCURO */
.contacto-form-dark .form-label {
  color: #fff !important;
  font-weight: 600;
}

/* ===== CARDS DE ACTIVIDADES EN ZONAS ===== */
.actividad-card {
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  border: none;
  animation: fadeInUp 0.7s cubic-bezier(0.23, 1.01, 0.32, 1) both;
  opacity: 0;
  height: 320px; /* Altura fija más compacta */
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
}

.actividad-card:hover {
  box-shadow: 0 8px 32px rgba(18, 70, 150, 0.13);
  transform: translateY(-4px) scale(1.03);
  transition: all 0.3s ease;
  cursor: pointer;
}

.actividad-card.animated {
  opacity: 1;
}

.actividad-card.selected {
  box-shadow: 0 0 0 4px #12961b, 0 8px 32px rgba(18, 70, 150, 0.13);
  animation: highlightCard 1.2s cubic-bezier(0.23, 1.01, 0.32, 1);
}

@keyframes highlightCard {
  0% {
    box-shadow: 0 0 0 0 #12961b, 0 8px 32px rgba(18, 70, 150, 0.13);
  }
  40% {
    box-shadow: 0 0 0 8px #12961b, 0 8px 32px rgba(18, 70, 150, 0.13);
  }
  100% {
    box-shadow: 0 0 0 4px #12961b, 0 8px 32px rgba(18, 70, 150, 0.13);
  }
}

/* ============================================= BOTÓN CONOCÉ MÁS ================================================== */

/* Overlay para el botón "Conocé más" */
.actividad-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(209, 209, 209, 0.199);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.actividad-card:hover .actividad-card-overlay {
  opacity: 1;
}

/* Botón para móviles (siempre visible) */
.btn-conoce-mas-mobile {
  display: none; /* Oculto por defecto en desktop */
  background: var(--naranja-activo);
  border: 1px solid var(--naranja-activo);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(232, 80, 46, 0.2);
  transition: all 0.3s ease;
}

.btn-conoce-mas-mobile:hover {
  background: #c43d1e;
  border-color: #c43d1e;
  transform: scale(1.02);
}

.btn-conoce-mas {
  background: linear-gradient(135deg, var(--naranja-activo) 0%, #d1452a 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(232, 80, 46, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.btn-conoce-mas:hover {
  box-shadow: 0 6px 20px rgba(232, 80, 46, 0.4);
  color: #fff;
  background: linear-gradient(135deg, #d1452a 0%, var(--naranja-activo) 100%);
}

.btn-conoce-mas:active {
  box-shadow: 0 2px 8px rgba(232, 80, 46, 0.3);
}

/* En móviles, mostrar el botón siempre pero más pequeño */
@media (max-width: 767.98px) {
  .actividad-card {
    height: 280px; /* Altura aún más compacta en móviles */
  }

  .actividad-img {
    height: 120px; /* Imagen más pequeña en móviles */
  }

  .actividad-card .card-title {
    font-size: 1rem;
  }

  .actividad-card .card-text {
    font-size: 0.85rem;
    -webkit-line-clamp: 2; /* Menos líneas de texto en móviles */
  }

  /* En móviles ocultamos el overlay y mostramos el botón móvil */
  .actividad-card-overlay {
    display: none;
  }

  .btn-conoce-mas {
    display: none; /* Ocultamos el botón del overlay en móviles */
  }

  .btn-conoce-mas-mobile {
    display: block; /* Mostrar en móviles */
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
  }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 575.98px) {
  .actividad-card-overlay {
    display: none;
  }

  .btn-conoce-mas {
    display: none;
  }

  .btn-conoce-mas-mobile {
    display: block; /* Mostrar en pantallas pequeñas */
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ===== CARRUSEL DE BENEFICIOS PARA MÓVILES ===== */
.beneficios-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
}

.beneficios-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 20px 0;
}

.beneficios-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.beneficio-card-carousel {
  flex: 0 0 calc(50% - 8px);
  min-width: 160px;
  max-width: 180px;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
}

.beneficio-card-carousel:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.beneficio-card-carousel.active {
  box-shadow: 0 0 0 4px #12961b, 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ajustes responsivos para el carrusel */
@media (max-width: 575.98px) {
  .beneficio-card-carousel {
    flex: 0 0 calc(50% - 8px);
    min-width: 150px;
    max-width: 170px;
    height: 160px;
  }

  .beneficios-carousel-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .beneficio-card-carousel {
    flex: 0 0 calc(50% - 8px);
    min-width: 140px;
    max-width: 160px;
    height: 150px;
  }
}

.actividad-img {
  border-bottom: 2px solid var(--naranja-activo);
  height: 140px; /* Altura fija para la imagen */
  object-fit: cover;
}

/* Ajustes para el contenido de la card */
.actividad-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  position: relative;
}

.actividad-card .card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.actividad-card .card-text {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* MODAL DE ACTIVIDAD */
.actividad-modal-content {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(18, 70, 150, 0.13);
  animation: modalZoomIn 0.35s cubic-bezier(0.23, 1.01, 0.32, 1);
}

@keyframes modalZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.actividad-modal-img {
  border-bottom: 3px solid var(--naranja-activo);
  max-height: 220px;
  object-fit: cover;
}

#actividadModalContent {
  font-size: 1.08rem;
  line-height: 1.7;
}

#actividadModalContent h2,
#actividadModalContent h3 {
  color: var(--azul-profundo);
  font-weight: bold;
  margin-top: 1.2rem;
}

#actividadModalContent a {
  color: var(--celeste-cielo);
  text-decoration: underline;
}

#actividadModalContent ul {
  margin-left: 1.2rem;
}

@media (max-width: 767.98px) {
  .actividad-modal-img {
    max-height: 140px;
  }
}

/* ANIMACIÓN DE FADE-IN PARA LAS CARDS DE ACTIVIDADES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* NAVBAR Y FOOTER */
.main-navbar,
.footer {
  background-color: var(--azul-profundo) !important;
}

.main-navbar .navbar-brand,
.main-navbar .nav-link,
.footer {
  color: #fff !important;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.main-navbar .nav-link-custom {
  position: relative;
  transition: color 0.2s;
  padding-bottom: 0.3rem;
}

.main-navbar .nav-link-custom::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--naranja-activo);
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.3s;
}

.main-navbar .nav-link-custom:hover::after,
.main-navbar .nav-link-custom:focus::after {
  width: 100%;
}

.main-navbar .nav-link-custom:hover,
.main-navbar .nav-link-custom:focus {
  color: var(--naranja-activo) !important;
}

/* ===== FOOTER PROFESIONAL ===== */
.footer-professional {
  background: var(--azul-profundo);
  color: white;
  margin-top: auto;
}

.footer-main {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link:hover {
  background: var(--naranja-activo);
  color: white;
  transform: translateY(-2px);
}

.footer-title {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--naranja-activo);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--naranja-activo);
}

.footer-links a:hover {
  color: white;
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--naranja-activo);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--naranja-activo);
}

/* Responsive para el footer */
@media (max-width: 768px) {
  .footer-main {
    padding: 2rem 0 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-bottom .row {
    text-align: center;
  }

  .footer-copyright {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

/* RESPONSIVE Y AJUSTES */
@media (max-width: 991.98px) {
  .main-navbar .navbar-nav {
    background: var(--azul-profundo);
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    margin-top: 0.5rem;
  }
  .main-navbar .nav-link-custom {
    padding-left: 1rem;
  }

  /* Ajustes para el menú hamburguesa */
  .main-navbar .navbar-collapse {
    background: var(--azul-profundo);
    border-radius: 0 0 12px 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }

  .main-navbar .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-navbar .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }

  .main-navbar .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0;
  }

  .main-navbar .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 767.98px) {
  .actividad-modal-img {
    max-height: 140px;
  }

  /* Ajustes adicionales para navbar en móviles */
  .main-navbar .navbar-brand img {
    max-width: 120px;
    height: 50px;
  }

  .main-navbar {
    min-height: 60px;
  }

  .main-navbar .navbar-toggler {
    padding: 0.2rem 0.4rem;
    font-size: 1.1rem;
  }

  /* Ajustes adicionales para cards de actividades en móviles */
  .actividad-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .actividad-card {
    height: 260px;
  }

  .actividad-img {
    height: 110px;
  }

  .actividad-card .card-body {
    padding: 0.75rem;
  }

  .actividad-card .card-title {
    font-size: 0.95rem;
  }

  .actividad-card .card-text {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }

  /* Mantener el botón visible sin efectos de oscurecimiento */
  .actividad-card:hover .card-body {
    background: transparent;
  }

  .actividad-card:hover .card-title,
  .actividad-card:hover .card-text {
    color: inherit;
  }
}

.btn-area-filtro-icono {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 220px;
  max-width: 320px;
  height: 80px;
  transition: border-color 0.2s, background 0.2s;
  font-size: 1.25rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 12px;
  gap: 12px;
}

.btn-area-filtro-icono .area-icono {
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-area-filtro-icono:hover {
  border-color: #e8502e;
  background: #fff7f2;
}

.btn-area-filtro-icono span {
  margin-left: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #444;
  text-align: left;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .btn-area-filtro-icono {
    min-width: 160px;
    max-width: 100%;
    height: 48px;
    font-size: 1rem;
    padding: 0 10px 0 6px;
  }
  .btn-area-filtro-icono .area-icono {
    width: 32px;
    height: 32px;
  }
}

/* Estilos para los mapas */
.filtros-mapa-section-3col img {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  max-height: 700px;
}

/* Estilos para mantener el mapa fijo en desktop */
@media (min-width: 768px) {
  .filtros-mapa-section-3col .row > div:nth-child(2) {
    position: sticky;
    top: 20px;
    height: fit-content;
    align-self: flex-start;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.beneficios-bg {
  background-color: #f78b1f;
  border-radius: 30px;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10px;
}

/* === Tarjetas de Beneficios con imagen de fondo y estilo destacado === */
.beneficio-card {
  position: relative;
  background: transparent;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(18, 70, 150, 0.1);
  min-height: 200px;
  height: 200px;
  width: 200px !important;
  max-width: 250px !important;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  border: 3px solid transparent;
  padding: 0;
  margin-bottom: 5px;
  margin-top: 5px;
}

/* Media query específica para pantallas entre 1200px y 1300px */
@media (min-width: 1200px) and (max-width: 1300px) {
  .beneficio-card {
    min-height: 180px;
    height: 180px;
    width: 180px !important;
    max-width: 180px !important;
  }

  .beneficio-icono {
    font-size: 2rem;
  }

  .beneficio-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .beneficio-titulo {
    font-size: 1rem;
  }

  .beneficio-card-content {
    padding: 1rem 0.8rem 0.8rem 0.8rem;
  }

  .beneficio-dot {
    width: 10px;
    height: 10px;
  }

  .beneficio-dot.active {
    transform: scale(1.2);
  }
}

.beneficio-card.active,
.beneficio-card:hover {
  box-shadow: 0 8px 32px rgba(18, 70, 150, 0.18);
  border-color: #fff;
  z-index: 2;
}

.beneficio-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficio-img-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.28);
  z-index: 2;
  pointer-events: none;
  border-radius: 22px;
}

.beneficio-img-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.2s;
}

.beneficio-card:hover .beneficio-img-bg-img {
  transform: scale(1.04);
}

.beneficio-card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 1.2rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.beneficio-icono {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px #0007;
}

.beneficio-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.beneficio-card:hover .beneficio-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

/* ===== INDICADORES DE PUNTOS PARA BENEFICIOS ===== */

/* Desktop dots */
.beneficios-dots {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

.beneficio-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(18, 70, 150, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.beneficio-dot:hover {
  background-color: rgba(18, 70, 150, 0.6);
  transform: scale(1.2);
}

.beneficio-dot.active {
  background-color: var(--naranja-activo);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(232, 80, 46, 0.4);
}

/* Mobile dots */
.beneficios-dots-mobile {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}

.beneficio-dot-mobile {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(18, 70, 150, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.beneficio-dot-mobile:hover {
  background-color: rgba(18, 70, 150, 0.6);
  transform: scale(1.2);
}

.beneficio-dot-mobile.active {
  background-color: var(--naranja-activo);
  transform: scale(1.3);
  box-shadow: 0 2px 6px rgba(232, 80, 46, 0.4);
}

.beneficio-titulo {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 8px #0007;
}

.beneficio-detalle {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(18, 70, 150, 0.15);
  border: 1px solid rgba(18, 70, 150, 0.1);
  margin-top: 1rem;
}

.beneficio-detalle-header {
  text-align: center;
  border-bottom: 2px solid var(--naranja-activo);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.beneficio-detalle-titulo {
  color: var(--azul-profundo);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.beneficio-detalle-subtitulo {
  color: var(--naranja-activo);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
}

.btn-outline-azul {
  color: var(--azul-profundo);
  border-color: var(--azul-profundo);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-azul:hover {
  color: #fff;
  background-color: var(--azul-profundo);
  border-color: var(--azul-profundo);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 70, 150, 0.2);
}

.beneficio-financiamiento-card {
  border: 2px solid rgba(18, 70, 150, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(18, 70, 150, 0.08);
}

.beneficio-financiamiento-card:hover {
  border-color: #12961b;
  box-shadow: 0 8px 24px rgba(18, 150, 27, 0.15);
  transform: translateY(-4px);
}

.beneficio-financiamiento-titulo {
  color: var(--azul-profundo) !important;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ===== BOTÓN DETALLE TÉCNICO MINIMALISTA ===== */
.btn-detalle-tecnico-minimalista {
  background: transparent;
  color: var(--azul-profundo);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  min-width: 180px;
  justify-content: center;
}

.btn-detalle-tecnico-minimalista::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 70, 150, 0.05);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.btn-detalle-tecnico-minimalista:hover::before {
  opacity: 1;
  background: rgba(18, 70, 150, 0.1);
}

.btn-detalle-tecnico-minimalista:active::before {
  background: rgba(18, 70, 150, 0.15);
}

.btn-detalle-tecnico-minimalista .btn-text {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.btn-detalle-tecnico-minimalista .btn-arrow {
  position: relative;
  z-index: 1;
  font-size: 0.9em;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--azul-profundo);
}

.btn-detalle-tecnico-minimalista .btn-arrow.rotated {
  transform: rotate(180deg);
}

.btn-detalle-tecnico-minimalista:hover {
  color: var(--azul-profundo);
  transform: translateY(-1px);
}

.btn-detalle-tecnico-minimalista:focus {
  outline: 2px solid #12961b;
  outline-offset: 2px;
  color: var(--azul-profundo);
}

.btn-detalle-tecnico-minimalista:active {
  transform: translateY(0);
}

/* Mantener el botón original para compatibilidad */
.btn-detalle-tecnico {
  background: #fff;
  color: var(--azul-profundo);
  border: 1.5px solid var(--azul-profundo);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-detalle-tecnico i {
  font-size: 1.1em;
  margin-right: 0.3em;
  color: inherit;
}

.btn-detalle-tecnico:hover,
.btn-detalle-tecnico:focus {
  background: var(--naranja-activo);
  color: #fff;
  border-color: var(--naranja-activo);
  outline: none;
}

/* ===== ESTILOS PARA DETALLE TÉCNICO DESPLEGABLE ===== */
.detalle-tecnico-container {
  margin-top: 2rem;
}

.detalle-tecnico-wrapper {
  width: 100%;
  overflow: hidden;
}

.detalle-tecnico-content-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(18, 70, 150, 0.15);
  border: 1px solid rgba(18, 70, 150, 0.1);
  margin-top: 1rem;
  transform-origin: top;
}

/* Animaciones de entrada y salida */
.detalle-tecnico-enter {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detalle-tecnico-enter-start {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
}

.detalle-tecnico-enter-end {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.detalle-tecnico-leave {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detalle-tecnico-leave-start {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.detalle-tecnico-leave-end {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
}

.detalle-tecnico-content {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  margin-top: 0;
}

.detalle-tecnico-header {
  text-align: center;
  border-bottom: 2px solid var(--naranja-activo);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.detalle-tecnico-titulo {
  color: var(--azul-profundo);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.detalle-tecnico-subtitulo {
  color: var(--naranja-activo);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
}

.detalle-tecnico-card {
  border: 2px solid rgba(18, 70, 150, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(18, 70, 150, 0.08);
}

.detalle-tecnico-card:hover {
  border-color: #12961b;
  box-shadow: 0 8px 24px rgba(18, 150, 27, 0.15);
  transform: translateY(-4px);
}

.detalle-tecnico-card .card-title {
  color: var(--azul-profundo) !important;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.detalle-tecnico-card ul {
  margin-left: 1.2rem;
  margin-bottom: 0;
}

.detalle-tecnico-card li {
  margin-bottom: 0.5rem;
  color: var(--gris-oscuro);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ===== ESTILOS RESPONSIVOS PARA TARJETAS DE BENEFICIOS ===== */

/* Tablets y pantallas medianas */
@media (max-width: 991px) {
  .beneficio-detalle {
    padding: 1rem 0.5rem;
  }
  .beneficio-detalle-titulo {
    font-size: 1.5rem;
  }
  .beneficio-detalle-subtitulo {
    font-size: 1rem;
  }
  .beneficio-card {
    min-height: 180px;
    height: 180px;
    width: 180px !important;
    max-width: 180px !important;
  }
  .beneficio-icono {
    font-size: 2rem;
  }
  .beneficio-logo {
    width: 2.5rem;
    height: 2.5rem;
  }
  .beneficio-titulo {
    font-size: 1rem;
  }
  .btn-detalle-tecnico {
    font-size: 1rem;
    padding: 0.75rem 1.5rem !important;
  }

  .btn-detalle-tecnico-minimalista {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    min-width: 160px;
  }
  .btn-detalle-tecnico-minimalista {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    min-width: 140px;
    gap: 0.5rem;
  }

  .btn-detalle-tecnico-minimalista .btn-arrow {
    font-size: 0.8em;
  }
}

/* Tablets pequeñas */
@media (max-width: 767.98px) {
  .beneficio-card {
    min-height: 160px;
    height: 160px;
    width: 160px !important;
    max-width: 160px !important;
  }
  .beneficio-icono {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  .beneficio-logo {
    width: 2.2rem;
    height: 2.2rem;
  }
  .beneficio-titulo {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  .beneficio-card-content {
    padding: 1rem 0.8rem 0.8rem 0.8rem;
  }
  .detalle-tecnico-container {
    --bs-gutter-x: 0 !important;
  }
}

/* Móviles grandes */
@media (max-width: 575.98px) {
  .beneficio-card {
    min-height: 140px;
    height: 140px;
    width: 140px !important;
    max-width: 140px !important;
  }
  .beneficio-icono {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
  }
  .beneficio-logo {
    width: 2rem;
    height: 2rem;
  }
  .beneficio-titulo {
    font-size: 0.8rem;
    letter-spacing: 0.3px;
  }
  .beneficio-card-content {
    padding: 0.8rem 0.6rem 0.6rem 0.6rem;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .beneficio-card {
    min-height: 120px;
    height: 120px;
    width: 120px !important;
    max-width: 120px !important;
  }
  .beneficio-icono {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
  .beneficio-logo {
    width: 1.8rem;
    height: 1.8rem;
  }
  .beneficio-titulo {
    font-size: 0.75rem;
    letter-spacing: 0.2px;
  }
  .beneficio-card-content {
    padding: 0.6rem 0.5rem 0.5rem 0.5rem;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .beneficio-card {
    min-height: 110px;
    height: 110px;
    width: 110px !important;
    max-width: 110px !important;
  }
  .beneficio-icono {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
  }
  .beneficio-logo {
    width: 1.6rem;
    height: 1.6rem;
  }
  .beneficio-titulo {
    font-size: 0.7rem;
    letter-spacing: 0.1px;
  }
  .beneficio-card-content {
    padding: 0.5rem 0.4rem 0.4rem 0.4rem;
  }
}

/* ===== ESTILOS RESPONSIVOS PARA DETALLE TÉCNICO ===== */

/* Tablets y pantallas medianas */
@media (max-width: 991px) {
  .detalle-tecnico-content {
    padding: 1.5rem !important;
    margin-top: 0.5rem !important;
  }
  .detalle-tecnico-titulo {
    font-size: 1.4rem !important;
  }
  .detalle-tecnico-subtitulo {
    font-size: 0.95rem !important;
  }
  .detalle-tecnico-card {
    margin-bottom: 1rem !important;
  }
  .detalle-tecnico-card .card-title {
    font-size: 1.1rem !important;
  }
}

/* Tablets pequeñas */
@media (max-width: 767.98px) {
  .detalle-tecnico-content {
    padding: 1rem !important;
    margin-top: 0.5rem !important;
  }
  .detalle-tecnico-titulo {
    font-size: 1.3rem !important;
  }
  .detalle-tecnico-subtitulo {
    font-size: 0.9rem !important;
  }
  .detalle-tecnico-card {
    margin-bottom: 0.8rem !important;
  }
  .detalle-tecnico-card .card-title {
    font-size: 1rem !important;
  }
  .detalle-tecnico-card li {
    font-size: 0.9rem !important;
  }
}

/* Móviles grandes */
@media (max-width: 575.98px) {
  .detalle-tecnico-content {
    padding: 0.8rem !important;
    margin-top: 0.5rem !important;
  }
  .detalle-tecnico-titulo {
    font-size: 1.2rem !important;
  }
  .detalle-tecnico-subtitulo {
    font-size: 0.85rem !important;
  }
  .detalle-tecnico-card {
    margin-bottom: 0.6rem !important;
  }
  .detalle-tecnico-card .card-title {
    font-size: 0.95rem !important;
  }
  .detalle-tecnico-card li {
    font-size: 0.85rem !important;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .detalle-tecnico-content {
    padding: 0.6rem !important;
    margin-top: 0.5rem !important;
  }
  .detalle-tecnico-titulo {
    font-size: 1.1rem !important;
  }
  .detalle-tecnico-subtitulo {
    font-size: 0.8rem !important;
  }
  .detalle-tecnico-card {
    margin-bottom: 0.5rem !important;
  }
  .detalle-tecnico-card .card-title {
    font-size: 0.9rem !important;
  }
  .detalle-tecnico-card li {
    font-size: 0.8rem !important;
  }

  .btn-detalle-tecnico-minimalista {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    min-width: 120px;
    gap: 0.4rem;
  }

  .btn-detalle-tecnico-minimalista .btn-arrow {
    font-size: 0.75em;
  }

  .detalle-tecnico-content-wrapper {
    padding: 1.5rem;
    border-radius: 15px;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .detalle-tecnico-content {
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .detalle-tecnico-titulo {
    font-size: 1rem !important;
  }
  .detalle-tecnico-subtitulo {
    font-size: 0.75rem !important;
  }
  .detalle-tecnico-card {
    margin-bottom: 0.4rem !important;
  }
  .detalle-tecnico-card .card-title {
    font-size: 0.85rem !important;
  }
  .detalle-tecnico-card li {
    font-size: 0.75rem !important;
  }

  .btn-detalle-tecnico-minimalista {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
    min-width: 100px;
    gap: 0.3rem;
  }

  .btn-detalle-tecnico-minimalista .btn-arrow {
    font-size: 0.7em;
  }

  .detalle-tecnico-content-wrapper {
    padding: 1rem;
    border-radius: 12px;
  }
}

/* ===== ESTILOS RESPONSIVOS PARA SECCIÓN DE FILTROS Y MAPAS ===== */

/* Móviles y tablets pequeñas */
@media (max-width: 767.98px) {
  .filtros-mapa-section-3col {
    padding: 2rem 1rem !important;
  }

  .filtros-mapa-section-3col .row {
    flex-direction: column !important;
  }

  .filtros-mapa-section-3col .row > div {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 1rem !important;
  }

  /* Columna 1: Filtros */
  .filtros-mapa-section-3col .row > div:first-child {
    order: 1;
    border-end: none !important;
    border-bottom: 2px solid rgba(18, 70, 150, 0.1) !important;
    padding: 1.5rem !important;
  }

  /* Columna 2: Mapa */
  .filtros-mapa-section-3col .row > div:nth-child(2) {
    order: 2;
    padding: 1.5rem !important;
    min-height: 300px;
    flex-direction: column !important;
    position: sticky;
    top: 20px;
    height: fit-content;
  }

  /* Columna 3: Regiones (oculta) */
  .filtros-mapa-section-3col .row > div:last-child {
    order: 3;
  }

  /* Estilos para botones de región con hover */
  .btn-region-filtro {
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-region-filtro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: 1;
  }

  .btn-region-filtro:hover::before {
    opacity: 1;
  }

  .btn-region-filtro:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
  }

  .btn-region-filtro img {
    position: relative;
    z-index: 2;
  }

  .btn-region-filtro:hover img {
    transform: scale(1.02);
  }

  /* Ajustes para los filtros en móvil - Layout horizontal */
  .filtros-mapa-section-3col h4 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }

  .filtros-mapa-section-3col .row > div:first-child .d-flex.flex-column {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.2rem !important;
    justify-content: space-between !important;
    overflow-x: visible !important;
    padding: 0.5rem 0 !important;
    width: 100% !important;
  }

  .btn-area-filtro-icono {
    margin-bottom: 0.5rem !important;
    min-width: auto !important;
    max-width: none !important;
    height: auto !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .btn-area-filtro-icono:hover {
    background: transparent !important;
    border-color: transparent !important;
    transform: none !important;
  }

  .btn-area-filtro-icono .area-icono {
    height: 40px !important;
    width: auto !important;
    margin-bottom: 0 !important;
  }

  .btn-area-filtro-icono span {
    font-size: 0.6rem !important;
    text-align: center !important;
    margin-left: 0 !important;
    line-height: 1.1 !important;
    margin-top: 0.25rem !important;
  }

  /* Ajustes para el mapa en móvil */
  .filtros-mapa-section-3col img {
    max-height: 350px !important;
    width: auto !important;
  }

  /* Ajustes para el overlay del mapa */
  .mapa-overlay {
    border-radius: 10px !important;
  }
}

/* Móviles pequeños */
@media (max-width: 575.98px) {
  .filtros-mapa-section-3col {
    padding: 1.5rem 0.5rem !important;
  }

  .filtros-mapa-section-3col .row > div:first-child,
  .filtros-mapa-section-3col .row > div:nth-child(2) {
    padding: 1rem !important;
  }

  .filtros-mapa-section-3col h4 {
    font-size: 1.2rem !important;
    margin-bottom: 0.8rem !important;
  }

  .filtros-mapa-section-3col .row > div:first-child .d-flex.flex-column {
    gap: 0.1rem !important;
  }

  .btn-area-filtro-icono {
    max-width: none !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .btn-area-filtro-icono:hover {
    background: transparent !important;
    border-color: transparent !important;
    transform: none !important;
  }

  .btn-area-filtro-icono .area-icono {
    height: 35px !important;
  }

  .btn-area-filtro-icono span {
    font-size: 0.55rem !important;
  }

  .filtros-mapa-section-3col img {
    max-height: 200px !important;
  }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
  .filtros-mapa-section-3col {
    padding: 1rem 0.25rem !important;
  }

  .filtros-mapa-section-3col .row > div:first-child,
  .filtros-mapa-section-3col .row > div:nth-child(2) {
    padding: 0.8rem !important;
  }

  .filtros-mapa-section-3col h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.6rem !important;
  }

  .filtros-mapa-section-3col .row > div:first-child .d-flex.flex-column {
    gap: 0.1rem !important;
  }

  .btn-area-filtro-icono {
    max-width: none !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .btn-area-filtro-icono:hover {
    background: transparent !important;
    border-color: transparent !important;
    transform: none !important;
  }

  .btn-area-filtro-icono .area-icono {
    height: 30px !important;
  }

  .btn-area-filtro-icono span {
    font-size: 0.5rem !important;
  }

  .filtros-mapa-section-3col img {
    max-height: 280px !important;
  }
}

/* ===== ESTILOS RESPONSIVOS PARA TÍTULOS Y DESCRIPCIONES ===== */

/* Tablets y pantallas medianas */
@media (max-width: 991px) {
  .container h2.azul-profundo {
    font-size: 2rem !important;
    letter-spacing: 0.8px !important;
  }
  .container .text-secondary {
    font-size: 1rem !important;
    max-width: 500px !important;
  }
}

/* Tablets pequeñas */
@media (max-width: 767.98px) {
  .container h2.azul-profundo {
    font-size: 1.8rem !important;
    letter-spacing: 0.6px !important;
  }
  .container .text-secondary {
    font-size: 0.95rem !important;
    max-width: 450px !important;
  }
}

/* Móviles grandes */
@media (max-width: 575.98px) {
  .container h2.azul-profundo {
    font-size: 1.6rem !important;
    letter-spacing: 0.5px !important;
  }
  .container .text-secondary {
    font-size: 0.9rem !important;
    max-width: 400px !important;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .container h2.azul-profundo {
    font-size: 1.4rem !important;
    letter-spacing: 0.4px !important;
  }
  .container .text-secondary {
    font-size: 0.85rem !important;
    max-width: 350px !important;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .container h2.azul-profundo {
    font-size: 1.2rem !important;
    letter-spacing: 0.3px !important;
  }
  .container .text-secondary {
    font-size: 0.8rem !important;
    max-width: 300px !important;
  }
}

/* ===== ESTILOS RESPONSIVOS PARA CONTENIDO DESPLEGABLE ===== */

/* Tablets y pantallas medianas */
@media (max-width: 991px) {
  .beneficio-detalle {
    padding: 1.5rem !important;
    margin-top: 0.5rem !important;
  }
  .beneficio-detalle-titulo {
    font-size: 1.4rem !important;
  }
  .beneficio-detalle-subtitulo {
    font-size: 0.95rem !important;
  }
  .beneficio-detalle p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  .beneficio-financiamiento-card {
    margin-bottom: 1rem !important;
  }
  .beneficio-financiamiento-titulo {
    font-size: 1.1rem !important;
  }
}

/* Tablets pequeñas */
@media (max-width: 767.98px) {
  .beneficio-detalle {
    padding: 1rem !important;
    margin-top: 0.5rem !important;
  }
  .beneficio-detalle-titulo {
    font-size: 1.3rem !important;
  }
  .beneficio-detalle-subtitulo {
    font-size: 0.9rem !important;
  }
  .beneficio-detalle p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  .beneficio-financiamiento-card {
    margin-bottom: 0.8rem !important;
  }
  .beneficio-financiamiento-titulo {
    font-size: 1rem !important;
  }
  .btn-cta-naranja {
    padding: 0.5rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  .btn-outline-azul {
    padding: 0.4rem 1rem !important;
    font-size: 0.85rem !important;
  }
}

/* Móviles grandes */
@media (max-width: 575.98px) {
  .beneficio-detalle {
    padding: 0.8rem !important;
    margin-top: 0.5rem !important;
  }
  .beneficio-detalle-titulo {
    font-size: 1.2rem !important;
  }
  .beneficio-detalle-subtitulo {
    font-size: 0.85rem !important;
  }
  .beneficio-detalle p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  .beneficio-financiamiento-card {
    margin-bottom: 0.6rem !important;
  }
  .beneficio-financiamiento-titulo {
    font-size: 0.95rem !important;
  }
  .btn-cta-naranja {
    padding: 0.4rem 1.2rem !important;
    font-size: 0.85rem !important;
  }
  .btn-outline-azul {
    padding: 0.3rem 0.8rem !important;
    font-size: 0.8rem !important;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .beneficio-detalle {
    padding: 0.6rem !important;
    margin-top: 0.5rem !important;
  }
  .beneficio-detalle-titulo {
    font-size: 1.1rem !important;
  }
  .beneficio-detalle-subtitulo {
    font-size: 0.8rem !important;
  }
  .beneficio-detalle p {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }
  .beneficio-financiamiento-card {
    margin-bottom: 0.5rem !important;
  }
  .beneficio-financiamiento-titulo {
    font-size: 0.9rem !important;
  }
  .btn-cta-naranja {
    padding: 0.3rem 1rem !important;
    font-size: 0.8rem !important;
  }
  .btn-outline-azul {
    padding: 0.25rem 0.7rem !important;
    font-size: 0.75rem !important;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .beneficio-detalle {
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .beneficio-detalle-titulo {
    font-size: 1rem !important;
  }
  .beneficio-detalle-subtitulo {
    font-size: 0.75rem !important;
  }
  .beneficio-detalle p {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }
  .beneficio-financiamiento-card {
    margin-bottom: 0.4rem !important;
  }
  .beneficio-financiamiento-titulo {
    font-size: 0.85rem !important;
  }
  .btn-cta-naranja {
    padding: 0.25rem 0.8rem !important;
    font-size: 0.75rem !important;
  }
  .btn-outline-azul {
    padding: 0.2rem 0.6rem !important;
    font-size: 0.7rem !important;
  }
}

.hero-bg-azul {
  background-image: url("/img/fondo-pattern.png");
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 150px;
  position: relative;
  z-index: 1;
  min-height: 220px;
}

.container-hero-video {
  max-width: 90vw;
  width: 100vw;
  margin: 0 auto;
  position: relative;
  top: 100px; /* Aumenta el espacio superior para despejar el navbar */
  z-index: 2;
  padding-bottom: 40px; /* Empuja el contenido siguiente hacia abajo */
}

.hero-video-centrado {
  width: 100%;
  height: auto;
  min-height: 480px;
  max-height: 780px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(18, 70, 150, 0.15);
  display: block;
  background-color: #124696;
  position: relative;
  z-index: 2;
  margin-bottom: -40px; /* Menor valor para evitar superposición */
}

@media (max-width: 600px) {
  .hero-video-centrado {
    height: 420px;
    border-radius: 18px;
    margin-bottom: 0; /* Elimina el margen negativo */
  }
  .container-hero-video {
    top: 20px;
    padding-bottom: 0;
    width: 100vw;
  }
  .hero-bg-azul {
    background-size: cover;
    min-height: 520px; /* igual o mayor que el alto del video */
    top: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .main-content-pt {
    padding-top: 70px;
  }
  #zonas-container {
    margin-top: 0px !important;
  }
}

/* ===== ESTILOS PARA PÁGINA DE ENERGÍA ===== */
.hero-energia-section {
  background: linear-gradient(135deg, var(--azul-profundo) 0%, #1e3a8a 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-energia-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/img/mapas/energia.png") center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-energia-section .container {
  position: relative;
  z-index: 2;
}

.min-vh-50 {
  min-height: 60vh;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--azul-profundo) 0%, #1e3a8a 100%);
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.legal-card {
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.legal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(18, 150, 27, 0.15);
  border-color: rgba(18, 150, 27, 0.2);
}

.project-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(18, 150, 27, 0.1);
}

.tool-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(18, 150, 27, 0.1);
}

/* Responsive para página de energía */
@media (max-width: 768px) {
  .min-vh-50 {
    min-height: 40vh;
  }

  .stat-card {
    margin-bottom: 1rem;
  }

  .display-4 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .min-vh-50 {
    min-height: 30vh;
  }

  .display-4 {
    font-size: 2rem;
  }

  .card-body {
    padding: 2rem !important;
  }
}

.hero-energia-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/img/fondo-pattern.png");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
}

.btn-volver-inicio {
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.15);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-volver-inicio:hover,
.btn-volver-inicio:focus {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.18);
  text-decoration: none;
}

/* ===== ESTILOS PARA PÁGINA DE MINERÍA ===== */
.hero-mineria-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-mineria-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/img/fondo-pattern.png");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
}

.hero-mineria-section .container {
  position: relative;
  z-index: 2;
}

.mineral-card,
.region-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mineral-card:hover,
.region-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.granito-card {
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  transition: all 0.3s ease;
}

.granito-card:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.mineral-section {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 2rem;
}

.mineral-section:last-child {
  border-bottom: none;
}

/* Responsive para Minería */
@media (max-width: 768px) {
  .hero-mineria-section {
    min-height: 50vh;
  }

  .mineral-card,
  .region-card,
  .feature-card {
    margin-bottom: 1rem;
  }
}

/* ===== ESTILOS PARA PÁGINA DE AGROPECUARIO ===== */
.hero-agropecuario-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-agropecuario-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/img/fondo-pattern.png");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 1;
}

.hero-agropecuario-section .container {
  position: relative;
  z-index: 2;
}

.region-agro-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.region-agro-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.actividad-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.actividad-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Responsive para Agropecuario */
@media (max-width: 768px) {
  .hero-agropecuario-section {
    min-height: 50vh;
  }

  .region-agro-card,
  .actividad-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .btn-volver-inicio {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
/* Mejoras de responsividad */
@media (max-width: 768px) {
  .hero-industria-section {
    min-height: 50vh;
    padding: 2rem 0;
  }

  .hero-industria-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-industria-section .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .card-body {
    padding: 1.5rem !important;
  }

  .parque-card {
    margin-bottom: 1rem;
  }

  .btn-cta,
  .btn-cta-naranja {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-industria-section {
    min-height: 40vh;
    padding: 1rem 0;
  }

  .hero-industria-section h1 {
    font-size: 1.75rem;
  }

  .card-body {
    padding: 1rem !important;
  }

  .parque-card {
    padding: 1rem !important;
  }

  .btn-cta,
  .btn-cta-naranja {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .btn-outline-light {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }
}
/* Mejoras de responsividad */
@media (max-width: 768px) {
  .hero-energia-section {
    min-height: 50vh;
    padding: 2rem 0;
  }

  .hero-energia-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-energia-section .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .card-body {
    padding: 1.5rem !important;
  }

  .btn-cta,
  .btn-cta-naranja {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .stat-card {
    padding: 1.5rem !important;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-energia-section {
    min-height: 40vh;
    padding: 1rem 0;
  }

  .hero-energia-section h1 {
    font-size: 1.75rem;
  }

  .card-body {
    padding: 1rem !important;
  }

  .btn-cta,
  .btn-cta-naranja {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .stat-card {
    padding: 1rem !important;
  }

  .stat-number {
    font-size: 2rem;
  }

  .legal-card {
    padding: 1rem !important;
  }
}
.btn-collapse-minimal {
  background: transparent;
  border: 2px solid #f59e0b;
  color: #f59e0b;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-collapse-minimal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.btn-collapse-minimal:hover::before {
  left: 100%;
}

.btn-collapse-minimal:hover {
  background: #f59e0b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-collapse-minimal:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.collapse-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-collapse-minimal[aria-expanded="true"] .collapse-icon {
  transform: rotate(180deg);
}

.collapse-content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.1);
  animation: slideDown 0.4s ease-out;
}

.collapse-image {
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.collapse-image:hover {
  transform: scale(1.02);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collapse {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapse.show {
  animation: slideDown 0.4s ease-out;
}

@media (max-width: 768px) {
  .btn-collapse-minimal {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .collapse-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .btn-collapse-minimal {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }

  .collapse-content {
    padding: 1rem;
  }
}

.collapse {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapse.show {
  animation: slideDown 0.4s ease-out;
}

@media (max-width: 768px) {
  .btn-collapse-energia {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .collapse-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .btn-collapse-energia {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }

  .collapse-content {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-mineria-section {
    min-height: 50vh;
  }

  .mineral-card,
  .region-card,
  .feature-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-agropecuario-section {
    min-height: 50vh;
  }

  .region-agro-card,
  .actividad-card {
    margin-bottom: 1rem;
  }
}

/* ============================================= ESTILOS PARA BOTONES DE REGIONES MINIMALISTAS ================================================== */

.btn-region-minimalista {
  border: 1px solid #f08923 !important;
  border-radius: 30px !important;
  background: #f5f5f5 !important;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-region-minimalista:hover {
  background: #f8f9fa;
  border-color: #f08923 !important;
  color: #f08923;
  box-shadow: 0 2px 6px rgba(18, 70, 150, 0.15);
}

.btn-region-minimalista.active {
  background: #f08923 !important;
  border-color: #f08923;
  color: white;
  box-shadow: 0 2px 8px #f08923;
  transform: translateY(-1px);
}

.region-nombre {
  font-weight: 500;
  color: inherit;
  transition: color 0.3s ease;
}

/* Contenedor de detalle de región */
.detalle-region-container {
  margin-top: 2rem;
}

.detalle-region-wrapper {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.detalle-region-content-wrapper {
  padding: 2rem;
}

.detalle-region-content {
  animation: fadeInUp 0.5s ease-out;
}

.detalle-region-header {
  text-align: center;
  margin-bottom: 2rem;
}

.detalle-region-titulo {
  color: var(--azul-profundo);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.detalle-region-subtitulo {
  color: var(--gris-oscuro);
  font-size: 1.1rem;
  font-weight: 400;
}

.region-content-placeholder {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 2rem;
  margin: 1.5rem 0;
  border: 2px dashed #dee2e6;
}

.region-content-placeholder p {
  margin-bottom: 1rem;
}

.region-content-placeholder ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.region-content-placeholder li {
  margin-bottom: 0.5rem;
  color: var(--gris-oscuro);
}

/* Estilos para el contenido específico de regiones */
.region-content-specific {
  margin: 1.5rem 0;
}

.region-section-title {
  color: var(--azul-profundo);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--naranja-activo);
}

.region-content-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.region-content-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #333;
}

.region-content-list li::before {
  content: "•";
  color: var(--naranja-activo);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Estilos para el contenedor de regiones con contenido desplegable */
.region-item-container {
  margin-bottom: 8px;
}

.region-content-dropdown {
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
  padding: 1rem;
  margin-top: -5px;
  margin-right: 10px;
  margin-left: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.region-content-title {
  color: var(--azul-profundo);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--naranja-activo);
}

/* Transiciones para el dropdown de regiones */
.region-dropdown-enter {
  transition: all 0.3s ease-out;
}

.region-dropdown-enter-start {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
}

.region-dropdown-enter-end {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
}

.region-dropdown-leave {
  transition: all 0.2s ease-in;
}

.region-dropdown-leave-start {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
}

.region-dropdown-leave-end {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
}

/* Transiciones para el detalle de región */
.detalle-region-enter {
  transition: all 0.3s ease-out;
}

.detalle-region-enter-start {
  opacity: 0;
  transform: translateY(20px);
}

.detalle-region-enter-end {
  opacity: 1;
  transform: translateY(0);
}

.detalle-region-leave {
  transition: all 0.2s ease-in;
}

.detalle-region-leave-start {
  opacity: 1;
  transform: translateY(0);
}

.detalle-region-leave-end {
  opacity: 0;
  transform: translateY(-10px);
}

/* Responsive para botones de región */
@media (max-width: 991px) {
  .detalle-region-content-wrapper {
    padding: 1.5rem;
  }

  .detalle-region-titulo {
    font-size: 1.75rem;
  }

  .detalle-region-subtitulo {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .detalle-region-content-wrapper {
    padding: 1rem;
  }

  .detalle-region-titulo {
    font-size: 1.5rem;
  }

  .detalle-region-subtitulo {
    font-size: 0.95rem;
  }

  .region-content-placeholder {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .detalle-region-content-wrapper {
    padding: 0.75rem;
  }

  .detalle-region-titulo {
    font-size: 1.25rem;
  }

  .detalle-region-subtitulo {
    font-size: 0.9rem;
  }

  .region-content-placeholder {
    padding: 1rem;
  }
}
