/* footer.css */

.linea-coloristica-pie {
  height: 8px;
  width: 100%;
  background: linear-gradient(to right,
    #929292,        /* gris bajo */
    #0E8CDE,        /* azul cielo */
    #602b69,        /* púrpura */
    #ffb07c,        /* melón */
    #FF6552,        /* zapote */
    #a04f1b         /* café */
  );
}


.footer-coloristica {
  background-color: #ebe7dc;
  font-family: 'Inter', sans-serif;
  color: #111;
  padding: 3rem 2rem;
}

.footer-contenedor-arena-oscuro {
  background-color: #c7c2b4;
  border-radius: 24px;
  padding: 2rem;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}



.footer-col.contacto {
  flex: 2;
}

.footer-col.mapa,
.footer-col.redes {
  flex: 1;
}


.contacto:hover .hablemos,
.contacto:hover .correo-footer {
  transform: translateY(14px);
  transition: transform 0.3s ease;
}

.hablemos {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 0rem;
  font-family: Inter;
}

.correo-footer {
  font-weight: 200;
  font-size: 2.5rem;
  color: #000000;
  font-family: Inter;
  padding-left: 0;
  margin-left: 0;
  text-decoration: none;
  display: block;
}

.mapa-sitio {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mapa-sitio li {
  margin: 0.4rem 0;
}

.mapa-sitio a:hover {
  color: #602b69; /* Púrpura corporativo para unificar la marca */
  padding-left: 5px; /* Un pequeño desplazamiento a la derecha */
  transition: all 0.3s ease; /* Hacemos la transición suave */
}

.mapa-sitio a {
  text-decoration: none;
  color: #111;
  font-weight: 400;
}

.footer-col.redes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.footer-col.redes a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border: 1px solid #111;
  border-radius: 12px;
  font-size: 2.5rem;
  transition: transform 0.3s;
  color: #111;
  text-decoration: none;
}

.footer-col.redes a:hover {
  transform: translateY(-3px);
  background: #f1f1f1;
}

.footer-inferior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid #bbb;
}

.footer-inferior-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid #bbb;
}

.sublogos-footer {
  display: flex;
  gap: 2rem;
}

.sublogos-footer img {
  height: 40px;
  opacity: 0.9;
}

.derechos-footer {
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-logo {
  text-align: center;
  width: 100%;
  margin-top: 10rem;
  margin-bottom: 0px;
}

.logo-dual {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 1; /* o ajusta según el diseño */
  overflow: hidden;
}

.logo-dual img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo-dual .logo-static {
  opacity: 1;
  z-index: 1;
}

.logo-dual .logo-color {
  opacity: 0;
  z-index: 2;
}

.logo-dual:hover .logo-static {
  opacity: 0;
}

.logo-dual:hover .logo-color {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-dual {
    aspect-ratio: 4 / 1;
    padding-bottom: 0px;
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col.mapa h4 {
    font-weight: 700;
  }

  
  .hablemos {
    font-size: 1.2rem;
    font-weight: 800;
  }

  .correo-footer {
    font-size: 1.2rem;
  }

  .footer-inferior {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sublogos-footer {
    flex-wrap: wrap;
    display: flex;
  justify-content: center;
  align-items: center;
  }

  .sublogos-footer img {
    height: 36px;
  }

  .derechos-footer {
    font-size: 0.85rem;
    text-align: center;
  }

  .footer-logo {
    margin-top: 4rem;
  }
}



