:root {
  --primary-clr: #831e59; /* #902963; 
  /* Color primario */
  --secondary-clr: #10577a; /* #0089ca;
  /* Color secundario */
  --bg-color: #ffffff;
  /* Fondo del contenedor */
  --text-light: #f5f5f5;
  /* Texto claro */
  --text-dark: #333333;
  /* Texto oscuro */
  --title-clr: #555555;
  /* Color de los títulos */
  --hover-clr: #0066cc;
  /* Color al hover */
}



.atm-calendar-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif, sans-serif;
  position: relative;
  padding: 10px 0;
}

.atm-calendar-title h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-clr);
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--primary-clr), var(--secondary-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Efecto degradado en el texto */
}

.atm-calendar-title .atm-title-underline {
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background-color: var(--secondary-clr);
  border-radius: 2px;
  z-index: 0;
  animation: underline-expand 0.8s ease-in-out;
}

/* Contenedor del calendario */
.atm-container {
  
  position: relative;
  margin: auto;
  width: 100% !important;
  max-width: 100% !important;
  display: flex;
  gap: 20px;
  border-radius: 10px;
  background-color: var(--bg-color);
  color: var(--text-dark);
  padding: 20px;
  animation: atm-fadeIn 0.5s ease-in-out;
}

/* Fondo animado */
.atm-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg,
      rgba(144, 41, 99, 0.1) 0%,
      rgba(0, 137, 202, 0.1) 100%);
  animation: atm-gradientBG 5s infinite alternate;
  border-radius: 10px;
}

@keyframes atm-gradientBG {
  0% {
    background: linear-gradient(90deg,
        rgba(144, 41, 99, 0.1) 0%,
        rgba(0, 137, 202, 0.1) 100%);
  }

  100% {
    background: linear-gradient(90deg,
        rgba(0, 137, 202, 0.1) 0%,
        rgba(144, 41, 99, 0.1) 100%);
  }
}

/* Sección izquierda */
.atm-left {
  width: 55%;
  position: sticky;
  top: 0; /* Distancia desde la parte superior de la ventana */
  align-self: flex-start; /* Asegurar la alineación en contenedores flexibles */
  
}

/* Calendario */
.atm-calendar {
  position: relative;
  width: 100%;

  background-color: var(--bg-color);
  color: var(--text-dark);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.atm-calendar .atm-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-clr);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.atm-days {
  transition: opacity 0.3s ease-in-out;
}

.atm-days.fade-out {
  opacity: 0;
}

.atm-calendar .atm-days .atm-day.atm-today {
  border: 2px solid var(--secondary-clr);
  background-color: rgba(0, 137, 202, 0.2);
  font-weight: bold;
  color: var(--primary-clr);
}

.atm-calendar .atm-month i {
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-clr);
  transition: transform 0.2s ease, color 0.2s ease;
}

.atm-calendar .atm-month i:hover {
  color: var(--secondary-clr);
  transform: scale(1.3) rotate(15deg);
  transition: all 0.3s ease-in-out;
}

.atm-calendar .atm-weekdays {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-clr);
}

.atm-weekdays div {
  width: 14.28%;
  text-align: center;
  text-transform: capitalize;
  /* Letra inicial mayúscula */
}

.atm-calendar .atm-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.atm-calendar .atm-days .atm-day {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-clr);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/*Dias del mes anterior*/
.atm-calendar .atm-days .atm-prev-date {
  color: #333333;
  background-color: rgba(0, 0, 0, 0.05);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

/*Dias del mes siguiente*/
.atm-calendar .atm-days .atm-next-date {
  color: #333333;
  background-color: rgba(0, 0, 0, 0.05);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

.atm-calendar .atm-days .atm-day:hover {
  background-color: var(--primary-clr);
  color: #fff;
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.atm-calendar .atm-days .atm-day.atm-active {
  background-color: var(--primary-clr);
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Marcadores de eventos ---- Este era el puntito azul */
/* .atm-calendar .atm-days .atm-day.atm-event::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--secondary-clr);
  border-radius: 50%;
}*/

/* Indicadores de eventos múltiples */
.atm-calendar .atm-days .atm-day.atm-event.atm-multiple::after {
  content: attr(data-event-count) " +";
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 0.8rem;
  background-color: var(--secondary-clr);
  color: #fff;
  border-radius: 5px;
  padding: 2px 6px;
}

.atm-events .atm-event:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* Animación en los eventos al hacer hover */
.atm-events .atm-event {
  background-color: rgba(0, 137, 202, 0.1);
  border-left: 5px solid var(--secondary-clr);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.atm-events .atm-event:hover {
  background-color: var(--secondary-clr);
  color: #fff;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Animación en el hover de los días */
.atm-calendar .atm-days .atm-day {
  transition: all 0.3s ease-in-out;
}

.atm-calendar .atm-days .atm-day:hover {
  background-color: var(--primary-clr);
  color: #fff;
  transform: scale(1.1);
}

/* Efecto sutil en los días seleccionados */
.atm-calendar .atm-days .atm-day.atm-active {
  background-color: var(--primary-clr);
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}


/* Días deshabilitados */
.atm-calendar .atm-days .atm-day.atm-disabled {

  cursor: pointer;
  cursor: not-allowed;
  pointer-events: none;
  
}

#atm-category {
  color: var(--primary-clr);
}


/* Animaciones */
@keyframes atm-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes markerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación en la transición de los meses */
@keyframes fadeInMonth {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Sección derecha */
.atm-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--bg-color);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 100%;
  /*Altura fija */
  overflow-y: auto;
  /* Scroll para textos largos */
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.atm-right .atm-today-date {
  text-align: center;
  margin-bottom: 20px;
}

.atm-right .atm-today-date .atm-event-day {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-clr);
  text-transform: capitalize;
}

.atm-right .atm-today-date .atm-event-date {
  font-size: 1rem;
  color: var(--primary-clr);
}

.atm-events {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.atm-events .atm-event {
  background-color: rgba(0, 137, 202, 0.1);
  border-left: 5px solid var(--secondary-clr);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  word-wrap: break-word;
  /* Ajustar texto largo */
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* Estilo para los títulos (h3) de los eventos */
.atm-events .atm-event h3 {
  font-size: 1rem;
  color: black;
  font-weight: 600;
  margin-bottom: 5px;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  white-space: wrap;
  overflow: hidden;
  line-height: inherit;
  text-transform: uppercase;
  
}

.atm-event-category {
  color: var(--primary-clr);
  font-weight: bold;
}

.atm-events .atm-event h3:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.atm-events .atm-event:hover {
  background-color: #0089ca;
  color: #fff;
}

.atm-events .atm-no-event {
  text-align: center;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Media Queries */
@media screen and (max-width: 1000px) {
  .atm-container {
    flex-direction: column;
  }

  .atm-left,
  .atm-right {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .atm-calendar .atm-month {
    font-size: 1.2rem;
  }

  .atm-calendar .atm-weekdays,
  .atm-calendar .atm-days {
    font-size: 0.9rem;
  }

  .atm-right .atm-today-date .atm-event-day {
    font-size: 1.2rem;
  }

  .atm-right .atm-today-date .atm-event-date {
    font-size: 0.9rem;
  }

  .atm-events .atm-event {
    padding: 10px;
  }
}

/* The Modal (background) */
.atm-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 14%;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.atm-modal-content {
  position: relative;
  width: 60%;
  /* Cambiar a un tamaño más pequeño */
  max-width: 700px;
  /* Límite máximo para pantallas grandes */
  margin: auto;
  padding: 0px;
  /* Espaciado interno */
  background-color: #fefefe;
  border: 1px solid #888;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px !important;
  /* Bordes redondeados */
  animation-name: animatetop;
  animation-duration: 0.4s;
  max-height: 90vh;
  border-collapse: collapse;
  z-index: 1;
}

/* The Close Button */
.atm-modal-close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.atm-modal-close:hover,
.atm-modal-close:focus {
  color: var(--hover-clr);
  text-decoration: none;
  cursor: pointer;
}

.atm-modal-header {
  padding: 20px 20px;
  background-color: var(--primary-clr);
  color: white;
  border-radius: 10px 10px 0px 0px !important;
}

.atm-modal-header h2 {
  color: #fff;
  /* Texto blanco */
  font-size: 1.5rem;
  /* Ajustar tamaño del texto */
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.atm-modal-body {
  padding: 30px 16px;
  margin: 0;
  text-align: center;
  overflow: visible;
  overflow-y: auto;
}

.atm-modal-body p {
  padding-bottom: 20px !important;
}

.no-scroll {
  overflow: hidden;
  /* Desactiva el scroll */
  height: 100vh;
  /* Evita que el contenido salte */
}

/* Objeto que sobresale del borde del modal */
.atm-modal-date {
  position: absolute;
  top: -38px;
  /* Ajusta para sobresalir adecuadamente */
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-clr);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 20px;
  /* Mejora el espaciado interno */
  border-radius: 10px;
  /* Bordes más suaves */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 3;
}

.atm-calendar-buttons {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.atm-calendar-button {
  background: linear-gradient(135deg, #023F5E, #612247);
  color: #fff;
  display: inline-block;
  padding: 12px 20px;
  /* Espaciado uniforme */
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  color: #fff;
  cursor: pointer;
  min-width: 250px;
  /* Ancho fijo para que sean del mismo tamaño */
  text-align: center;
  /* Centra el texto */
  margin: 10px 20px 10px;
}

.atm-google-calendar {
  background-color: var(--secondary-clr);
}

.atm-calendar-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 12px var(--shadow-dark);
}

/* Título de referencias */
.atm-category-references-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-clr);
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#atm-google-calendar-export {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 20px auto auto;
}


@media screen and (max-width: 1000px) {
.atm-left {
  position: relative;}
}

@media screen and (max-width: 768px) {
  
  
  .atm-category-marker {
    width: 7px !important;
    height: 7px !important;
  }

  .atm-modal-content {
    width: 90%;
    max-height: 85vh;
    /* Reducir altura máxima para pantallas pequeñas */
  }

  .atm-modal-header h2 {
    font-size: 1.2rem;
    /* Ajustar tamaño del título */
  }

  .atm-modal-body {
    padding: 15px;
    /* Reducir el padding interno */
  }

  .atm-modal-date {
    font-size: 1rem;
    /* Reducir tamaño de texto del indicador de fecha */
    top: -25px;
    /* Ajustar posición superior */
    padding: 5px 10px;
    /* Reducir espacio interno */
  }

  .atm-calendar-title h1 {
    font-size: 2rem;
    /* Reduce el tamaño del texto */
  }

  .atm-calendar-title .atm-title-underline {
    width: 80px;
    /* Reduce el ancho de la línea */
  }
}



/* Estilo general del contenedor */
.atm-category-filter-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 10px auto;
}

/* Estilo del select */
.atm-category-filter {
  width: 80%;
  padding: 10px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--primary-clr);
  border-radius: 8px;
  background-color: var(--bg-color);
  color: var(--text-dark);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}

/* Ocultar el icono de flecha predeterminado */
.atm-category-filter::-ms-expand {
  display: none;
}


/* VER ESTOOOOOOOOOOOOOOOOOOOOOOOOOOO */
/* Icono personalizado */
/* .category-filter-wrapper::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--primary-clr);
  pointer-events: none;
} */

/* ----------------------------------------------------------------------------- */




/* Hover y foco */
.atm-category-filter:hover {
  background-color: rgba(144, 41, 99, 0.1);
  /* Fondo en hover */
  border-color: var(--secondary-clr);
  /* Cambia el color del borde */
}

.atm-category-filter:focus {
  border-color: var(--secondary-clr);
  box-shadow: 0px 0px 8px rgba(0, 137, 202, 0.5);
  /* Efecto de foco */
}

/* Opciones del select */
.atm-category-filter option {
  padding: 10px;
  /* Espaciado interno */
  background-color: var(--bg-color);
  /* Fondo */
  color: var(--text-dark);
  /* Texto */
  font-size: 1rem;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes underline-expand {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 120px;
    opacity: 1;
  }
}

.atm-category-marker {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.atm-category-references{
  background-color: var(--bg-color);
  margin: 20px auto auto;
  display: block;
  flex-wrap: wrap;
  /*margin-top: 10px;*/
  gap: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding:15px 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  
}

.atm-google-calendar-export {
  margin: 20px auto auto;
  display: none;
  flex-wrap: wrap;
  /*margin-top: 10px;*/
  gap: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding:15px 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}


.atm-category-reference {
  display: flex;
  align-items: center;

  gap: 10px;
  font-size: 0.8rem;
}

.atm-category-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.atm-date {
  animation: fadeInMonth 0.3s ease-in-out;
}

/* Animación en los botones de mes */
.atm-calendar .atm-month i {
  transition: transform 0.3s ease-in-out;
}

.atm-calendar .atm-month i:hover {
  transform: scale(1.2) rotate(15deg);
}

/* Estilos base para los eventos en atm-right */
.atm-events {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Animación de entrada */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Clases que se aplican progresivamente */
.atm-event {
  background-color: rgba(0, 137, 202, 0.1);
  border-left: 5px solid var(--secondary-clr);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0; /* Inicialmente oculto */
  transform: translateY(15px); /* Desplazado hacia abajo */
  transition: all 0.5s ease-in-out;
}

/* Clase que activa la animación */
.atm-event.show {
  opacity: 1;
  transform: translateY(0);
}

/* Efecto hover */
.atm-event:hover {
  background-color: var(--secondary-clr);
  color: #fff;
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.atm-category-references {

  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  transition: transform 0.5s ease-in-out;
}

.atm-category-reference {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  padding: 2px;
  background-color: #fff;
  border-radius: 8px;
  transition: transform 0.5s ease-in-out;

}

.atm-category-reference:hover {
  transform: scale(1.01);

}

/* Marcador de color de la categoría */
.atm-category-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
  transition: transform 0.5s ease-in-out;
}

/* Agrandar el marcador en hover */
.atm-category-reference:hover .atm-category-color {
  transform: scale(1.05);
}


/* Nombre de la categoría */
.atm-category-name {
  font-weight: bold;
  color: var(--text-dark);
  transition: color 0.8s ease-in-out;
}


/* 📌 RESPONSIVE: Ajustar tamaño en pantallas más pequeñas */
@media screen and (max-width: 600px) {
  .atm-category-reference {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .atm-category-color {
    width: 12px;
    height: 12px;
  }

  .atm-category-reference:hover {
    transform: scale(1.05);
  }
}

/* ✨ Animación de desaparición del calendario */
.atm-calendar.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

/* ✨ Animación de aparición del calendario */
.atm-calendar.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}

/* ✨ Animación de desaparición */
#atm-category-references.fade-out {
  opacity: 0;
  transform: translateY(-20px); /* Se mueve un poco más hacia arriba */
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  pointer-events: none; /* Evita interacción mientras está oculto */
}

/* ✨ Animación de aparición */
#atm-category-references.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}






/* Estilos específicos para móviles y tablets */
@media (max-width: 768px) {
  .atm-container {
      flex-direction: column !important;
  }

  .atm-category-references {
      order: 1 !important; /* Mover al final */
  }

  .atm-left {
      order: 0 !important;
  }

  .atm-right {
      order: 0 !important;
  }
}
@media screen and (max-width: 1000px) {
  .atm-container {
      display: flex;
      flex-direction: column;
  }

  .atm-category-references {
      margin-top: auto !important; /* Empuja la sección hacia el final */
  }
}

