body {
  margin: 0;
  padding: 30px 18px 24px;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  color: #244253;
}

* {
  box-sizing: border-box;
}

.fondo-inicio {
  background-color: #eaf6ff;
  background-image: radial-gradient(circle at top left, #dff7ef 0%, transparent 28%), radial-gradient(circle at top right, #fff3cf 0%, transparent 24%);
}
.fondo-amarillo { background-color: #fff6df; }
.fondo-verde { background-color: #eafaf0; }
.fondo-lila { background-color: #eef2ff; }
.fondo-naranja { background-color: #fff4e8; }
.fondo-menta { background-color: #eefbf3; }
.fondo-celeste { background-color: #eef4ff; }
.fondo-correcto { background-color: #ecfff5; }
.fondo-incorrecto { background-color: #fff1ed; }
.fondo-final { background-color: #eefbff; }

.contenedor {
  max-width: 900px;
  margin: 0 auto;
}

.tarjeta {
  background-color: #ffffff;
  margin: 20px auto;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(33, 79, 120, 0.15);
}

h1 {
  margin-top: 0;
  font-size: 40px;
  color: #1273c4;
}

h2 {
  font-size: 24px;
  color: #ff8a00;
}

p {
  font-size: 19px;
  line-height: 1.6;
}

.camino {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  background-color: #e4f1ff;
  border-radius: 999px;
  font-weight: 700;
  color: #24589a;
}

.imagen-principal {
  width: 100%;
  max-width: 380px;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  filter: saturate(1.05);
}

.imagen-nivel {
  width: 100%;
  max-width: 320px;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.boton {
  display: inline-block;
  margin-top: 16px;
  margin-right: 6px;
  margin-left: 6px;
  padding: 14px 28px;
  background-color: #ffd54a;
  color: #17324d;
  text-decoration: none;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255, 174, 0, 0.30);
}

.boton-verde { background-color: #16a45d; color: #ffffff; }
.boton-azul { background-color: #1f78d1; color: #ffffff; }
.boton-lila { background-color: #4767d8; color: #ffffff; }
.boton-naranja { background-color: #f0932b; color: #ffffff; }
.boton-rosa { background-color: #d85b72; color: #ffffff; }
.boton-instagram { background-color: #d94f8a; color: #ffffff; }
.boton-linkedin { background-color: #1565c0; color: #ffffff; }

.opcion {
  display: block;
  max-width: 560px;
  margin: 16px auto;
  padding: 16px;
  background-color: #f4fbff;
  border-radius: 18px;
  text-decoration: none;
  color: #24589a;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(30, 95, 149, 0.12);
}

.etiqueta {
  display: inline-block;
  margin: 4px;
  padding: 8px 14px;
  background-color: #dff5e8;
  border-radius: 999px;
  color: #128049;
  font-weight: 700;
}

.tabla-info {
  width: 100%;
  margin-top: 25px;
  border-collapse: collapse;
}

.tabla-info td {
  padding: 14px;
  border-radius: 14px;
  background-color: #f4fbff;
  border: 6px solid #ffffff;
  font-size: 18px;
}

.pista {
  max-width: 620px;
  margin: 20px auto;
  padding: 14px;
  background-color: #f4f6ff;
  border-radius: 18px;
}

.puntos {
  display: inline-block;
  padding: 10px 18px;
  background-color: #dff3ff;
  border-radius: 999px;
  color: #13689d;
  font-weight: 800;
}

.volver {
  display: inline-block;
  margin-top: 12px;
  color: #1f78d1;
  text-decoration: none;
  font-weight: 700;
}

.destacado {
  color: #10a85b;
  font-weight: 800;
}

.barra {
  background-color: #ffffff;
  width: min(100%, 760px);
  margin: 36px auto 28px;
  padding: 22px 28px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(33, 79, 120, 0.12);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  text-align: center;
}

.menu a {
  display: inline-block;
  margin: 0;
  color: #4e6f92;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
}

.menu a:hover {
  color: #1273c4;
}

.menu .acceso-principal {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 20;
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 2px solid rgba(36, 66, 83, 0.12);
  border-radius: 20px;
  background-color: #ffffff;
  color: #17324d;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(33, 79, 120, 0.14);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.menu .acceso-principal:hover {
  background-color: #1273c4;
  color: #ffffff;
  transform: translateX(-2px);
}

.subtitulo-suave {
  margin-top: -8px;
  color: #6d7f91;
  font-size: 18px;
  font-weight: 700;
}

.foto-perfil {
  width: 100%;
  max-width: 300px;
  height: 360px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.foto-inicio {
  max-width: 340px;
  height: 400px;
}

.caja-texto {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 20px;
  background-color: #f7fbff;
  border-radius: 20px;
}

.mini-titulo {
  color: #1273c4;
  font-size: 28px;
  margin-bottom: 10px;
}

.imagen-ancha {
  width: 100%;
  max-width: 760px;
  height: 280px;
  object-fit: cover;
  object-position: center center;
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  margin-top: 18px;
}

.media-ancha {
  width: 100%;
  max-width: 760px;
  height: 340px;
  object-fit: contain;
  object-position: center center;
  background-color: #f5f7fa;
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  margin-top: 18px;
}

.cabecera-logo {
  width: 100%;
  max-width: 760px;
  height: 190px;
  margin: 18px auto 0;
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  background-color: #062f18;
  background-image: url("logo-valmore-fondo.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

.galeria-simple {
  margin-top: 24px;
}

.galeria-simple img {
  width: 100%;
  max-width: 250px;
  height: 340px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  margin: 10px;
  background-color: #f5f7fa;
}

.galeria-simple video {
  width: 100%;
  max-width: 250px;
  height: 340px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  margin: 10px;
  background-color: #f5f7fa;
}

.frase-destacada {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 18px 20px;
  background-color: #fff8eb;
  border-radius: 20px;
  color: #8a5a14;
  font-size: 24px;
  font-weight: 800;
}

.texto-marca {
  max-width: 760px;
  margin: 18px auto 0;
}

.imagen-zoom {
  object-position: center top;
}

.imagen-botella {
  object-position: center center;
}

.imagen-vinedo-completa {
  object-position: center center;
}

.dato-curioso {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 22px;
  background-color: #fffaf2;
  border-radius: 22px;
}

.dato-curioso h2 {
  margin-top: 0;
}

.tabla-presentacion {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.tabla-presentacion td {
  vertical-align: middle;
  padding: 14px;
  width: 50%;
}

.foto-botella-grande {
  width: 100%;
  max-width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.texto-lado {
  text-align: left;
}

.red-icono {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.18);
  font-size: 16px;
  font-weight: 800;
}

.rotulo-simple {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  background-color: #edf8ff;
  color: #1273c4;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(18, 115, 196, 0.10);
}

.player-card {
  max-width: 360px;
  margin: 0 auto;
  padding: 22px;
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(33, 79, 120, 0.16);
}

.cover-musica {
  width: 100%;
  max-width: 290px;
  height: 290px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.titulo-track {
  margin: 18px 0 8px;
  color: #244253;
  font-size: 22px;
  font-weight: 800;
}

.detalle-track {
  margin: 0 0 16px;
  color: #6d7f91;
  font-size: 16px;
  font-weight: 700;
}

.controles-player {
  margin-top: 18px;
}

.controles-player button {
  display: inline-block;
  margin: 6px;
  padding: 12px 16px;
  border: none;
  border-radius: 999px;
  background-color: #edf8ff;
  color: #1273c4;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 6px 14px rgba(18, 115, 196, 0.12);
  cursor: pointer;
}

.barra-tiempo {
  width: 100%;
  margin-top: 16px;
}

.texto-player {
  margin-top: 12px;
  color: #4e6f92;
  font-size: 16px;
  font-weight: 700;
}

.boton-circular {
  width: 68px;
  height: 68px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background-color: #1273c4;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(18, 115, 196, 0.22);
  cursor: pointer;
}

.video-resultado {
  width: 100%;
  max-width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  margin: 12px auto 18px;
  display: block;
}

.footer-identikit {
  width: min(100%, 760px);
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18, 115, 196, 0.10), rgba(16, 168, 91, 0.10)),
    #ffffff;
  box-shadow: 0 12px 28px rgba(33, 79, 120, 0.12);
  text-align: left;
}

.footer-identikit-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  background-color: #1273c4;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(18, 115, 196, 0.24);
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
  color: #244253;
  font-size: 18px;
  font-weight: 800;
}

.footer-brand p {
  margin: 0;
  color: #5f7283;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #f4fbff;
  color: #24589a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  background-color: #1273c4;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-identikit-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 26px;
  border-top: 1px solid rgba(36, 66, 83, 0.10);
  background-color: rgba(255, 255, 255, 0.56);
  color: #6d7f91;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  body {
    padding: 18px 12px 20px;
  }

  .barra {
    margin-top: 86px;
    padding: 18px 16px;
  }

  .menu {
    gap: 8px 16px;
  }

  .menu a {
    font-size: 16px;
  }

  .menu .acceso-principal {
    top: 14px;
    left: 14px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 28px;
  }

  .tarjeta {
    padding: 22px 16px;
  }

  h1 {
    font-size: 34px;
  }

  p {
    font-size: 17px;
  }

  .foto-inicio {
    max-width: 300px;
    height: 360px;
  }

  .footer-identikit {
    border-radius: 20px;
  }

  .footer-identikit-top {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-identikit-bottom {
    flex-direction: column;
    align-items: center;
    padding: 14px 18px;
    text-align: center;
  }
}
