* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
  color: #0b1b34;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.contenedor {
  width: min(1180px, 90%);
  margin: 0 auto;
}

/* CABECERA */

.cabecera {
  background: #071b3a;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.cabecera__contenido {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.logo__icono {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__icono img {
  width: 90%;
  height: 90%;
  
  border-radius: 20px;
}

.logo__texto {
  line-height: 1.05;
  text-transform: uppercase;
}

.logo__texto span {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.88;
}

.logo__texto strong {
  display: block;
  font-size: 24px;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 14px;
  font-weight: 700;
}

.menu a {
  color: #ffffff;
  padding: 30px 0 24px;
  border-bottom: 4px solid transparent;
  transition: 0.2s ease;
}

.menu a:hover,
.menu a.activo {
  color: #7ed321;
  border-bottom-color: #7ed321;
}

.menu__reserva {
  background: #7ed321;
  color: #071b3a !important;
  padding: 12px 18px !important;
  border-radius: 8px;
  border-bottom: none !important;
  text-transform: uppercase;
}

.menu__reserva:hover {
  background: #6fbe1c;
}

.menu-movil {
  display: none;
  border: none;
  background: #7ed321;
  color: #071b3a;
  font-size: 28px;
  width: 48px;
  height: 45px;
  border-radius: 8px;
  cursor: pointer;
}

/* PORTADA */

.portada {
  min-height: 610px;
  background-image: url("../img/fondo.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.portada__capa {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 40, 0.94) 0%, rgba(4, 17, 40, 0.75) 42%, rgba(4, 17, 40, 0.20) 100%);
}

.portada::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -135px;
  width: 560px;
  height: 390px;
  background: #7ed321;
  opacity: 0.86;
  transform: rotate(-18deg);
  border-radius: 40px;
}

.portada__contenido {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 780px;
}

.portada__etiqueta {
  display: inline-block;
  color: #7ed321;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.portada h1 {
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.93;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 26px;
}

.portada h1 span {
  display: block;
  color: #7ed321;
}

.portada__texto {
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 700;
  max-width: 640px;
  padding-left: 20px;
  border-left: 7px solid #7ed321;
  margin-bottom: 36px;
}

.portada__botones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 28px;
  border-radius: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.2s ease;
}

.boton--verde {
  background: #7ed321;
  color: #071b3a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.boton--verde:hover {
  background: #6fbe1c;
  transform: translateY(-2px);
}

.boton--transparente {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
}

.boton--transparente:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ACTIVIDADES */

.actividades {
  padding: 48px 0 26px;
}

.titulo-seccion {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  font-weight: 900;
  color: #071b3a;
  margin-bottom: 34px;
}

.titulo-seccion::before,
.titulo-seccion::after {
  content: "////";
  color: #7ed321;
  margin: 0 14px;
}

.titulo-seccion span {
  color: #7ed321;
}

.tarjetas {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.tarjeta {
  min-height: 185px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #071b3a;
  box-shadow: 0 10px 26px rgba(7, 27, 58, 0.22);
  cursor: pointer;
  transition: 0.2s ease;
}

.tarjeta:hover {
  transform: translateY(-6px);
}

.tarjeta img {
  width: 100%;
  height: 100%;
  min-height: 185px;
  object-fit: cover;
  filter: saturate(1.08);
}

.tarjeta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 58, 0.05), rgba(7, 27, 58, 0.92));
}

.tarjeta__contenido {
  position: absolute;
  z-index: 3;
  inset: auto 0 0 0;
  padding: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tarjeta__icono {
  width: 47px;
  height: 47px;
  background: #7ed321;
  color: #071b3a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
  flex-shrink: 0;
}

.tarjeta h3 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 900;
}

/* INFORMACION RAPIDA */

.info-rapida {
  padding: 26px 0 52px;
}

.info-rapida__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.15);
}

.info {
  padding: 28px 24px;
  display: flex;
  gap: 17px;
  align-items: center;
  border-right: 1px solid #dde5ef;
}

.info:last-child {
  border-right: none;
}

.info__icono {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 5px solid #7ed321;
  color: #7ed321;
  display: grid;
  place-items: center;
  font-size: 28px;
  flex-shrink: 0;
}

.info h3 {
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: #071b3a;
}

.info p {
  font-size: 15px;
  line-height: 1.35;
  color: #33425d;
}

/* PIE */

.pie {
  background: #071b3a;
  color: #ffffff;
  border-top: 5px solid #7ed321;
  padding: 24px 0;
}

.pie__contenido {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.pie strong {
  color: #7ed321;
}

.pie__enlaces {
  display: flex;
  gap: 18px;
}

.pie__enlaces a {
  color: #ffffff;
  font-weight: 700;
}

.pie__enlaces a:hover {
  color: #7ed321;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .cabecera__contenido {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 20px;
  }

  .menu a {
    padding: 8px 0;
  }

  .tarjetas {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-rapida__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info:nth-child(2) {
    border-right: none;
  }

  .info:nth-child(1),
  .info:nth-child(2) {
    border-bottom: 1px solid #dde5ef;
  }
}

@media (max-width: 760px) {
  .cabecera__contenido {
    min-height: auto;
  }

  .menu-movil {
    display: block;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #061631;
    border-radius: 12px;
    overflow: hidden;
  }

  .menu.abierto {
    display: flex;
  }

  .menu a {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu__reserva {
    border-radius: 0;
  }

  .portada {
    min-height: 570px;
  }

  .portada__contenido {
    padding: 58px 0;
  }

  .portada::after {
    width: 360px;
    height: 250px;
    right: -160px;
    bottom: -95px;
  }

  .portada__texto {
    font-size: 21px;
  }

  .boton {
    width: 100%;
  }

  .titulo-seccion::before,
  .titulo-seccion::after {
    display: none;
  }

  .tarjetas {
    grid-template-columns: 1fr;
  }

  .tarjeta,
  .tarjeta img {
    min-height: 210px;
  }

  .info-rapida__grid {
    grid-template-columns: 1fr;
  }

  .info {
    border-right: none;
    border-bottom: 1px solid #dde5ef;
  }

  .info:last-child {
    border-bottom: none;
  }

  .pie__contenido {
    flex-direction: column;
    text-align: center;
  }

  .pie__enlaces {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* PAGINA HISTORIA */

.cabecera-pagina {
  min-height: 360px;
  background-image: url("../img/historia.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
}

.cabecera-pagina__capa {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 17, 40, 0.95), rgba(4, 17, 40, 0.42));
}

.cabecera-pagina__contenido {
  position: relative;
  z-index: 2;
}

.cabecera-pagina__contenido p {
  color: #7ed321;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.cabecera-pagina__contenido h1 {
  font-size: clamp(44px, 7vw, 78px);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.95;
}

.historia {
  padding: 60px 0;
  background: #f4f7fb;
}

.historia__contenido {
  display: grid;
  gap: 44px;
}

.historia__intro,
.instalaciones {
  background: #ffffff;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.12);
}

.historia h2,
.instalaciones h2 {
  color: #071b3a;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}

.historia h2::before,
.instalaciones h2::before {
  content: "////";
  color: #7ed321;
  margin-right: 14px;
}

.historia p,
.instalaciones p,
.instalaciones li {
  font-size: 18px;
  line-height: 1.65;
  color: #253653;
}

.historia__galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.historia__galeria--cinco {
  grid-template-columns: repeat(5, 1fr);
}

.historia__galeria--dos {
  grid-template-columns: repeat(2, 1fr);
}

.historia__foto {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7, 27, 58, 0.15);
}

.historia__foto img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.historia__galeria--cinco .historia__foto img {
  height: 190px;
}

.historia__foto h3 {
  padding: 18px 18px 6px;
  font-size: 21px;
  color: #071b3a;
  text-transform: uppercase;
  font-weight: 900;
}

.historia__foto p {
  padding: 0 18px 20px;
  font-size: 16px;
  line-height: 1.45;
}

.historia__bloque {
  background: #071b3a;
  color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  box-shadow: 0 14px 36px rgba(7, 27, 58, 0.20);
}

.historia__bloque > div {
  padding: clamp(30px, 4vw, 52px);
}

.historia__bloque h2 {
  color: #ffffff;
}

.historia__bloque p {
  color: #ffffff;
}

.historia__bloque img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.instalaciones ul {
  margin-top: 18px;
  padding-left: 24px;
}

.instalaciones li {
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .historia__galeria,
  .historia__galeria--cinco,
  .historia__galeria--dos {
    grid-template-columns: repeat(2, 1fr);
  }

  .historia__bloque {
    grid-template-columns: 1fr;
  }

  .historia__bloque img {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .cabecera-pagina {
    min-height: 280px;
  }

  .historia {
    padding: 38px 0;
  }

  .historia__galeria,
  .historia__galeria--cinco,
  .historia__galeria--dos {
    grid-template-columns: 1fr;
  }

  .historia__foto img,
  .historia__galeria--cinco .historia__foto img {
    height: 240px;
  }
}


/* PAGINA NORMATIVA */

.cabecera-pagina--normativa {
  background-image: url("../img/portada.jpg");
}

.normativa {
  padding: 58px 0;
  background: #f4f7fb;
}

.normativa__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: start;
}

.normativa__panel {
  background: #071b3a;
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  position: sticky;
  top: 110px;
  box-shadow: 0 14px 36px rgba(7, 27, 58, 0.20);
}

.normativa__panel h2 {
  color: #7ed321;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.normativa__panel p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.normativa__panel .boton {
  width: 100%;
  margin-top: 12px;
  text-align: center;
}

.boton--azul {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.70);
}

.boton--azul:hover {
  background: rgba(255, 255, 255, 0.12);
}

.normativa__documento {
  background: #ffffff;
  border-radius: 22px;
  padding: clamp(28px, 4vw, 50px);
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.12);
}

.normativa__documento h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: #071b3a;
  text-transform: uppercase;
  font-weight: 900;
  margin: 34px 0 18px;
  padding-top: 22px;
  border-top: 3px solid #e1e8f1;
}

.normativa__documento h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.normativa__documento h2::before {
  content: "////";
  color: #7ed321;
  margin-right: 12px;
}

.normativa__documento h3 {
  font-size: 20px;
  color: #071b3a;
  font-weight: 900;
  margin: 24px 0 10px;
}

.normativa__documento p {
  font-size: 17px;
  line-height: 1.68;
  color: #253653;
  margin-bottom: 12px;
}

@media (max-width: 1000px) {
  .normativa__layout {
    grid-template-columns: 1fr;
  }

  .normativa__panel {
    position: static;
  }
}


.info a {
  color: #071b3a;
  font-weight: 800;
}

.info a:hover {
  color: #7ed321;
}


/* PAGINA CONTACTO */

.cabecera-pagina--contacto {
  background-image: url("../img/fondo.jpg");
}

.contacto-pagina {
  padding: 60px 0;
  background: #f4f7fb;
}

.contacto-pagina__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 28px;
  align-items: stretch;
}

.contacto-card,
.mapa-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.14);
  overflow: hidden;
}

.contacto-card {
  padding: clamp(28px, 4vw, 44px);
}

.contacto-card h2 {
  color: #071b3a;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 28px;
}

.contacto-card h2::before {
  content: "////";
  color: #7ed321;
  margin-right: 12px;
}

.contacto-dato {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #dde5ef;
}

.contacto-dato__icono {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid #7ed321;
  color: #7ed321;
  display: grid;
  place-items: center;
  font-size: 25px;
  flex-shrink: 0;
}

.contacto-dato h3 {
  color: #071b3a;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contacto-dato p,
.contacto-dato a {
  color: #253653;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.contacto-dato a:hover {
  color: #7ed321;
}

.contacto-boton {
  margin-top: 28px;
  width: 100%;
}

.mapa-card {
  min-height: 520px;
}

.info--enlace {
  transition: 0.2s ease;
}

.info--enlace:hover {
  background: #f7fbf2;
}

.info--enlace:hover h3,
.info--enlace:hover p,
.info--enlace:hover a {
  color: #7ed321;
}

@media (max-width: 980px) {
  .contacto-pagina__grid {
    grid-template-columns: 1fr;
  }

  .mapa-card {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .contacto-pagina {
    padding: 38px 0;
  }

  .contacto-dato {
    flex-direction: column;
  }

  .mapa-card {
    min-height: 360px;
  }
}


/* PAGINAS DEPORTIVAS */

.cabecera-pagina--deporte {
  background-size: cover;
  background-position: center;
}

.deporte-pagina {
  padding: 60px 0;
  background: #f4f7fb;
}

.deporte-pagina__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.deporte-contenido,
.deporte-panel,
.deporte-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.13);
}

.deporte-contenido {
  padding: clamp(30px, 4vw, 52px);
}

.deporte-etiqueta {
  display: inline-block;
  color: #7ed321;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.deporte-contenido h2,
.deporte-panel h2,
.deporte-card h2 {
  color: #071b3a;
  font-size: clamp(26px, 4vw, 40px);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}

.deporte-contenido h2::before,
.deporte-panel h2::before,
.deporte-card h2::before {
  content: "////";
  color: #7ed321;
  margin-right: 12px;
}

.deporte-contenido p,
.deporte-card p,
.deporte-card li {
  font-size: 18px;
  line-height: 1.65;
  color: #253653;
}

.deporte-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.boton--azul-claro {
  background: #071b3a;
  color: #ffffff;
}

.boton--azul-claro:hover {
  background: #0d2c5e;
  transform: translateY(-2px);
}

.deporte-panel {
  padding: 30px;
}

.deporte-dato {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #dde5ef;
}

.deporte-dato:last-child {
  border-bottom: none;
}

.deporte-dato span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 5px solid #7ed321;
  color: #7ed321;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.deporte-dato h3 {
  color: #071b3a;
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 6px;
}

.deporte-dato p {
  color: #253653;
  font-size: 16px;
  line-height: 1.45;
}

.deporte-detalles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.deporte-card {
  padding: clamp(28px, 4vw, 42px);
}

.deporte-card ul {
  padding-left: 22px;
}

.deporte-card li {
  margin-bottom: 10px;
}

.deporte-card--azul {
  background: #071b3a;
  color: #ffffff;
}

.deporte-card--azul h2,
.deporte-card--azul p {
  color: #ffffff;
}

.deporte-card--azul .boton {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .deporte-pagina__grid,
  .deporte-detalles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .deporte-pagina {
    padding: 38px 0;
  }

  .deporte-botones .boton {
    width: 100%;
  }
}


/* PAGINA BAR - VERSION TARJETAS */

.bar-hero {
  min-height: 460px;
  background-image: url("../img/bar.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
}

.bar-hero__capa {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 40, 0.96) 0%, rgba(4, 17, 40, 0.74) 45%, rgba(4, 17, 40, 0.24) 100%);
}

.bar-hero__contenido {
  position: relative;
  z-index: 2;
  padding: 70px 0;
  max-width: 760px;
}

.bar-hero__contenido p {
  color: #7ed321;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.bar-hero__contenido h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}

.bar-hero__contenido span {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  border-left: 7px solid #7ed321;
  padding-left: 18px;
}

.bar-nuevo {
  padding: 56px 0 64px;
  background: #f4f7fb;
}

.bar-presentacion {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.13);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.bar-presentacion__etiqueta {
  color: #7ed321;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.bar-presentacion h2 {
  color: #071b3a;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 16px;
}

.bar-presentacion h2::before {
  content: "////";
  color: #7ed321;
  margin-right: 12px;
}

.bar-presentacion p {
  font-size: 18px;
  line-height: 1.65;
  color: #253653;
}

.bar-presentacion__botones {
  display: grid;
  gap: 14px;
  min-width: 250px;
}

.bar-mosaico {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

.bar-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #071b3a;
  background-size: cover;
  background-position: center;
  min-height: 180px;
  box-shadow: 0 14px 34px rgba(7, 27, 58, 0.20);
  transition: 0.25s ease;
}

.bar-card:hover {
  transform: translateY(-5px);
}

.bar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 58, 0.02), rgba(7, 27, 58, 0.90));
}

.bar-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
}

.bar-card small {
  display: inline-block;
  color: #7ed321;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.bar-card h3 {
  color: #ffffff;
  font-size: clamp(22px, 3vw, 34px);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}

.bar-card--grande {
  grid-column: span 2;
  grid-row: span 2;
}

.bar-card--alta {
  grid-row: span 2;
}

.bar-card--ancha {
  grid-column: span 2;
}

@media (max-width: 1050px) {
  .bar-presentacion {
    grid-template-columns: 1fr;
  }

  .bar-presentacion__botones {
    display: flex;
    flex-wrap: wrap;
  }

  .bar-mosaico {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }
}

@media (max-width: 650px) {
  .bar-hero {
    min-height: 390px;
  }

  .bar-nuevo {
    padding: 38px 0;
  }

  .bar-presentacion__botones {
    display: grid;
  }

  .bar-presentacion__botones .boton {
    width: 100%;
  }

  .bar-mosaico {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .bar-card--grande,
  .bar-card--alta,
  .bar-card--ancha {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ENLACES DE INTERES */

.enlaces-interes {
  margin-top: 34px;
  background: #ffffff;
  border-radius: 22px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 12px 34px rgba(7, 27, 58, 0.13);
}

.enlaces-interes h2 {
  color: #071b3a;
  font-size: clamp(26px, 4vw, 40px);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 24px;
}

.enlaces-interes h2::before {
  content: "////";
  color: #7ed321;
  margin-right: 12px;
}

.enlaces-interes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.enlace-interes {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4f7fb;
  border: 1px solid #dde5ef;
  border-radius: 16px;
  padding: 18px;
  min-height: 92px;
  transition: 0.2s ease;
}

.enlace-interes:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #7ed321;
  box-shadow: 0 10px 24px rgba(7, 27, 58, 0.12);
}

.enlace-interes img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
  flex-shrink: 0;
}

.enlace-interes span {
  color: #071b3a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .enlaces-interes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .enlaces-interes__grid {
    grid-template-columns: 1fr;
  }
}
