/*
  Project:       STATT
  Date:          03/07/2025
  Author:        Josu Eguren
  Version:       3.0
  Description:   Custom styles for the STATT website
*/

/* ==========================================================================
   HOME LOGO ANIMATION
   ========================================================================== */

/* Logo giratorio en la home */
.logo-home {
  animation: spin 10s linear infinite;
}

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

/* Contenedor del span animado */
.span-home {
  display: inline-block;
  overflow: visible;      /* Evita recortes */
  padding: 10px;          /* Espacio interno */
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer-main-logo {
  max-height: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  margin-top: 1rem;
}

/* Hasta 767.98px (móviles y tablets en vertical) */
@media (max-width: 767.98px) {
  .footer-main-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

/* Versión móvil vertical (hasta 575.98px) */
@media (max-width: 575.98px) {
  .footer-logo-img {
    max-width: 85% !important; /* Control del ancho (80-90%) */
    width: auto !important;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block; /* Para mejor centrado */
    margin-top: 0.5rem; /* Reducción del espacio superior */
  }
  
    .footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem; /* ajusta el espacio entre iconos si es necesario */
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .footer-social-icons i {
    font-size: 2.25rem !important; /* o 36px */
  }
}