.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.cuadro-transparente {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
}

/* Glass effect BARRA SUPERIOR MENU navbar verde oscuro #003300 */
.glass-navbar {
  background: rgba(0, 51, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Links del navbar */
.nav-link {
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #fff !important;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  transform: scale(1.05);
}

/* Botón Contacto con degradado verde olivo */
.btn-gradient {
  background: linear-gradient(45deg, #6b8e23, #556b2f);
  color: #fff;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-gradient:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Botón hamburguesa limpio con glow */
.navbar-toggler {
  border: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  transition: transform 0.1s ease, opacity 0.1s ease, box-shadow 0.3s ease;
}

.navbar-toggler:hover {
  box-shadow: 0 0 8px rgba(255, 255, 0, 0.6), 0 0 16px rgba(255, 255, 0, 0.4);
  transform: scale(1.05);
}

.navbar-toggler:active {
  transform: scale(0.9);
  opacity: 0.8;
  box-shadow: 0 0 12px rgba(255, 255, 0, 0.8), 0 0 24px rgba(255, 255, 0, 0.5);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 6px rgba(255, 255, 0, 0.4);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Botones tipo pills - Verde #12552B */
.nav-pills .nav-link {
  background: linear-gradient(145deg, #12552B 0%, #166739 100%);
  color: #ffffff;
  margin-bottom: 5px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.nav-pills .nav-link:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  background: linear-gradient(145deg, #166739 0%, #1A7A45 100%);
}

.nav-pills .nav-link:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

.nav-pills .nav-link::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(0deg);
  pointer-events: none;
  border-radius: 50%;
  animation: rotateGlow 20s linear infinite;
}

.nav-pills .nav-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover::after {
  animation: shine 1s forwards;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}

/* Animación de brillo para el logo superior */
.logo-brillo {
  position: relative;
  display: inline-block;
  width: 45px;
  height: auto;
  animation: brilloSuave 3s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-brillo:hover {
  transform: scale(1.12) rotate(-3deg);
  filter: brightness(1.8) saturate(1.2);
}

@keyframes brilloSuave {
  0% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) saturate(1);
  }
  25% {
    transform: scale(1.03) rotate(1deg);
    filter: brightness(1.4) saturate(1.1);
  }
  50% {
    transform: scale(1.06) rotate(-1deg);
    filter: brightness(1.6) saturate(1.2);
  }
  75% {
    transform: scale(1.03) rotate(1deg);
    filter: brightness(1.4) saturate(1.1);
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) saturate(1);
  }
}

@media (max-width: 768px) {
  .logo-brillo {
    width: 35px;
  }
}

@media (min-width: 1200px) {
  .logo-brillo {
    width: 60px;
  }
}

.texto-navbar {
  color: #fff;
  font-size: clamp(0.7rem, 2vw, 0.9rem); /* tamaño un poco más grande que antes */
  line-height: 1.2;
  font-weight: 600;
}

/* Botón "Ver Requisitos" */
.btn-requisitos {
  background-color: #6b8e23;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  display: inline-block;
}

.btn-requisitos:hover {
  background-color: #6b8e23;
  box-shadow: 0 6px 14px rgba(107, 142, 35, 0.4);
  transform: scale(1.03);
  cursor: pointer;
}

.btn-requisitos:active {
  background-color: #556b2f;
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* Animación logo grande */
.logo-animado {
  display: inline-block;
  border-radius: 50%;
  animation: logoPulseGlow 2s infinite alternate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
  height: auto;
}

.logo-animado:hover {
  transform: scale(1.15) rotate(3deg);
  box-shadow: 0 0 30px rgba(107, 142, 35, 0.7), 0 0 60px rgba(107, 142, 35, 0.4);
}

@keyframes logoPulseGlow {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 15px rgba(107, 142, 35, 0.3), 0 0 30px rgba(107, 142, 35, 0.2);
  }
  25% {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 0 20px rgba(107, 142, 35, 0.4), 0 0 40px rgba(107, 142, 35, 0.25);
  }
  50% {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 0 25px rgba(107, 142, 35, 0.5), 0 0 50px rgba(107, 142, 35, 0.3);
  }
  75% {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 0 20px rgba(107, 142, 35, 0.4), 0 0 40px rgba(107, 142, 35, 0.25);
  }
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 15px rgba(107, 142, 35, 0.3), 0 0 30px rgba(107, 142, 35, 0.2);
  }
}

/* Contenedor departamentos */
.contenedor-departamento {
  background: linear-gradient(135deg, #556b2f, #6b8e23);
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 1rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contenedor-departamento {
    width: 98vw;
    margin-left: calc(-49vw + 50%);
    margin-right: calc(-49vw + 50%);
    padding: 1rem 1rem;
  }
}

@media (max-width: 576px) {
  .contenedor-departamento {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

.contenedor-departamento:hover {
  background: linear-gradient(135deg, #668012, #7a9c2c);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  transition: all 0.35s ease;
  cursor: pointer;
}

.contenedor-departamento::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: all 0.35s ease;
}

.contenedor-departamento:hover::after {
  left: 125%;
}

.contenedor-departamento h1 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.contenedor-departamento small {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.contenedor-departamento img {
  width: clamp(48px, 8vw, 64px);
  height: auto;
}

.col-md-4.text-center a {
  color: #DDEDB2;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.col-md-4.text-center a:hover {
  color: #E6FF99;
  transform: translateY(-2px);
  text-shadow: 0 0 6px rgba(230, 255, 153, 0.7);
}

footer {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Carrusel */
.carousel {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.carousel-item > img.d-block {
  width: 1600px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .carousel-item > img.d-block {
    height: 75vh;
    object-fit: cover;
    object-position: center top;
  }
}

#myCarousel {
  padding-top: 40px;
}

/* Cuadro transparente */
.cuadro-transparente {
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 30px;
  border-radius: 15px;
  display: block;
  max-width: 90%;
  text-align: center;
  min-height: 200px;
  margin: 0 auto;
}

.cuadro-transparente h1 {
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 768px) {
  .cuadro-transparente {
    max-width: 95%;
    padding: clamp(10px, 3vw, 20px);
    text-align: center;
  }

  .cuadro-transparente h1 {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    line-height: 1.2;
  }

  .cuadro-transparente p {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    line-height: 1.4;
    white-space: normal;
  }

  .logo-animado {
    width: 130px;
    height: auto;
    margin-bottom: 10px;
  }

  .carousel-caption {
    bottom: 15%;
    padding: 0 10px;
    text-align: center;
  }
}

/* Acordeones */
.accordion-button {
  background-color: #f5f5f5;
  color: #333333;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .accordion-button {
    width: 90vw;
    margin-left: calc(-45vw + 50%);
    margin-right: calc(-45vw + 50%);
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.accordion-button:hover {
  background-color: #478261;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  color: #ffffff;
}

.accordion-button:not(.collapsed) {
  background-color: #1d6a45;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(1px);
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.25s ease;
}

.accordion-button:not(.collapsed):active {
  transform: translateY(2px);
}

.accordion-button:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(90, 101, 38, 0.2);
  transition: box-shadow 0.3s ease;
}

.accordion-body {
  background-color: #FBFFE7;
  color: #333333;
  border-left: 3px solid #5b7d6b;
  padding: 15px 20px;
  transition: all 0.3s ease;
  font-size: 0.90rem !important;
  width: 95%;
  margin: 0 auto;
}

.accordion-body ul li {
  font-size: 0.90rem !important;
  line-height: 1.6;
}

.accordion-body ul li strong {
  font-size: 0.90rem !important;
}

.accordion-body ul li i {
  font-size: 0.90rem !important;
}

@media (max-width: 768px) {
  .accordion .accordion-collapse {
    width: 95vw;
    margin-left: calc(-47.5vw + 50%);
    margin-right: calc(-47.5vw + 50%);
  }

  .accordion-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Botón ubicaciones */
.glow-btn {
  margin-right: 10px;
  margin-top: 10px;
  background-color: #DB4437;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(219, 68, 55, 0.4);
  transition: all 0.3s ease-in-out;
  white-space: normal;
}

.glow-btn:hover {
  box-shadow: 0 0 12px rgba(219, 68, 55, 0.6), 0 0 8px rgba(219, 68, 55, 0.4);
  transform: translateY(-2px);
}

.btn.float-end:hover {
  box-shadow: 0 0 15px rgba(219, 68, 55, 0.7);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .glow-btn {
    width: 100%;
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
    margin-right: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Botón departamentos */
.btn-departamentos {
  position: relative;
  background-color: #5A6D2C;
  color: #fff !important;
  border: 2px solid rgba(107, 142, 35, 0.9);
  border-radius: 10px;
  padding: 0.6rem 1.5rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  text-align: center;
}

.btn-departamentos::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(200, 255, 150, 0.5) 0%, rgba(200, 255, 150, 0) 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulseBrighter 1.8s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 576px) {
  .btn-departamentos::after {
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
  }
}

@media (max-width: 768px) and (min-width: 577px) {
  .btn-departamentos::after {
    top: -35%;
    left: -35%;
    width: 180%;
    height: 180%;
  }
}

@keyframes glowPulseBrighter {
  0% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}

.btn-departamentos:hover {
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(200, 255, 150, 0.6), 0 0 30px rgba(107, 142, 35, 0.4);
  transform: translateY(-2px) scale(1.02);
  cursor: pointer;
}

.btn-departamentos:active {
  transform: scale(0.97);
  box-shadow: 0 0 15px rgba(200, 255, 150, 0.5);
}

.btn-departamentos:active::after {
  animation: glowPulseActive 0.4s ease-in-out forwards;
}

@keyframes glowPulseActive {
  0% {
    opacity: 0.85;
    transform: scale(1.1);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
  100% {
    opacity: 0.85;
    transform: scale(1.1);
  }
}

/* Emoji animado */
.emoji-animado {
  font-size: 2.5em;
  display: inline-block;
  animation: leve-rebote 2s infinite, brillo-constante 3s infinite;
  vertical-align: middle;
  margin-right: 10px;
}

@keyframes leve-rebote {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes brillo-constante {
  0% {
    color: #28a745;
    text-shadow: 0 0 5px #28a745, 0 0 10px #1e7d33, 0 0 15px #28a745;
  }
  50% {
    color: #28a745;
    text-shadow: 0 0 8px #28a745, 0 0 16px #1e7d33, 0 0 20px #28a745;
  }
  100% {
    color: #28a745;
    text-shadow: 0 0 5px #28a745, 0 0 10px #1e7d33, 0 0 15px #28a745;
  }
}

@media (max-width: 768px) {
  .emoji-animado {
    font-size: 2em;
    margin-right: 5px;
  }

  h5 {
    font-size: 1em;
    line-height: 1.4em;
  }
}

@media (max-width: 480px) {
  .emoji-animado {
    font-size: 1.8em;
    margin-right: 5px;
  }

  h5 {
    font-size: 0.95em;
    line-height: 1.3em;
  }
}

/* Botón flotante subir */
#btnSubir {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  backdrop-filter: blur(3px);
  transition: all 0.3s ease;
  z-index: 9999;
}

#btnSubir i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.2em;
  line-height: 1;
}

#btnSubir:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  #btnSubir {
    width: 40px;
    height: 40px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }

  #btnSubir i {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  #btnSubir {
    width: 35px;
    height: 35px;
    font-size: 18px;
    bottom: 15px;
    right: 15px;
  }

  #btnSubir i {
    font-size: 1em;
  }
}

/* Animación entrada */
.animar-entrada {
  animation: fadeSlideScale 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeSlideScale {
  0% {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .animar-entrada {
    animation: fadeSlideScaleMobile 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  }

  @keyframes fadeSlideScaleMobile {
    0% {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
    }
    60% {
      opacity: 0.85;
      transform: translateY(-10px) scale(1.03);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

.dropdown-menu .dropdown-item:hover {
  background-color: #23272b;
  color: #fff;
}

.btn-highlight {
  background: linear-gradient(135deg, #556B2F, #6B8E23);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-highlight:hover {
  background: linear-gradient(135deg, #6B8E23, #556B2F);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Botón postulantes fucsia */
.btn-postulantes {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #7A1F3F, #9B2B55);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 12px rgba(155, 43, 85, 0.5);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: glowPulse 2s infinite alternate;
}

.btn-postulantes:hover {
  transform: scale(1.12);
  background: linear-gradient(135deg, #9B2B55, #C74370);
  box-shadow: 0 0 35px rgba(199, 67, 112, 0.9), 0 4px 14px rgba(0, 0, 0, 0.3);
  color: #fff !important;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(155, 43, 85, 0.4);
  }
  50% {
    box-shadow: 0 0 22px rgba(155, 43, 85, 0.7);
  }
  100% {
    box-shadow: 0 0 35px rgba(199, 67, 112, 0.9);
  }
}

.btn-postulantes::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(199, 67, 112, 0.25) 0%, transparent 70%);
  transform: rotate(0deg);
  animation: haloMove 6s linear infinite;
  z-index: 0;
}

@keyframes haloMove {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn-postulantes span {
  position: relative;
  z-index: 1;
}

#mensaje-inicial {
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 25px;
}

/* Estilos de ubicaciones */
.lista-ubicaciones {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ubicacion-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-left: 4px solid #0b6b3a;
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.ubicacion-item:hover {
  background-color: #fff5f5;
  transform: translateX(4px);
  border-left-color: #c82333;
}

.ubicacion-item i {
  color: #0b6b3a;
  font-size: 1.4rem;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.ubicacion-item:hover i {
  color: #c82333;
}

.ubicacion-item p {
  margin: 0;
  color: #212529;
  font-weight: 500;
  line-height: 1.4;
}

.ubicacion-link {
  display: flex;
  align-items: flex-start;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.ubicacion-link:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .modal-dialog {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .modal-content {
    border-radius: 0;
    width: 100%;
  }

  .modal-body {
    padding-left: 0;
    padding-right: 0;
  }

  .lista-ubicaciones {
    border-radius: 12px;
    padding: 12px 10px;
    margin: 0;
    background-color: #f8f9fa;
  }

  .ubicacion-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;
    border-left-width: 5px;
    padding: 14px 12px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .ubicacion-item p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.modal-footer {
  padding: 0.5rem 1rem;
  margin-top: -16px;
}

@media (max-width: 576px) {
  .modal-footer {
    justify-content: flex-start;
    padding-left: 1rem;
  }
}

.blink {
  animation: blink-animation 2s infinite;
}

@keyframes blink-animation {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

/* Contenedor de requisitos La Paz */
.requisitos-lapaz {
  max-width: 98%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
  border-left: 4px solid #6b8e23;
  background: linear-gradient(180deg, #e6f4e6 0%, #d9f0d9 100%);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  color: #212529;
  border-radius: 0.5rem;
}

.requisitos-lapaz h6 {
  font-weight: 700;
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Estilos para 9 departamentos - Sin duplicados */
@media (max-width: 576px) {
  #seccion-departamentos {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  #seccion-departamentos > .container {
    padding: 0 !important;
    width: 100% !important;
  }

  #seccion-departamentos .row {
    margin: 0 !important;
  }

  #seccion-departamentos .col-12.col-md-3 {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #seccion-departamentos .nav .nav-link {
    width: 95% !important;
    margin: 0 auto 5px auto;
    text-align: center;
  }
/* esto reduce o amplia el espacio de los botones y carrusel  */
#seccion-departamentos {
  margin-top: -40px !important;  /* la sección sube sobre el espacio del carrusel */
  padding-top: 0px !important;   /* sin espacio interno */
}
}

/* Internos del acordeón para pantallas mayores a móviles */
@media (min-width: 577px) {
  .my-3.p-4.rounded.shadow-sm .accordion-item,
  .my-3.p-4.rounded.shadow-sm .accordion-header,
  .my-3.p-4.rounded.shadow-sm .accordion-button,
  .my-3.p-4.rounded.shadow-sm .accordion-body {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 8px !important;
  }
}

/* Bordes redondeados del acordeón para todas las pantallas */
.my-3.p-4.rounded.shadow-sm .accordion,
.my-3.p-4.rounded.shadow-sm .accordion-item,
.my-3.p-4.rounded.shadow-sm .accordion-header,
.my-3.p-4.rounded.shadow-sm .accordion-button,
.my-3.p-4.rounded.shadow-sm .accordion-body {
  border-radius: 8px !important;
}




