/* General Reset */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background-color: #f0f0f0;
}


/* Aseguramos que el body ocupe todo el alto de la ventana */
html, body {
  height: 100%;
}

/* Aseguramos que el contenedor principal ocupe todo el alto restante */
body {
  display: flex;
  flex-direction: column;
  padding-top: 70px; /* Ajusta este valor para la altura del header */
  background-color: #f0f0f0;
}

/* Estilo general */
body {
  background: url('/static/images/fondo.png') no-repeat center center fixed;
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--default-font);
  margin: 0;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  body {
    background-attachment: scroll; /* El fondo se desplazará con el contenido en pantallas pequeñas */
    background-position: center center; /* Asegura que la imagen se mantenga centrada */
    background-size: contain; /* Ajusta el tamaño de la imagen para que se vea bien sin perder detalles */
  }
}


/* Esto asegura que el contenido se estire hacia arriba y empuje el footer */
.main-content {
  flex: 1;
}

h3 {
  font-size: 0.9rem;
  color: #0056b3;
  margin-top: 3px;
  text-align: center;
  padding: 5px 0;
  background-color: #e0e0e0;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.3s ease; /* Suaviza la animación */
}

.header {
  background-color: rgba(0, 74, 173);
  padding: 15px 0;
  position: fixed;
  top: 10px; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 100%; 
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px; 
  max-width: 100%;
}

.header .header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%; 
}

.header .logo img {
  max-width: 30%; 
  height: auto; 
  display: block; 
  margin: 0; 
}

.header .logo img:hover {
  transform: scale(1.3);
  opacity: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: none; 
}

.navmenu .dropdown i {
  display: none;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Estilo del Menú de Navegación */
.navmenu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: auto 40px auto 40px;
}

.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu li {
  position: relative;
}

.navmenu a {
  font-size: 16px;
  font-family: var(--nav-font);
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.navmenu a:hover,
.navmenu .active {
  background-color: white;
  color: #004aad;
}

/* Dropdown Submenu */
.navmenu .dropdown > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  z-index: 10;
}

.navmenu .dropdown:hover > ul {
  display: block;
}

.navmenu .dropdown ul li {
  padding: 5px;
}

.navmenu .dropdown ul a {
  font-size: 14px;
  padding: 10px 20px;
  color: var(--default-color);
  white-space: nowrap;
}

.navmenu .dropdown ul a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Dropdown de Nivel Profundo */
.navmenu .dropdown .dropdown ul {
  left: 100%;
  top: 0;
  display: none;
}

.navmenu .dropdown .dropdown:hover > ul {
  display: block;
}

/* Responsive para móviles (menos de 768px) */
@media (max-width: 767px) {
  .header {
    width: 100%; /* Ajustar el ancho */
    padding: 8px 0;
  }

  .header .logo img {
    max-width: 50px; /* Reducir aún más el logo */
    display: none; /* Ocultar la imagen en dispositivos pequeños */
  }

  .navmenu {
    flex-direction: column; /* Poner el menú en columna */
    gap: 10px;
  }

  .navmenu a {
    font-size: 12px; /* Reducir texto */
    padding: 6px 10px;
  }
}

/* Responsive para tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .header {
    width: 100%;
  }

  .header .logo img {
    max-width: 60px;
  }

  .navmenu a {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* Responsive para PC portátiles (más de 1024px) */
@media (min-width: 1025px) {
  .header {
    width: 100%;
  }

  .header .logo img {
    max-width: 100px;
  }

  .navmenu a {
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# Grupo de Whatsapp
--------------------------------------------------------------*/
.whatsapp-contact-section {
  background-color: #004aad;
  padding: 20px 0;
  margin: 40px 0;
  color: #fff;
  position: relative;
}

.whatsapp-contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* separa en 3 zonas */
  align-items: center; /* centra vertical */
  position: relative;
}

.whatsapp-contact-section .whatsapp-icon {
  width: 160px;
  height: 160px;
  position: absolute; /* para sacarlo del flujo */
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.whatsapp-contact-section .text-content {
  flex: 1;
  text-align: center;
  background-color: #004aad;
}

.whatsapp-contact-section .text-content h2 {
  margin: 0 0 5px 0;
  font-weight: 700;
  font-size: 1.8rem;
}

.whatsapp-contact-section .text-content p {
  margin: 0;
  font-size: 1.1rem;
}


.whatsapp-contact-section .btn-whatsapp {
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  white-space: nowrap; /* evitar que el texto del botón se rompa */
}

.whatsapp-contact-section .btn-whatsapp:hover {
  background-color: #1ebe57;
}

.whatsapp-contact-section .icon-btn-whatsapp {
  width: 24px;
  height: 24px;
}

/* Estilos base para desktop ya definidos */

/* Tablets (pantallas entre 768px y 1024px) */
@media (max-width: 1024px) {
  .whatsapp-contact-section .container {
    flex-wrap: wrap; /* permite que los elementos se acomoden en varias filas */
    justify-content: center; /* centra los elementos */
    padding-left: 0; /* quitar padding que da espacio al ícono absoluto */
  }

  .whatsapp-contact-section .whatsapp-icon {
    position: relative; /* ya no absoluto para que no se desborde */
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    left: auto;
    top: auto;
    transform: none;
  }

  .whatsapp-contact-section .text-content {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .whatsapp-contact-section .btn-whatsapp {
    flex-basis: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* Móviles (pantallas hasta 767px) */
@media (max-width: 767px) {
  .whatsapp-contact-section {
    padding: 15px 10px;
    margin: 20px 0;
  }

  .whatsapp-contact-section .container {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .whatsapp-contact-section .whatsapp-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .whatsapp-contact-section .text-content {
    flex-basis: auto;
    text-align: center;
    margin-bottom: 10px;
  }

  .whatsapp-contact-section .btn-whatsapp {
    width: 90%;
    justify-content: center;
    padding: 12px;
  }
}



/* Ad Bar */
.app-ad-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
  position: fixed;
  top: 55px;
  width: 100%;
  height: calc(70px * 1.2); /* Incrementa la altura en un 30% */
  z-index: 999;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 20px;
}

.ad-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.ad-media {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover; /* Ajusta la imagen/video al contenedor */
  border-radius: 20px; /* Opcional: bordes redondeados */
}

img, video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#portafolio h1 {
  font-size: 1.5em;
  color: #2c3e50; /* Color oscuro para destacar el título */
  text-align: center; /* Centrar el título horizontalmente */
  margin-bottom: 20px; /* Espacio inferior para separación */
  font-weight: bold; /* Aumentar el peso para resaltar el título */
}

#portafolio h2 {
  font-size: 1.1em;
  color: #2c3e50; /* Color oscuro para destacar el título */
  text-align: center; /* Centrar el título horizontalmente */
  margin-bottom: 20px; /* Espacio inferior para separación */
  font-weight: bold; /* Aumentar el peso para resaltar el título */
}

#portafolio h3 {
  font-size: 0.9rem;
  color: #0056b3;
  margin-top: 3px;
  text-align: center;
  padding: 5px 0;
  background-color: #e0e0e0;
  border-radius: 5px;
}

#portafolio h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-top: 3px;
  text-align: center;
  padding: 5px 0;
  background-color: #004aad;
  border-radius: 5px;
}



/* Contenedor de radio buttons */
.radio-group-container2 {
  background-color: #e0e0e0;
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 90%;
  max-width: 1000px;
  display: grid;  /* Usamos grid en lugar de flex */
  grid-template-columns: repeat(5, 1fr);  /* Crea 5 columnas por defecto */
  gap: 10px;  /* Espacio entre las opciones */
  transition: all 0.3s ease;
  margin: 0 auto;  /* Aplica auto a los márgenes izquierdo y derecho */
}

/* Estilo para el input de texto */
#inputCriterio {
  display: block; /* Asegura que el input sea visible */
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #004aad;
  width: 100%;
  max-width: 450px;  /* Aumenta el ancho del input */
  height: 35px;  /* Asegura que el input tenga la misma altura que el botón */
  margin: 5px 0; /* Agrega espacio alrededor */
  box-sizing: border-box;
  font-size: 14px;
}

/* Estilo para el botón de búsqueda */
.search-button {
  padding: 10px 20px;
  background: #004aad;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
  margin-top: 5px;
  height: 35px;  /* Asegura que el botón tenga la misma altura que el input */
  width: 100%;
  max-width: 450px;  /* Ajusta el tamaño máximo del botón */
}

.search-button:hover {
  background: #28a745; /* Cambia a un verde más visible al hacer hover */
}

/* Media Queries para hacer responsive */
@media (max-width: 1024px) {
  .radio-group-container2 {
    grid-template-columns: repeat(3, 1fr);  /* Cambia a 3 columnas para pantallas medianas */
  }

  .input-button-container {
    width: 100%;
  }

  #inputCriterio {
    width: 100%;  /* Asegura que el input ocupe el ancho completo */
    padding: 12px;
    font-size: 16px;
  }

  .search-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .container-filtros {
    max-width: 95%;
    padding: 10px;
  }

  .radio-group-container2 {
    grid-template-columns: repeat(2, 1fr); /* Cambia a 2 columnas en pantallas más pequeñas */
  }

  .input-button-container {
    width: 100%;
  }

  #inputCriterio {
    width: 100%;  /* Asegura que el input ocupe el ancho completo */
    padding: 12px;
    font-size: 16px;
  }

  .search-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .radio-group-container2 {
    grid-template-columns: 1fr;  /* Cambia a una sola columna en pantallas muy pequeñas */
  }

  #inputCriterio {
    padding: 12px;
    font-size: 16px;
  }

  .search-button {
    font-size: 16px;
    padding: 10px 10px;
  }
}



/* Estilos exclusivos para #resultadosBusqueda-container */

/* Contenedor de la tabla con scroll horizontal */
#resultadosBusqueda-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 10px;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    position: relative;
    min-width: 100%; /
}

#referenciaBusqueda {
  width: 98%; /* Asegura que la tabla ocupe el 100% del contenedor */
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 13px;
}

#referenciaBusqueda thead th {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 10px;
  text-align: center;
  border: 1px solid gray;
}

#referenciaBusqueda tbody td {
  border: 1px solid gray;
  background-color: #fff;
  text-align: center;
  padding: 10px;
  color: #000;
  vertical-align: middle;
  white-space: normal;  /* Permite que el texto se divida */
  word-wrap: break-word;  /* Hace que el texto largo se divida cuando sea necesario */
  overflow-wrap: break-word; /* Otra propiedad que asegura que el texto largo se divida */
  border: 1px solid gray;
  background-color: #fff
}


#referenciaBusqueda tbody td:nth-child(1),
#referenciaBusqueda tbody td:nth-child(2),
#referenciaBusqueda tbody td:nth-child(3),
#referenciaBusqueda tbody td:nth-child(4) {
  text-align: justify;
  padding: 10px;
  color: #000;
  vertical-align: center; 
}


#referenciaBusqueda tbody td:nth-child(5) {
  text-align: justify; /* O el que prefieras */
  padding: 10px;
  color: #000;
}


#referenciaBusqueda tbody td:hover {
  background-color: rgba(0,0,0,0.05);
  cursor: pointer;
}


/* Ajustar el tamaño de la columna 2 y la columna 4 en pantallas pequeñas */
@media (max-width: 768px) {
  #referenciaBusqueda tbody td:nth-child(2),
  #referenciaBusqueda tbody td:nth-child(4) {
    max-width: 120px;
    overflow: hidden;
  }

  #referenciaBusqueda {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  #referenciaBusqueda tbody td:nth-child(2),
  #referenciaBusqueda tbody td:nth-child(4) {
    max-width: 100px; 
  }

  #referenciaBusqueda {
    font-size: 9px;
  }

  #referenciaBusqueda thead th {
    font-size: 8px;
  }
}



.radio-group-container {
  background-color: #e0e0e0;
  padding: 10px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 90%;
  max-width: 1000px;
  display: grid;  /* Usamos grid en lugar de flex */
  grid-template-columns: repeat(4, 1fr);  /* Crea 4 columnas */
  gap: 5px;  /* Espacio entre las opciones */
  transition: all 0.3s ease;
  margin: 0 auto;  /* Aplica auto a los márgenes izquierdo y derecho */
}


.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  user-select: none;
  margin: 0;
}

.radio-input {
  display: none;
}

.radio-custom {
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: 2px solid #5c5e79;
  border-radius: 50%;
  margin-right: 8px; 
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-custom::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #8a8b9f;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.radio-custom::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: #00a6ff;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.radio-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #000;
  transition: color 0.3s ease;
}

.radio-label:hover .radio-input:not(:checked) + .radio-custom {
  transform: scale(1.1);
  border-color: #8a8daf;
}

.radio-label:hover .radio-text {
  color: #e2e4f4;
}

.radio-input:checked + .radio-custom {
  border-color: #00a6ff;
  transform: scale(0.9);
}

.radio-input:checked + .radio-custom::before {
  transform: scale(1);
  background-color: #00a6ff;
}

.radio-input:checked + .radio-custom::after {
  opacity: 1;
  transform: scale(1.3);
  animation: orbit 2.5s infinite linear;
  box-shadow:
    0 0 30px #00a6ff,
    0 0 80px rgba(0, 166, 255, 0.2);
}

.radio-input:checked ~ .radio-text {
  color: #004aad;
  font-weight: 700;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
  .radio-group-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en móviles */
    max-width: 90%;
    gap: 0;  /* Espacio entre las opciones */
  }
  
    .radio-group-container2 {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en móviles */
    max-width: 90%;
    gap: 0;  /* Espacio entre las opciones */
  }

  .radio-label {
    margin: 5px 0;
  }

  .radio-text {
    font-size: 0.7rem;
  }
}





#tabla-procesos-hoy {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow-x: auto; /* Permitir desplazamiento horizontal solo si es necesario */
}

#tabla-procesos-hoy, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 6px; /* Reducir el padding para pantallas pequeñas */
    text-align: left;
    font-size: 12px; /* Reducir el tamaño de la fuente para móviles */
    word-wrap: break-word; /* Permitir que las palabras se partan en varias líneas */
}


a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

th {
    background-color: #004aad;
    color: white;
}

#tabla-procesos-hoy tr:nth-child(odd) {
    background-color: #f2f2f2; /* Gris claro para filas impares */
}


#tabla-procesos-hoy tr:nth-child(even) {
    background-color: #fff; /* Blanco para filas pares */
}

#tabla-procesos-hoy td:nth-child(1), #tabla-procesos-hoy th:nth-child(1), 
#tabla-procesos-hoy td:nth-child(2), #tabla-procesos-hoy th:nth-child(2) {
    width: 15%; /* Columna 1 y 2 con el mismo tamaño */
    text-align: justify; /* Justificar el texto */
}

#tabla-procesos-hoy td:nth-child(3), #tabla-procesos-hoy th:nth-child(3) {
    width: 55%; /* Columna 3 será el doble de tamaño que las 1 y 2 */
    text-align: justify; /* Justificar el texto */
}

#tabla-procesos-hoy td:nth-child(4), #tabla-procesos-hoy th:nth-child(4),
#tabla-procesos-hoy td:nth-child(5), #tabla-procesos-hoy th:nth-child(5) {
    width: 15%; /* Columna 4 y 5 con el mismo tamaño */
    text-align: justify; /* Justificar el texto */
}


/* Media Queries para mejorar en dispositivos móviles */

@media (max-width: 768px) {
    th, td {
        font-size: 12px; /* Reducir el tamaño de la fuente en pantallas más pequeñas */
        padding: 6px; /* Reducir el padding en pantallas pequeñas */
    }

    #tabla-procesos-hoy td, #tabla-procesos-hoy th {
        width: auto;
        text-align: center; /* Centrar el texto en pantallas pequeñas */
    }

    #tabla-procesos-hoy td:nth-child(1), #tabla-procesos-hoy th:nth-child(1),
    #tabla-procesos-hoy td:nth-child(2), #tabla-procesos-hoy th:nth-child(2),
    #tabla-procesos-hoy td:nth-child(3), #tabla-procesos-hoy th:nth-child(3),
    #tabla-procesos-hoy td:nth-child(4), #tabla-procesos-hoy th:nth-child(4),
    #tabla-procesos-hoy td:nth-child(5), #tabla-procesos-hoy th:nth-child(5) {
        width: 100%; /* Hacer que las columnas ocupen el 100% del ancho disponible */
        display: block; /* Hacer que las celdas de la tabla se apilen en lugar de alinearse horizontalmente */
    }

    #tabla-procesos-hoy td {
        word-break: break-all; /* Evitar que el contenido se desborde horizontalmente */
    }
}

@media (max-width: 480px) {
    #tabla-procesos-hoy td, #tabla-procesos-hoy th {
        font-size: 10px; /* Aumentar la legibilidad en pantallas muy pequeñas */
    }

    #tabla-procesos-hoy {
        overflow-x: auto; /* Permitir desplazamiento horizontal en pantallas muy pequeñas */
    }
}


    
/* Estilos aplicados solo a la imagen dentro del contenedor con clase .aside-logo */
.aside-logo img {
  display: block;
  margin: 10px auto;
  width: 30%;
  height: auto;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: pulsate 3s ease-in-out infinite;
}

.aside-logo img:hover {
  transform: scale(1.3);
  opacity: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: none; /* Detiene la animación de pulsación al pasar el mouse */
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}


/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .container.app-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  #bottom-navigation {
      height: 50px;
  }
  .nav-bottom .nav-icon {
      font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .container.app-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .header-title {
      font-size: 1em;
  }
  .card-title {
      font-size: 0.7em;
  }
  .contact-main button {
      font-size: 0.9em;
  }
}


/* Footer Styles */
/* Estilos para el footer */
.footer-container {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    color: #000;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 200px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: rgba(0, 74, 173);
}

.footer-info {
    text-align: center;
    color: #000;
    position: relative; /* Necesario para que el fondo de olas quede detrás */
    width: 100%;
    top: -80px;
}


.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    top: -150px;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background-color: #555;
    color: #1da1f2;
    transform: scale(1.1) translateY(-6px);
}
