/* =========================================================
   HISPASEEDS Â· FOOTER.CSS
   =========================================================
   Archivo exclusivo del footer global.
   Se carga en toda la web excepto checkout.

   ÃNDICE
   ---------------------------------------------------------
   01. Contenedor general
   02. Panel principal
   03. Cabecera del footer
   04. NavegaciÃ³n y enlaces
   05. Disclaimers
   06. LÃ­nea inferior
   07. Responsive tablet grande
   08. Responsive tablet
   09. Responsive mÃ³vil
   10. Responsive mÃ³vil pequeÃ±o
   ========================================================= */


/* =========================================================
   01. CONTENEDOR GENERAL
   ---------------------------------------------------------
   Espaciado exterior y caja global del footer.
   ========================================================= */
.hs-footer {
  padding: 12px 0 56px;
  background: transparent;
}

.hs-footer * {
  box-sizing: border-box;
}

.hs-footer .hs-wrap {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}


/* =========================================================
   02. PANEL PRINCIPAL
   ---------------------------------------------------------
   Fondo, borde, radio y sombra del bloque principal.
   ========================================================= */
.hs-footer__panel {
  position: relative;
  overflow: hidden;
  padding: 38px 38px 22px;
  border: 1px solid rgba(230, 184, 92, 0.14);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.96) 0%,
    rgba(7, 7, 7, 0.98) 100%
  );
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.hs-footer__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(230, 184, 92, 0) 0%,
    rgba(230, 184, 92, 0.38) 50%,
    rgba(230, 184, 92, 0) 100%
  );
}


/* =========================================================
   03. CABECERA DEL FOOTER
   ---------------------------------------------------------
   Estructura de columnas y bloque de marca.
   ========================================================= */
.hs-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) 0.9fr 0.9fr 0.9fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 26px;
}

.hs-footer__brand {
  max-width: 460px;
}

.hs-footer__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #e4bf72;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hs-footer__brand h3 {
  margin: 0 0 12px;
  color: #f3ede3;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.14;
  font-weight: 600;
  font-family: "Cinzel", Georgia, "Times New Roman", serif;
}

.hs-footer__brand p {
  margin: 0;
  color: rgba(221, 213, 202, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

.hs-footer__col h4 {
  margin: 0 0 14px;
  color: #f3ede3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}


/* =========================================================
   04. NAVEGACIÃ“N Y ENLACES
   ---------------------------------------------------------
   Enlaces de columnas del footer.
   ========================================================= */
.hs-footer__nav,
.hs-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hs-footer__nav a,
.hs-footer__legal a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: rgba(221, 213, 202, 0.82);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.hs-footer__nav a::after,
.hs-footer__legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #e4bf72;
  transition: width 0.25s ease;
}

.hs-footer__nav a:hover,
.hs-footer__legal a:hover {
  color: #f3ede3;
}

.hs-footer__nav a:hover::after,
.hs-footer__legal a:hover::after {
  width: 100%;
}


/* =========================================================
   05. DISCLAIMERS
   ---------------------------------------------------------
   Bloque legal serio: edad, legalidad y uso del catÃ¡logo.
   ========================================================= */
.hs-footer__disclaimers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 0 20px;
  border-top: 1px solid rgba(230, 184, 92, 0.10);
  border-bottom: 1px solid rgba(230, 184, 92, 0.10);
}

.hs-footer__disclaimer {
  padding-right: 10px;
}

.hs-footer__disclaimer h5 {
  margin: 0 0 8px;
  color: #f3ede3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hs-footer__disclaimer p {
  margin: 0;
  color: rgba(214, 205, 192, 0.72);
  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   06. LÃNEA INFERIOR
   ---------------------------------------------------------
   Cierre institucional del footer.
   ========================================================= */
.hs-footer__bottom {
  padding-top: 16px;
}

.hs-footer__copy {
  margin: 0;
  color: rgba(214, 205, 192, 0.62);
  font-size: 12.5px;
  line-height: 1.65;
}


/* =========================================================
   07. RESPONSIVE TABLET GRANDE
   ---------------------------------------------------------
   Reordena columnas y deja disclaimers en una sola columna.
   ========================================================= */
@media (max-width: 1100px) {
  .hs-footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
  }

  .hs-footer__brand {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .hs-footer__disclaimers {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hs-footer__disclaimer {
    padding-right: 0;
  }
}


/* =========================================================
   08. RESPONSIVE TABLET
   ---------------------------------------------------------
   Ajustes para tablet estÃ¡ndar.
   ========================================================= */
@media (max-width: 921px) {
  .hs-footer {
    padding-bottom: 40px;
  }

  .hs-footer .hs-wrap {
    width: min(1240px, calc(100% - 34px));
  }

  .hs-footer__panel {
    padding: 30px 26px 20px;
  }

  .hs-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding-bottom: 24px;
  }

  .hs-footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .hs-footer__brand h3 {
    font-size: 25px;
  }

  .hs-footer__brand p {
    max-width: 100%;
  }

  .hs-footer__disclaimers {
    padding: 20px 0 18px;
  }
}


/* =========================================================
   09. RESPONSIVE MÃ“VIL
   ---------------------------------------------------------
   Una sola columna y jerarquÃ­a compacta.
   ========================================================= */
@media (max-width: 767px) {
  .hs-footer {
    padding: 0 0 28px;
  }

  .hs-footer .hs-wrap {
    width: calc(100% - 24px);
  }

  .hs-footer__panel {
    padding: 24px 20px 16px;
    border-radius: 18px;
  }

  .hs-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 22px;
  }

  .hs-footer__brand {
    max-width: 100%;
  }

  .hs-footer__brand h3 {
    font-size: 22px;
    line-height: 1.16;
  }

  .hs-footer__brand p {
    font-size: 14px;
    line-height: 1.7;
  }

  .hs-footer__col h4 {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hs-footer__nav,
  .hs-footer__legal {
    gap: 10px;
  }

  .hs-footer__nav a,
  .hs-footer__legal a {
    font-size: 15px;
  }

  .hs-footer__disclaimers {
    gap: 14px;
    padding: 18px 0 16px;
  }

  .hs-footer__disclaimer h5 {
    margin-bottom: 6px;
    font-size: 11.5px;
  }

  .hs-footer__disclaimer p {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .hs-footer__copy {
    font-size: 12px;
  }
}


/* =========================================================
   10. RESPONSIVE MÃ“VIL PEQUEÃ‘O
   ---------------------------------------------------------
   CompactaciÃ³n final para pantallas pequeÃ±as.
   ========================================================= */
@media (max-width: 480px) {
  .hs-footer__panel {
    padding: 22px 16px 15px;
  }

  .hs-footer__brand h3 {
    font-size: 20px;
  }

  .hs-footer__brand p {
    font-size: 13.5px;
  }

  .hs-footer__nav a,
  .hs-footer__legal a {
    font-size: 14.5px;
  }

  .hs-footer__disclaimer p,
  .hs-footer__copy {
    font-size: 12.25px;
  }
}