/*----- Footer -----*/
.footer {
  background: linear-gradient(0deg, rgb(40, 4, 84), rgb(66, 3, 142));
  color: rgba(245, 245, 235, 1);
  padding: 50px 20px 20px;
  font-family: 'Atlan', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.footer-col {
  flex: 0 0 auto;
  width: 220px;
  min-width: 180px;
}

.footer-col h3 {
  font-family: 'Athene Voyage', serif;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: rgba(245, 245, 235, 1);
  position: relative;
  padding-bottom: 10px;
}

/* Línea decorativa debajo de los títulos */
.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #F2EFE4, transparent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(245, 245, 235, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #FFD700;
  transform: translateX(5px);
}

.footer-subtitle {
  font-size: 16px;
  color: rgba(245, 245, 235, 0.9);
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Estilos para los iconos de Font Awesome */
.footer-phone,
.footer-email,
.footer-schedule {
  font-size: 16px;
  margin-bottom: 12px;
  color: rgba(245, 245, 235, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-phone i,
.footer-email i,
.footer-schedule i {
  color: white; /* Iconos en blanco puro */
  font-size: 16px;
  width: 20px; /* Ancho fijo para alinear */
  text-align: center;
}

.footer-schedule {
  padding-left: 0; /* Eliminamos el padding que ya no necesitamos */
}

.footer-col img {
  width: 150px;
  display: block;
  margin: 0 auto;
  filter: brightness(1.1);
}

/* Línea divisoria y copyright */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 239, 228, 0.5), transparent);
  margin-bottom: 20px;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(245, 245, 235, 0.7);
  letter-spacing: 0.5px;
}

/*------ MEDIA QUERIES RESPONSIVE -------*/

/* Desktop grande */
@media screen and (min-width: 1200px) {
  .footer-container {
    gap: 70px;
  }
}

/* Tablet */
@media screen and (max-width: 900px) {
  .footer-container {
    gap: 40px;
    justify-content: center;
  }
  
  .footer-col {
    width: 200px;
  }
}

/* Móvil */
@media screen and (max-width: 700px) {
  .footer {
    padding: 40px 15px 20px;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
  
  .footer-col {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .footer-col h3 {
    text-align: center;
  }
  
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a:hover {
    transform: translateX(0) translateY(-2px);
  }
  
  .footer-phone,
  .footer-email,
  .footer-schedule {
    justify-content: center;
  }
  
  .footer-col img {
    margin: 0 auto;
  }
}

/* Móvil pequeño */
@media screen and (max-width: 380px) {
  .footer-col h3 {
    font-size: 18px;
  }
  
  .footer-links a,
  .footer-subtitle,
  .footer-phone,
  .footer-email,
  .footer-schedule {
    font-size: 14px;
  }
  
  .footer-col img {
    width: 120px;
  }
}
