:root {
  --color-section1: #271d66;
  --color-section2: #a0006c;
  --color-section3: #007000;
  --color-section4: #d9601e;
  --color-section5: #9d2d6f;
  --color-section6: #006ca2;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Modal del banner (oculto por defecto) */
.modal-banner {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.5s ease-in;
}

/* Animación de aparición */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Contenido del banner */
.banner-contenido {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.6s ease-out;
}

/* Animación de deslizamiento */
@keyframes slideDown {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Imagen del banner */
.banner-contenido img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  display: block;
  padding: 1.5rem;
}

/* Botón de cerrar */
.cerrar-banner {
  position: absolute;
  top: 5px;
  right: 5px;

  /* Forma circular */
  width: 40px;
  height: 40px;
  border-radius: 50%;

  /* Fondo y colores */
  background-color: rgba(255, 0, 0, 0.8);
  color: #fff;

  /* Texto centrado */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Tipografía */
  font-size: 28px;
  font-weight: bold;
  line-height: 1;

  /* Interacción */
  cursor: pointer;
  z-index: 1000;

  /* Efectos */
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cerrar-banner:hover {
  background-color: rgba(255, 0, 0, 1);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.cerrar-banner:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 600px) {
  .banner-contenido {
    width: 95%;
    margin: 20% auto;
  }

  .banner-texto h2 {
    font-size: 20px;
  }
}

* {
  /* font-family: "Poppins", sans-serif;*/
  /* font-family: "Roboto", sans-serif; */
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

ul {
  padding-left: 0px !important;
}

a {
  color: #000ec6;
}

ul li a {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #000ec6;
}
ul li a:hover {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

h3 {
  margin-bottom: 0;
}

h2.card-title {
  color: #fff;
}

