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

    /* ══════════════════════════════════════════════════════════════
       TOKENS DE MARCA
       Origen: versión anterior de esta misma landing. Los seis colores
       de acento corresponden a las etiquetas de cada cerveza; los
       neutros son la base oscura de la marca.
       PENDIENTE DE VALIDAR: si existe un manual de marca con hex
       oficiales, reemplazar estos valores. Es lo único que hay que
       tocar para reajustar toda la paleta.
       ══════════════════════════════════════════════════════════════ */
    :root {
      /* — Neutros (nombres canónicos: el contraste se audita sobre estos) — */
      --color-fondo:           #0a0a0a;
      --color-fondo-alt:       #111111;
      --color-superficie:      #1a1a1a;
      --color-texto:           #ffffff;  /* 20.4:1 sobre el fondo */
      --color-texto-suave:     #888888;  /*  5.6:1 sobre el fondo */
      --color-primario:        #ffffff;  /* botón principal */
      --color-sobre-primario:  #0a0a0a;  /* texto del botón principal */

      /* — Acentos por cerveza — */
      --avispada: #2EC4B6;
      --entonada: #F7C948;
      --parchada: #9B5DE5;
      --relajada: #F97316;
      --sinmente: #EC4899;
      --diabla:   #DC2626;

      /* — Alias que usa el resto de la hoja — */
      --bg:    var(--color-fondo);
      --bg2:   var(--color-fondo-alt);
      --bg3:   var(--color-superficie);
      --text:  var(--color-texto);
      --muted: var(--color-texto-suave);

      /* — Forma y ritmo — */
      --alto-header: 66px;
    }

    html { scroll-behavior: smooth; }

    /* El header es fijo: sin esto, cada ancla deja el título tapado debajo. */
    [id] { scroll-margin-top: calc(var(--alto-header) + 1rem); }

    /* Foco visible para navegación por teclado. */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--avispada);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* Movimiento reducido: se apagan animaciones y scroll suave. */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }
      .reveal { opacity: 1 !important; transform: none !important; }
      .hero-kicker, .hero-headline, .hero-sub, .hero-actions, .hero-micro { opacity: 1 !important; }
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Raleway', sans-serif;
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 100;
      padding: 1.1rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10,10,10,.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.05);
      transition: padding .3s;
    }

    .nav-logo img {
      height: 46px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color .2s;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--text) !important;
      color: var(--bg) !important;
      padding: .55rem 1.4rem !important;
      border-radius: 999px;
      font-weight: 800 !important;
    }

    .nav-cta:hover { opacity: .85; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all .3s;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 7rem 2rem 5rem;
      position: relative;
      overflow: hidden;
      z-index: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-bg-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 20%;
      opacity: 0;
      transition: opacity 1.8s ease;
    }

    .hero-bg-slide.active { opacity: 1; }

    /* Fotos del hero incrustadas: el archivo funciona sin carpetas ni internet. */
    .foto1 { background-image: url(../assets/images/857410321ee2.webp); }
    .foto2 { background-image: url(../assets/images/91c1b13c0cf3.webp); }
    .foto3 { background-image: url(../assets/images/c84b5a892d56.webp); }

    /* scrim oscuro sobre la foto para legibilidad + glow sutil */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(46,196,182,.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 20%, rgba(247,201,72,.05) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.72) 55%, var(--bg) 100%);
      pointer-events: none;
    }

    .lights-strip {
      position: absolute;
      top: 0;
      left: 0; right: 0;
      height: 70px;
      pointer-events: none;
      overflow: visible;
    }

    .bulb {
      position: absolute;
      top: 2px;
      width: 9px; height: 13px;
      border-radius: 3px 3px 50% 50%;
      animation: glow-bulb 2s ease-in-out infinite alternate;
    }

    @keyframes glow-bulb {
      from { opacity: .45; filter: brightness(.8); }
      to   { opacity: 1;   filter: brightness(1.5); }
    }

    .hero-kicker {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: fadeUp .8s .25s ease forwards;
    }

    .hero-headline {
      font-size: clamp(3rem, 9vw, 7.5rem);
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp .8s .35s ease forwards;
    }

    .hero-sub {
      max-width: 460px;
      font-size: 1rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.75;
      margin: 0 auto 2.5rem;
      opacity: 0;
      animation: fadeUp .8s .45s ease forwards;
    }

    .hero-sub strong { color: var(--text); font-weight: 700; }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .8s .55s ease forwards;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      color: var(--muted);
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      animation: scrollBounce 2.5s ease-in-out infinite;
    }

    @keyframes scrollBounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(7px); }
    }

    /* ─── BTN ─── */
    .btn {
      padding: .85rem 2.2rem;
      border-radius: 999px;
      font-family: 'Raleway', sans-serif;
      font-weight: 800;
      font-size: .78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: all .2s;
    }

    .btn-primary { background: var(--text); color: var(--bg); }
    .btn-primary:hover { opacity: .85; transform: translateY(-2px); }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1.5px solid rgba(255,255,255,.25);
    }
    .btn-outline:hover { border-color: var(--text); transform: translateY(-2px); }

    /* ─── SECTIONS ─── */
    section { padding: 6rem 2.5rem; }

    .container { max-width: 1200px; margin: 0 auto; }

    .label {
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .75rem;
    }

    .title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1.05;
      margin-bottom: 1rem;
    }

    .desc {
      color: var(--muted);
      font-size: .95rem;
      font-weight: 400;
      line-height: 1.75;
      max-width: 520px;
    }

    /* ─── CERVEZAS ─── */
    #cervezas { background: var(--bg2); }

    .cervezas-head { margin-bottom: 3.5rem; }

    .beers-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
    }

    .beer-card {
      --accent: #fff;
      background: var(--bg3);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.06);
      position: relative;
      overflow: hidden;
      transition: box-shadow .3s;
      will-change: transform;
      display: flex;
      flex-direction: column;
      flex: 1 1 340px;
      max-width: 400px;
    }

    .beer-card::after {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 200px; height: 200px;
      background: var(--accent);
      border-radius: 50%;
      opacity: .04;
      filter: blur(50px);
      pointer-events: none;
    }

    .beer-card:hover {
      box-shadow: 0 28px 64px -12px color-mix(in srgb, var(--accent) 35%, transparent);
    }

    /* visual section con etiqueta al hover */
    .beer-visual {
      position: relative;
      /* Sin alto fijo: lo define la etiqueta. El relleno es porcentual, así que
         el margen es idéntico en los cuatro lados y en cualquier ancho de tarjeta
         (en CSS el padding en % siempre se calcula sobre el ancho). Antes había
         180px fijos y la imagen se salía: el margen quedaba a merced del recorte. */
      padding: 5%;
      overflow: hidden;
      background: color-mix(in srgb, var(--accent) 9%, #0d0d0d);
      border-radius: 18px 18px 0 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .beer-visual::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--accent);
      border-radius: 18px 18px 0 0;
      z-index: 3;
    }

    .beer-visual-bg {
      position: absolute;
      font-size: 5.5rem;
      font-weight: 900;
      color: var(--accent);
      opacity: 0.06;
      letter-spacing: -4px;
      white-space: nowrap;
      user-select: none;
      pointer-events: none;
      text-transform: uppercase;
      transition: opacity .4s;
    }

    .beer-card:hover .beer-visual-bg {
      opacity: 0.02;
    }

    .beer-label-img {
      width: 100%;   /* llena el bloque; el aire lo pone el padding del contenedor */
      height: auto;
      /* Sin sombra a propósito: cualquier drop-shadow desenfoca el contorno y es
         justo lo que se quería evitar. La etiqueta se recorta contra el fondo
         del bloque solo con su color. */
      transform: translateY(22px) scale(0.88);
      opacity: 0;
      transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
      pointer-events: none;
      position: relative;
      z-index: 2;
    }

    .beer-card:hover .beer-label-img {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .beer-visual-top {
      position: absolute;
      top: 1rem;
      left: 1.25rem;
      right: 1.25rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 4;
    }

    /* header de la card */
    .beer-header {
      padding: 1rem 1.75rem 1.2rem;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .beer-bjcp {
      font-size: .62rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      background: color-mix(in srgb, var(--accent) 12%, transparent);
      padding: .25rem .7rem;
      border-radius: 999px;
      opacity: .9;
    }

    .beer-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px var(--accent);
      margin-top: 4px;
    }

    .beer-name {
      font-size: 1.9rem;
      font-weight: 900;
      letter-spacing: -1px;
      color: var(--accent);
      line-height: 1;
      margin-bottom: .3rem;
    }

    .beer-style-name {
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--muted);
    }

    /* stats row */
    .beer-stats {
      display: flex;
      gap: 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .beer-stat {
      flex: 1;
      padding: .9rem .75rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.05);
    }

    .beer-stat:last-child { border-right: none; }

    .stat-val {
      font-size: 1rem;
      font-weight: 900;
      color: var(--accent);
      line-height: 1;
      margin-bottom: .2rem;
    }

    .stat-key {
      font-size: .58rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--muted);
    }

    /* body */
    .beer-body {
      padding: 1.25rem 1.75rem 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }

    .beer-impression {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.7;
      font-style: italic;
    }

    .beer-sensory {
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }

    .sensory-row {
      display: flex;
      gap: .6rem;
      align-items: flex-start;
    }

    .sensory-label {
      font-size: .62rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--accent);
      min-width: 52px;
      padding-top: .1rem;
      opacity: .8;
    }

    .sensory-value {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.5;
      font-weight: 500;
    }

    .beer-tags { display: flex; gap: .4rem; flex-wrap: wrap; }

    .tag {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: .25rem .7rem;
      border-radius: 999px;
      background: color-mix(in srgb, var(--accent) 10%, transparent);
      color: var(--accent);
    }

    /* ─── TEMPORADA ─── */
    /* La etiqueta de La Diabla es el fondo de la sección: el degradado la
       funde con el texto en vez de dejarla como una foto aparte al lado. */
    #temporada {
      position: relative;
      min-height: 680px;
      display: flex;
      align-items: center;
      background: url(../assets/images/15776f40ef9b.webp) center/cover no-repeat;
      overflow: hidden;
    }

    #temporada::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, var(--bg) 0%, var(--bg) 42%, color-mix(in srgb, var(--bg) 55%, transparent) 66%, transparent 100%);
    }

    #temporada .container { position: relative; z-index: 1; width: 100%; }

    .temporada-content { max-width: 620px; }

    .season-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: color-mix(in srgb, var(--diabla) 15%, transparent);
      color: var(--diabla);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: .4rem 1rem;
      border-radius: 999px;
      margin-bottom: 1.5rem;
    }

    .season-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--diabla);
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: .4; transform: scale(1.4); }
    }

    .season-title {
      font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 900;
      letter-spacing: -2px;
      color: var(--diabla);
      line-height: 1;
      margin-bottom: .75rem;
    }

    .season-style {
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    .season-desc {
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .abv-chip {
      display: inline-flex;
      align-items: baseline;
      gap: .3rem;
      background: var(--bg3);
      border: 1px solid color-mix(in srgb, var(--diabla) 35%, transparent);
      padding: 1rem 1.75rem;
      border-radius: 14px;
    }

    .abv-num {
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--diabla);
      line-height: 1;
    }

    .abv-unit {
      font-size: .75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--muted);
    }

    /* ─── NOSOTROS ─── */
    #nosotros { background: var(--bg); }

    .nosotros-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .nosotros-text .desc { margin-bottom: 1.5rem; }

    .dna-pill {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      font-size: .85rem;
      color: var(--muted);
    }

    .dna-pill strong { color: var(--text); font-weight: 700; }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .stat {
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 14px;
      padding: 1.5rem;
    }

    .stat-num {
      font-size: 2.4rem;
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: .3rem;
    }

    .stat-lbl {
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--muted);
    }

    /* ─── PEDIDOS ─── */
    #pedidos { background: var(--bg); text-align: center; }

    .pedidos-inner { max-width: 660px; margin: 0 auto; }
    .pedidos-inner .desc { margin: 0 auto 3rem; }

    .contact-row {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .contact-card {
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 18px;
      padding: 2.2rem 1.8rem;
      width: 210px;
      text-align: center;
      text-decoration: none;
      color: var(--text);
      transition: all .25s;
    }

    .contact-card:hover {
      border-color: rgba(255,255,255,.18);
      transform: translateY(-5px);
    }

    .contact-icon {
      width: 54px; height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
    }

    .contact-icon svg { width: 26px; height: 26px; }

    .wa-icon   { background: rgba(37,211,102,.13); }
    .ig-icon   { background: rgba(225,48,108,.13); }

    .contact-card h3 {
      font-size: .95rem;
      font-weight: 800;
      margin-bottom: .35rem;
    }

    .contact-card p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.55;
    }

    .pedidos-note {
      font-size: .78rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg2);
      border-top: 1px solid rgba(255,255,255,.05);
      padding: 3rem 2.5rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-inner img { height: 28px; width: auto; }

    .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: color .2s;
    }

    .footer-links a:hover { color: var(--text); }

    .footer-copy {
      font-size: .72rem;
      color: rgba(255,255,255,.5);
      font-weight: 500;
      width: 100%;
      text-align: center;
    }

    /* ─── WA FLOAT ─── */
    .wa-float {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 200;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      transition: transform .2s, box-shadow .2s;
      animation: waPulse 3s ease-in-out infinite;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 32px rgba(37,211,102,.6);
    }

    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
      50%      { box-shadow: 0 4px 36px rgba(37,211,102,.7); }
    }

    .wa-float svg { width: 28px; height: 28px; }

    /* ─── VERIFICACIÓN DE EDAD ───
       El bloqueo vive en CSS y una línea de JS en el <head> decide si ya
       se verificó antes: así el visitante que vuelve no ve un parpadeo
       del modal antes de que cargue el script del final. */
    .edad {
      position: fixed;
      inset: 0;
      z-index: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      background: rgba(6,6,6,.95);
      backdrop-filter: blur(12px);
    }

    html.verificado .edad,
    html.abierto .edad { display: none; }

    /* Sin verificar no se puede hacer scroll al contenido. */
    html:not(.verificado):not(.abierto),
    html:not(.verificado):not(.abierto) body { overflow: hidden; }

    .edad-caja {
      width: 100%;
      max-width: 430px;
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 20px;
      padding: 2.6rem 2rem 2.2rem;
      text-align: center;
      box-shadow: 0 30px 90px -20px rgba(0,0,0,.9);
    }

    .edad-caja img { height: 34px; width: auto; margin-bottom: 1.8rem; }

    .edad-titulo {
      font-size: 1.55rem;
      font-weight: 900;
      letter-spacing: -.5px;
      line-height: 1.15;
      margin-bottom: .8rem;
    }

    .edad-texto {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }

    .edad-botones { display: flex; flex-direction: column; gap: .7rem; }
    .edad-botones .btn { width: 100%; justify-content: center; }

    .edad-nota {
      font-size: .68rem;
      color: var(--muted);
      line-height: 1.6;
      margin-top: 1.4rem;
      opacity: .75;
    }

    .edad-rechazo {
      display: none;
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.75;
    }

    .edad-rechazo strong { color: var(--text); }

    /* Al responder que no, se reemplazan las opciones por el mensaje. */
    .edad-caja.rechazado .edad-titulo,
    .edad-caja.rechazado .edad-texto,
    .edad-caja.rechazado .edad-botones,
    .edad-caja.rechazado .edad-nota { display: none; }

    .edad-caja.rechazado .edad-rechazo { display: block; }

    /* ─── MICRO-REFUERZO DEL HERO ─── */
    .hero-micro {
      font-size: .74rem;
      font-weight: 600;
      color: var(--muted);
      margin-top: 1.5rem;
      letter-spacing: .5px;
      opacity: 0;
      animation: fadeUp .8s .65s ease forwards;
    }

    /* ─── PACK (LA OFERTA) ─── */
    #pack { background: var(--bg2); }

    .pack-head { margin-bottom: 3rem; }

    .pack-cards {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .pack-card {
      flex: 1 1 300px;
      max-width: 420px;
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 18px;
      padding: 2.1rem 1.9rem;
      position: relative;
    }

    .pack-card.destacada {
      border-color: color-mix(in srgb, var(--entonada) 45%, transparent);
    }

    .pack-badge {
      position: absolute;
      top: -11px; left: 1.9rem;
      background: var(--entonada);
      color: #0a0a0a;
      font-size: .6rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: .3rem .85rem;
      border-radius: 999px;
    }

    .pack-qty {
      font-size: .66rem;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .5rem;
    }

    .pack-name {
      font-size: 1.9rem;
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 1rem;
    }

    .pack-price { display: flex; align-items: baseline; gap: .45rem; margin-bottom: 1rem; }
    .pack-price-num { font-size: 2rem; font-weight: 900; line-height: 1; letter-spacing: -1px; }
    .pack-price-unit { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
    .pack-note { font-size: .84rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

    .pack-buy { width: 100%; justify-content: center; }

    /* tabla de precios */
    .tabla-scroll {
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 16px;
      overflow-x: auto;
      margin-bottom: 2.5rem;
    }

    .precios { width: 100%; min-width: 460px; border-collapse: collapse; }

    .precios th, .precios td {
      padding: .85rem 1.2rem;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .precios thead th {
      font-size: .6rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      background: rgba(255,255,255,.02);
      white-space: nowrap;
    }

    .precios tbody tr:last-child td { border-bottom: none; }

    .p-cerveza {
      font-size: .9rem;
      font-weight: 800;
      letter-spacing: -.2px;
      color: var(--fila, var(--text));
      white-space: nowrap;
    }

    .p-estilo { font-size: .78rem; color: var(--muted); white-space: nowrap; }

    .p-precio {
      font-size: .88rem;
      font-weight: 700;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      color: var(--muted);
    }

    .p-precio.destacado { color: var(--text); }

    .precios-nota { font-size: .74rem; color: var(--muted); line-height: 1.7; }

    .pack-cta { margin-top: 2.5rem; }

    /* ─── FAQ ─── */
    #faq { background: var(--bg2); }

    .faq-head { text-align: center; }
    .faq-head .desc { margin: 0 auto; }

    .faq-list {
      max-width: 780px;
      margin: 3rem auto 0;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .faq-item {
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 14px;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 1.15rem 1.4rem;
      font-size: .93rem;
      font-weight: 700;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: color .2s;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1;
      color: var(--muted);
      transition: transform .25s ease;
      flex-shrink: 0;
    }

    .faq-item[open] summary { color: var(--avispada); }
    .faq-item[open] summary::after { transform: rotate(45deg); }

    .faq-body {
      padding: 0 1.4rem 1.35rem;
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .faq-body strong { color: var(--text); font-weight: 700; }
    .faq-body a { color: var(--avispada); }

    /* marcador de contenido que el cliente todavía debe confirmar */
    .pendiente {
      color: var(--entonada);
      font-style: italic;
      font-weight: 600;
    }

    /* ─── FORMULARIO ─── */
    .form-wrap {
      max-width: 540px;
      margin: 3rem auto 0;
      text-align: left;
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 18px;
      padding: 2.1rem 1.9rem;
    }

    .form-title { font-size: 1.05rem; font-weight: 800; text-align: center; margin-bottom: .4rem; }
    .form-sub { font-size: .82rem; color: var(--muted); text-align: center; line-height: 1.6; margin-bottom: 1.7rem; }

    .campo { margin-bottom: 1.1rem; }

    .campo label {
      display: block;
      font-size: .64rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .45rem;
    }

    .campo input,
    .campo select,
    .campo textarea {
      width: 100%;
      background: var(--bg);
      border: 1px solid rgba(0,0,0,.4);
      border-radius: 10px;
      padding: .8rem 1rem;
      color: var(--text);
      font-family: 'Raleway', sans-serif;
      font-size: .9rem;
      font-weight: 500;
      box-shadow: inset 0 2px 5px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.03);
      transition: border-color .2s, box-shadow .2s;
    }

    .campo select option { background: var(--bg2); color: var(--text); }
    .campo textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
    .campo input::placeholder, .campo textarea::placeholder { color: rgba(255,255,255,.26); }
    .campo input:hover, .campo select:hover, .campo textarea:hover { border-color: rgba(255,255,255,.2); }
    .campo.error input, .campo.error select, .campo.error textarea { border-color: var(--diabla); }

    .campo-error {
      display: none;
      font-size: .72rem;
      font-weight: 600;
      color: var(--diabla);
      margin-top: .4rem;
      letter-spacing: 0;
      text-transform: none;
    }

    .campo.error .campo-error { display: block; }

    /* honeypot: invisible para personas, visible para bots */
    .form-oculto {
      position: absolute;
      left: -9999px;
      width: 1px; height: 1px;
      overflow: hidden;
    }

    .btn-envio { width: 100%; justify-content: center; }
    .btn-envio[disabled] { opacity: .55; cursor: progress; transform: none; }

    .form-nota { font-size: .72rem; color: var(--muted); text-align: center; line-height: 1.65; margin-top: 1rem; }

    .form-msg {
      display: none;
      border-radius: 12px;
      padding: 1rem 1.15rem;
      font-size: .85rem;
      line-height: 1.65;
      margin-top: 1.2rem;
    }

    .form-msg.visible { display: block; }
    .form-msg.ok   { background: color-mix(in srgb, var(--avispada) 12%, transparent); border: 1px solid color-mix(in srgb, var(--avispada) 35%, transparent); }
    .form-msg.fail { background: color-mix(in srgb, var(--diabla) 12%, transparent);   border: 1px solid color-mix(in srgb, var(--diabla) 35%, transparent); }
    .form-msg a { color: var(--avispada); font-weight: 700; }

    /* ─── LEGALES DEL FOOTER ─── */
    .footer-legal {
      width: 100%;
      border-top: 1px solid rgba(255,255,255,.05);
      padding-top: 1.5rem;
      font-size: .7rem;
      line-height: 1.8;
      color: var(--muted);
    }

    .footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: .75rem; }
    .footer-pendiente { color: rgba(255,255,255,.3); cursor: default; }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── MOBILE ─── */
    @media (max-width: 768px) {
      nav { padding: .9rem 1.5rem; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 58px; left: 0; right: 0;
        background: var(--bg2);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,.06);
      }

      .nosotros-grid { grid-template-columns: 1fr; gap: 3rem; }

      #temporada { min-height: 520px; }
      #temporada::before {
        background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 55%, color-mix(in srgb, var(--bg) 55%, transparent) 78%, transparent 100%);
      }

      .pack-cards { flex-direction: column; }
      .pack-card { max-width: none; }
      .form-wrap { padding: 1.6rem 1.3rem; }
      .faq-item summary { font-size: .88rem; padding: 1rem 1.1rem; }
      .faq-body { padding: 0 1.1rem 1.15rem; }

      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-links { flex-wrap: wrap; gap: 1rem; }
      .footer-copy { text-align: left; }
    }