.footer {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: white;
  font-family: "Outfit", sans-serif;
  color: #029CFF;
  padding: 60px 40px 0;
  box-sizing: border-box;
  margin-top: 0px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-left img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0 20px;
}

/* ===== Contacto (teléfono y mail) ===== */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
  height: 32px;
}

.footer-contact img {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.footer-contact span {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  transform: translateY(-2px);
}

/* ===== Enlace de correo ===== */
.mail-contacto {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #029CFF;            
  font-weight: bold;
  font-size: 18px;
  height: 32px;
  transition: font-size 0.2s ease;  
}

.mail-contacto img {
  width: 28px;
  height: 28px;
  display: block;
}

.mail-contacto span {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  transform: translateY(-2px);
}


.mail-contacto:hover {
  font-size: 20px;           
  color: #029CFF;            
  text-decoration: none;    
}


.footer-right {
  flex: 1 1 300px;
  text-align: center;
}

.footer-right h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* ===== Franja inferior ===== */
.footer-bottom {
  background-color: #029CFF;
  color: white;
  text-align: center;
  padding: 14px;
  font-size: 14px;
  margin-top: 40px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
  }

  .footer-contact {
    justify-content: center;
  }
}

/* Utilidad tipográfica */
.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
