/** Shopify CDN: Minification failed

Line 786:21 Unexpected "{"
Line 786:30 Expected ":"
Line 786:37 Unexpected "{"
Line 793:21 Unexpected "{"
Line 793:30 Expected ":"
Line 806:18 Unexpected "{"
Line 806:27 Expected ":"
Line 806:33 Unexpected ","
Line 807:18 Unexpected "{"
Line 807:27 Expected ":"
... and 19 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Por defecto mostramos solo web */
  .hero-mobile {
    display: none;
  }
        .hero-taw {
          width: 100%;
          height: auto;
          display: flex;
          flex-direction: column;
        }
        /* HEADER */
        .header-taw {
          background: rgba(0, 0, 0, 0.2);
          backdrop-filter: blur(0px);
          position: fixed;
          top: 45px;
          left: 0;
          right: 0;
          margin: 0 auto;
          padding: 1rem 2rem;
          z-index: 9999;
          border-radius: 15px;
          width: calc(100% - 60px); /* mantiene márgenes laterales */
          transition: all 0.3s ease;
        }

        .header-inner {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 80px; /* espacio entre logo y menú */
        }

        .logo-taw img{
          height: 30px;
          width: auto;
          display: flex;
          align-items: center;
        }

        /* MENÚ DESKTOP */
        .menu-desktop {
          display: flex;
          gap: 2rem;
          margin-left: 20px;
        }

        .menu-desktop a {
          font-family: 'Aventa', sans-serif;
          color: #fff;
          text-decoration: none;
          font-size: 12px;
          letter-spacing: 1px;
          transition: opacity 0.3s;
        }

        .menu-desktop a:hover {
          opacity: 0.7;
        }

        /* ICONOS DERECHA */
        .icons-right {
          margin-left: auto;
          display: flex;
          align-items: center;
          gap: 1rem;
        }


        .icons-right img {
          width: 22px;
        }

        .hamburger {
          background: none;
          border: none;
          display: none;
        }


      /* HERO */
      .hero-content {
        position: relative;
        width: 100%;
        height: 65vh; /* igual que antes */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0); /* sutil capa oscura */
      }

      .hero-text {
        position: absolute;
        bottom: 15%;
        left: 10%;
        color: #fff;
        max-width: 400px;
        z-index: 2;
      }

      .hero-text h1 {
        font-family: 'Canela', serif;
        font-size: 36px;
        font-weight: 300;
        line-height: 1.2;
        color:#fff;
      }

      .hero-text p {
        font-size: 12px;
        margin-top: 1rem;
        font-weight: 400;
      }

    .btn-unete {
      position: absolute;
      bottom: 10%;
      max-width: 100%;
      right: 20%;
      background: #A46846;
      font-family: 'Aventa', sans-serif;
      color: #DEDA76;
      padding: 0.7rem 5.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-size: 11px;
      z-index: 2;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
       .hero-web {
      display: none;
    }
    .hero-mobile {
      display: block;
      height: 50vh; /* altura personalizada móvil */
      background-size: cover;
      background-position: center;
    }
      .hero-content {
      height: 50vh;
      background-size: cover;
      background-position: center;
      }
      .hero-text {
        bottom: 12%;
        left: 8%;
        max-width: 85%;
      }
      .hero-text h1 {
        font-size: 28px;
      }
      .hero-text p {
        font-size: 11px;
      }
      .btn-unete {
        bottom: 8%;
        right: 8%; /* mantiene el botón a la derecha también en móvil */
        padding: 0.6rem 2.5rem;
        font-size: 10px;
      }
    }

        /* MENU MÓVIL */
        .menu-mobile {
          position: fixed;
          inset: 0;
          background: #DEDA76;
          color: white;
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 10000;
        }

        .menu-mobile nav {
          display: flex;
          flex-direction: column;
          gap: 2rem;
          text-align: center;
        }

        .menu-mobile a {
          font-family: 'Aventa', sans-serif;
          color: #000;
          font-size: 2rem;
          text-decoration: none;
        }

        .menu-footer {
          text-align: center;
          margin-top: 12rem;
        }

        .menu-links {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 9rem; /* 🔥 separa los enlaces */
          flex-wrap: wrap; /* evita que se desborden en pantallas pequeñas */
          margin-bottom: 6rem;
        }

        .menu-links a {
          font-family: 'Aventa', sans-serif;
          color: #000;
          text-decoration: none;
          font-size: 0.9rem;
          letter-spacing: 0.5px;
          transition: opacity 0.3s;
        }

        .menu-links a:hover {
          opacity: 0.7;
        }

        .menu-footer img {
          width: 80%;
          margin: 0 auto;
          display: block;
        }


        .menu-header {
          position: absolute;
          top: 25px;
          left: 0;
          right: 0;
          margin: 0 auto;
          padding: 1rem 5rem;
          display: flex;
          justify-content: space-between; /* logo a la izq, X a la der */
          align-items: center;
          z-index: 10;
        }

        .menu-logo img {
          height: 30px;
          width: auto;
        }

        .close-menu {
          font-size: 1.8rem;
          background: none;
          color: #000;
          border: none;
          cursor: pointer;
        }



        /* RESPONSIVE */
        @media (max-width: 768px) {
          .menu-desktop {
            display: none;
          }
          .hamburger {
            display: block;
          }
          .hero-content {
            grid-template-columns: 1fr;
          }
          .hero-left, .hero-right {
            height: 50vh;
          }
        }

        body.menu-open .icons-right {
          visibility: hidden; /* 🔥 oculta iconos e impide clics */
        }

        body.menu-open .hamburger {
          visibility: hidden;
        }
/* ===============================
   0) Fuentes y variables globales
   =============================== */
@font-face {
  font-family: 'Aventa';
  src: url('{{ "Aventa-Regular.woff2" | asset_url }}') format('woff2'),
       url('{{ "Aventa-Regular.woff"  | asset_url }}') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aventa';
  src: url('{{ "Aventa-Semibold.woff2" | asset_url }}') format('woff2'),
       url('{{ "Aventa-Semibold.woff"  | asset_url }}') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-background: #F8F8E3;
  --color-text: #3a3a3a;
  --color-brand-button: #BA7E5E;
  --font-canela: 'Canela', serif;
  --font-aventa: 'Aventa', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Por defecto mostramos solo web */
.hero-mobile { display: none; }

/* ===============================
   1) Header / navegación
   =============================== */

  
    /* HEADER */
.hero-ingredientes-banner .header-banner {
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px; /* posición inicial */
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 21px);
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, top 0.5s ease-in-out; /* 👈 animación más suave */
}
    .hero-ingredientes-banner .header-inner { display: flex; align-items: center; gap: 78px; }
    .hero-ingredientes-banner .logo-banner img { height: 20px; width: auto; vertical-align: middle; margin-left: 10px;}

    /* Menú Desktop */
    .hero-ingredientes-banner .menu-desktop-comprar { display: flex; gap: 2rem; margin-left: 20px; }
    .hero-ingredientes-banner .menu-desktop-comprar a { color: #113940 !important; text-decoration: none; font-size: 13px !important; letter-spacing: 1px; transition: opacity 0.3s; }
    .hero-ingredientes-banner .menu-desktop-comprar a:hover { opacity: 0.7; }

    /* Iconos derecha */
    .hero-ingredientes-banner .icons-right { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; margin-right: 11px; }
    .hero-ingredientes-banner .icons-right img { width: 20px; }

    /* Hero Content */
    .hero-ingredientes-banner .hero-content { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); min-height: 100svh; height: 100dvh; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .hero-ingredientes-banner .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
    .hero-ingredientes-banner .hero-text { position: absolute; bottom: 10%; left: 5%; max-width: 550px; z-index: 2; color: #F8F8E3; }

/* Menú desktop - cambiar texto al hacer scroll */
.hero-ingredientes-banner .header-banner.scrolled .menu-desktop-comprar a {
  color: #f8f8e3 !important; /* beige */
}

    /* Responsive móvil */
    @media (max-width: 768px) {
      .hero-ingredientes-banner .hero-web { display: none; }
      .hero-ingredientes-banner .hero-mobile { display: flex; justify-content: center; align-items: center; width: 100%; height: 100svh; padding: 0 8%; text-align: center; background-size: cover; background-position: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text { position: static; max-width: 90%; margin: 0 auto 16px; text-align: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text h1 { font-size: 35px; font-family: 'Canela', serif; }
      .hero-ingredientes-banner .hero-mobile .hero-text p { font-size: 12px; }
      .hero-ingredientes-banner .hero-mobile .btn-unete { position: static; display: inline-flex; margin: 10px auto 0; padding: 12px 80px; font-size: 10px; font-weight: 600; border-radius: 12px; }
      .hero-ingredientes-banner .menu-desktop-comprar { display: none; }
      .hero-ingredientes-banner .hamburger { display: block;  }
      .hero-ingredientes-banner .icons-right .hamburger svg {
    width: 25px;       /* igual que los otros iconos */
    height: 25px;      /* igual que los otros iconos */
    vertical-align: middle; /* ayuda a alinear con los otros elementos */
    display: block;    /* elimina baseline spacing */
  }

    }

    /* Menú móvil */
    .hero-ingredientes-banner .menu-mobile { position: fixed; inset: 0; background: #DEDA76; display: none; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; }


.custom-product-container {
  background-color: var(--color-background);
  padding: 50px 0;
}

.custom-product-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: auto;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start; /* <-- MODIFICADO (era flex-start) */
}

@media (min-width: 768px) {
  .custom-product-page {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
  
  /* --- AÑADIDO --- */
  /* Esto hace que la galería de la imagen sea "pegajosa" en desktop */
  .product-gallery {
    position: -webkit-sticky; /* Para Safari */
    position: sticky;
    top: 100px; /* Distancia desde arriba (ajústalo según tu header) */
    align-self: start; /* Asegura que se alinee arriba en el grid */
  }
  /* --- FIN AÑADIDO --- */
}

.product-gallery .main-image-container {
  width: 100%;
  height: 600px; /* Ajusta según lo rectangular que quieras */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.product-gallery .main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantiene proporción y llena el contenedor */
}

.gallery-dots-container {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color:#F8F8E3;
  cursor: pointer;
  transition: background-color 0.3s;
  opacity: 0.4;
}

.gallery-dot.active { 
  background-color: #F8F8E3;
  opacity: 1;
}

.product-info-column { font-family: var(--font-aventa) !important; }

.product-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.product-title {
  font-family: var(--font-canela) !important;
  font-weight: 300;
  font-size: 35px;
  color: #3a493a;
  letter-spacing: 0.5px;
  margin: 0;
}

.product-subtitle {
  font-family: var(--font-canela) !important;
  font-weight: 300;
  font-size: 25px;
  color: #3a493a;
  letter-spacing: 0.5px;
  margin: 0;
}

.subscriptions-badge {
  background-color: #3a493a;
  color: #F8F8E3;
  border: 2px solid #DCCB59;
  border-radius: 50px;
  padding: 8px 10px;
  font-family: var(--font-aventa) !important;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.product-description p {
  font-weight: 400;
  font-size: 15px;
  color: #3a493a;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.product-description h3{
  font-size: 15px;
  line-height: 1;
}

.product-description span{
  font-size: 13px;
  line-height: 0;
}

.product-description li{
  font-size: 15px;
  line-height: 1.5;
}

.subscription-options {
  margin: 25px 0 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscription-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-aventa) !important;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-text);
}

.subscription-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #999;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}

.subscription-option input[type="radio"]:checked { border-color: var(--color-text); }

.subscription-option input[type="radio"]:checked::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--color-text);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.subscription-option .option-price { font-weight: 600; }

.subscription-option .option-price del {
  color: #999;
  margin-left: 8px;
  font-weight: 400;
}

.subscription-option .option-name { margin-left: 10px; }

.subscription-note p {
  font-family: var(--font-aventa) !important;
  font-weight: 400;
  font-size: 9px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 30px 0;
}

.add-to-cart-btn {
  background-color: #BA7E5E;
  color: #DEDA76;
  font-family: var(--font-aventa) !important;
  font-size: 15px;
  font-weight: 600;
  padding: 20px 30px; /* <- corregido */
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  transition: background-color 0.2s;
  letter-spacing: 0.5px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-btn:hover { background-color: #a97153; }

/* --- Acordeón --- */
.custom-product-page .product-accordion .accordion-item { border-top: 1px solid #808878; }
.custom-product-page .product-accordion .accordion-item:last-child { border-bottom: 1px solid #808878; }

.custom-product-page .accordion-header {
  width: 100%;
  display: block;
  padding: 3px 0;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-aventa) !important;
  font-weight: 600 !important;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em; 
}

.custom-product-page .accordion-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.custom-product-page .accordion-item.active .accordion-icon { transform: rotate(45deg) !important; }

.custom-product-page .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.custom-product-page .accordion-content-inner.rte {
  padding-bottom: 10px;
  font-size: 12px;
  color: #404D3F;
  line-height: 1.5;
}

/* ===============================
Responsive (<= 768px)
=============================== */
@media (max-width: 768px) {
  .product-gallery .main-image-container {
    height: 250px;
    position: relative;
    overflow: hidden;
  }

  .gallery-dots-container {
    bottom: 10px;
    gap: 8px;
    z-index: 5;         
    opacity: 1;         
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
  }

  /* Mostrar/ocultar hero por dispositivo */
  .hero-web { display: none; }
  .hero-mobile {
    display: block;
    height: 50vh; /* altura personalizada móvil */
    background-size: cover;
    background-position: center;
  }

  /* Hero sizing */
  .hero-content {
    height: 50vh;
    background-size: cover;
    background-position: center;
    /* Nota: en tu CSS original había un grid-template-columns sobre .hero-content,
       se omite aquí porque .hero-content no es grid y no tendría efecto. */
  }

  .hero-text {
    bottom: 12%;
    left: 8%;
    max-width: 85%;
  }

  .hero-text h1 { font-size: 28px; }

  .hero-text p {
    font-size: 11px;
    font-family: 'Aventa', sans-serif;
  }

  .add-to-cart-btn{
    border-radius: 20px;
    font-size: 15px;
  }

  /* Navegación */
  .menu-desktop-comprar { display: none; }
  .hamburger { display: block; }

  /* Refuerzo de fuente Aventa en móvil (iOS/Safari) */
  .menu-mobile,
  .menu-mobile * ,
  .menu-links a,
  .product-info-column,
  .custom-product-page .accordion-header,
  .custom-product-page .accordion-content-inner.rte,
  .subscriptions-badge,
  .add-to-cart-btn,
  .subscription-option label,
  .subscription-note p {
    font-family: 'Aventa', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* Clases que aparecían en tu responsivo original (no definidas arriba).
     Las mantengo por si existen en tu markup: */
  .hero-left, .hero-right { height: 50vh; }
}

/* ===========================
       HERO INGREDIENTES BANNER - ESTILOS BASE
       =========================== */
    .hero-ingredientes-banner {
      width: 100%;
      display: flex;
      flex-direction: column;
      font-family: 'Aventa', sans-serif;
    }
    /* ===============================
   BANNER DE PROMOCIÓN (Ej: $1,499)
   =============================== */
.custom-promo-banner {
  border-radius: 15px;
  padding: 20px 25px;
  text-align: center;
  font-family: var(--font-aventa);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  margin-top: 15px;
}

/* Limpia los márgenes del texto enriquecido dentro del banner */
.custom-promo-banner p {
  margin: 0;
}

/* --- Acordeón --- */
.custom-product-page .product-accordion .accordion-item { border-top: 1px solid #808878; }

.custom-product-page .accordion-content-inner.rte {
  font-family: 'Aventa', sans-serif;
}

#main-product-image-{{ section.id }} {
  transition: opacity 0.4s ease;
  user-select: none; /* evita selección al arrastrar */
  -webkit-user-drag: none; /* evita arrastre del navegador */
  cursor: grab;
}

#main-product-image-{{ section.id }}.fade {
  opacity: 0;
}

/* === Cursor tipo manita en desktop === */
.product-gallery .main-image-container {
  cursor: grab;
}

.product-gallery .main-image-container:active {
  cursor: grabbing;
}
/* === Full-bleed SOLO para esta sección === */
#shopify-section-{{ section.id }},
#shopify-section-{{ section.id }} .spaced-section,
#shopify-section-{{ section.id }} .page-width {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

/* ✂️ Quitar espacio bajo el hero (anula spacing del tema en la siguiente sección) */
#shopify-section-{{ section.id }} { margin-bottom: 0 !important; }
#shopify-section-{{ section.id }} .hero-taw { margin-bottom: 0 !important; }
#shopify-section-{{ section.id }} .hero-content { margin-bottom: 0 !important; padding-bottom: 0 !important; }

/* El tema suele aplicar margin-top a cada .shopify-section */
#shopify-section-{{ section.id }} + .shopify-section { margin-top: 0 !important; }
#shopify-section-{{ section.id }} + .spaced-section { margin-top: 0 !important; }
/* Por si el siguiente bloque tiene clases propias con separación */
#shopify-section-{{ section.id }} + *[class*="section"] { margin-top: 0 !important; }

/* Evitar scroll lateral por el full-bleed */
#shopify-section-{{ section.id }}, .hero-taw, .hero-content { overflow-x: hidden; }

/* Hero base */
.hero-mobile { display: none; }

.hero-taw {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.header-taw {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 1rem 2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 60px);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 80px;
}

.logo-taw img {
  height: 30px;
  width: auto;
  display: flex;
  align-items: center;
}

/* MENÚ DESKTOP */
.menu-desktop {
  display: flex;
  gap: 2rem;
  margin-left: 20px;
}

.menu-desktop a {
  font-family: 'Aventa', sans-serif;
  color: #F8F8E3 !important;
  text-decoration: none;
  font-size: 13px!important;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.menu-desktop a:hover { opacity: 0.7; }

/* ICONOS DERECHA */
.icons-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icons-right img { width: 22px; }

.hamburger {
  background: none;
  border: none;
  display: none;
  color: #f8f8e3;
}

/* Contenedor de fondo del hero (web y móvil) a ancho real */
.hero-content {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.hero-text {
  position: absolute;
  bottom: 10% !important;
  left: 5% !important;
  max-width: 550px !important;
  z-index: 2;
}

.hero-text h1 {
  font-family: 'Canela', serif !important;
  font-size: 50px !important;
  color: #F8F8E3 !important;
  line-height: 1.2 !important;
  margin: 15px 0;
}

.hero-text p {
  font-size: 15px !important;
  line-height: 1.4;
  font-weight: 400 !important;
  color: #F8F8E3 !important;
}

.btn-unete {
  position: absolute;
  bottom: 10% !important;
  right: 10% !important;
  max-width: 100%;
  background: #A46846 !important;
  font-family: 'Aventa', sans-serif !important;
  color: #DEDA76;
  padding: 12px 90px !important;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px !important;
  font-weight: 600 !important;
  z-index: 2;
}

.btn-unete:hover { background-color: #BA7E5E; }

/* RESPONSIVE */
/* ✅ Forzar tipografía en móvil para que se respete Aventa/Canela + centrado total */
@media (max-width: 768px) {
  /* Tipografía consistente */
  .hero-taw, .hero-taw *,
  .menu-mobile, .menu-mobile * {
    font-family: 'Aventa', !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  .hero-text h1 { font-family: 'Canela', serif !important; }

  /* Sin márgenes forzados en móvil para evitar overflow */
  .hero-content {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* Mostrar solo hero móvil */
  .hero-web { display: none; }
  .hero-mobile { display: block; }

  /* 🔥 Hero móvil centrado total (vertical + horizontal) */
  .hero-mobile.hero-content {
    height: 100svh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* centra vertical */
    align-items: center;       /* centra horizontal */
    padding: 0 20px;
    text-align: center;
  }

  /* Overlay sin interferir */
  .hero-overlay { pointer-events: none; }

  /* Texto centrado y con límite de ancho */
  .hero-mobile .hero-text {
    position: static;
    max-width: 90%;
    margin: 0 auto 16px;
    color: #F8F8E3;
    text-align: center;
  }

  .hero-mobile .hero-text h1 {
    font-size: 35px !important;
    font-family: 'Canela', serif !important;
  }

  .hero-mobile .hero-text p {
    font-size: 12px !important;
    font-family: 'Aventa', sans-serif !important;
  }

    /* Párrafo y botón explícitos en Aventa por si algo los pisa */
  .hero-mobile .hero-text p,
  .hero-mobile .btn-unete {
    font-family: 'Aventa', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  }

  /* Botón centrado y en flujo */
  .hero-mobile .btn-unete {
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    padding: 12px 80px; 
    font-size: 15px !important;
    font-weight: 600;
    background: #A46846;
    color: #DEDA76;
    border-radius: 12px;
    text-decoration: none;
    width: auto;
    height: auto;
    z-index: 2;
  }

  .hero-mobile .btn-unete:hover { background-color: #BA7E5E; }

  /* Header móvil */
  .menu-desktop { display: none; }
  .hamburger { display: block; }
}

/* MENU MÓVIL */
.menu-mobile {
  position: fixed;
  inset: 0;
  background: #DEDA76;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.menu-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.menu-mobile a {
  font-family: 'Aventa', sans-serif !important;
  color: #113940;
  font-size: 2rem;
  text-decoration: none;
}

.menu-footer { text-align: center; margin-top: 40rem; }

.menu-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

.menu-links a {
  font-family: 'Aventa', sans-serif !important;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: opacity 0.3s;
}

.menu-links a:hover { opacity: 0.7; }

.menu-footer img { width: 80%; margin: 200px auto 0; display: block; }

.menu-header {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 1rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.menu-logo img { height: 30px; width: auto; }

.close-menu {
  font-size: 1.8rem;
  background: none;
  color: #113940;
  border: none;
  cursor: pointer;
}

/* Ocultar iconos cuando el menú está abierto */
body.menu-open .icons-right { visibility: hidden; }
body.menu-open .hamburger  { visibility: hidden; }

/* ===========================
       HERO INGREDIENTES BANNER - ESTILOS BASE
       =========================== */
    .hero-ingredientes-banner {
      width: 100%;
      display: flex;
      flex-direction: column;
      font-family: 'Aventa', sans-serif;
    }

    /* HEADER */
    .hero-ingredientes-banner .header-banner {
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px; /* posición inicial */
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 21px);
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, top 0.5s ease-in-out; /* 👈 animación más suave */
}

.hero-ingredientes-banner .header-banner.scrolled {
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(2px);
  top: 0; /* se ajusta al hacer scroll */
}


    .hero-ingredientes-banner .header-inner { display: flex; align-items: center; gap: 78px; }
    .hero-ingredientes-banner .logo-banner img { height: 20px; width: auto; vertical-align: middle; margin-left: 10px;}

    /* Menú Desktop */
    .hero-ingredientes-banner .menu-desktop { display: flex; gap: 2rem; margin-left: 20px; }
    .hero-ingredientes-banner .menu-desktop a { color: #F8F8E3; text-decoration: none; font-size: 12px; letter-spacing: 1px; transition: opacity 0.3s; }
    .hero-ingredientes-banner .menu-desktop a:hover { opacity: 0.7; }

    /* Iconos derecha */
    .hero-ingredientes-banner .icons-right { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; margin-right: 11px; }
    .hero-ingredientes-banner .icons-right img { width: 20px; }

    /* Hero Content */
    .hero-ingredientes-banner .hero-content { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); min-height: 100svh; height: 100dvh; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .hero-ingredientes-banner .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
    .hero-ingredientes-banner .hero-text { position: absolute; bottom: 10%; left: 5%; max-width: 550px; z-index: 2; color: #F8F8E3; }


    /* Responsive móvil */
    @media (max-width: 768px) {
      .hero-ingredientes-banner .hero-web { display: none; }
      .hero-ingredientes-banner .hero-mobile { display: flex; justify-content: center; align-items: center; width: 100%; height: 100svh; padding: 0 8%; text-align: center; background-size: cover; background-position: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text { position: static; max-width: 90%; margin: 0 auto 16px; text-align: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text h1 { font-size: 35px; font-family: 'Canela', serif; }
      .hero-ingredientes-banner .hero-mobile .hero-text p { font-size: 12px; }
      .hero-ingredientes-banner .hero-mobile .btn-unete { position: static; display: inline-flex; margin: 16px auto 0; padding: 12px 80px; font-size: 15px; font-weight: 600; border-radius: 12px; }
      .hero-ingredientes-banner .menu-desktop { display: none; }
      .hero-ingredientes-banner .hamburger { display: block;  }
      .hero-ingredientes-banner .icons-right .hamburger svg {
    width: 25px;       /* igual que los otros iconos */
    height: 25px;      /* igual que los otros iconos */
    vertical-align: middle; /* ayuda a alinear con los otros elementos */
    display: block;    /* elimina baseline spacing */
  }

    }

    /* Menú móvil */
    .hero-ingredientes-banner .menu-mobile { position: fixed; inset: 0; background: #DEDA76; display: none; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; }
/* ===========================
       HERO INGREDIENTES BANNER - ESTILOS BASE
       =========================== */
    .hero-ingredientes-banner {
      width: 100%;
      display: flex;
      flex-direction: column;
      font-family: 'Aventa', sans-serif;
    }

    /* HEADER */
    .hero-ingredientes-banner .header-banner {
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px; /* posición inicial */
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 21px);
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, top 0.5s ease-in-out; /* 👈 animación más suave */
}

.hero-ingredientes-banner .header-banner.scrolled {
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(2px);
  top: 0; /* se ajusta al hacer scroll */
}


    .hero-ingredientes-banner .header-inner { display: flex; align-items: center; gap: 78px; }
    .hero-ingredientes-banner .logo-banner img { height: 20px; width: auto; vertical-align: middle; margin-left: 10px;}

    /* Menú Desktop */
    .hero-ingredientes-banner .menu-desktop { display: flex; gap: 2rem; margin-left: 20px; }
    .hero-ingredientes-banner .menu-desktop a { color: #F8F8E3; text-decoration: none; font-size: 12px; letter-spacing: 1px; transition: opacity 0.3s; }
    .hero-ingredientes-banner .menu-desktop a:hover { opacity: 0.7; }

    /* Iconos derecha */
    .hero-ingredientes-banner .icons-right { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; margin-right: 11px; }
    .hero-ingredientes-banner .icons-right img { width: 20px; }

    /* Hero Content */
    .hero-ingredientes-banner .hero-content { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); min-height: 100svh; height: 100dvh; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .hero-ingredientes-banner .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
    .hero-ingredientes-banner .hero-text { position: absolute; bottom: 10%; left: 5%; max-width: 550px; z-index: 2; color: #F8F8E3; }


    /* Responsive móvil */
    @media (max-width: 768px) {
      .hero-ingredientes-banner .hero-web { display: none; }
      .hero-ingredientes-banner .hero-mobile { display: flex; justify-content: center; align-items: center; width: 100%; height: 100svh; padding: 0 8%; text-align: center; background-size: cover; background-position: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text { position: static; max-width: 90%; margin: 0 auto 16px; text-align: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text h1 { font-size: 35px; font-family: 'Canela', serif; }
      .hero-ingredientes-banner .hero-mobile .hero-text p { font-size: 12px; }
      .hero-ingredientes-banner .hero-mobile .btn-unete { position: static; display: inline-flex; margin: 16px auto 0; padding: 12px 80px; font-size: 15px; font-weight: 600; border-radius: 12px; }
      .hero-ingredientes-banner .menu-desktop { display: none; }
      .hero-ingredientes-banner .hamburger { display: block;  }
      .hero-ingredientes-banner .icons-right .hamburger svg {
    width: 25px;       /* igual que los otros iconos */
    height: 25px;      /* igual que los otros iconos */
    vertical-align: middle; /* ayuda a alinear con los otros elementos */
    display: block;    /* elimina baseline spacing */
  }

    }

    /* Menú móvil */
    .hero-ingredientes-banner .menu-mobile { position: fixed; inset: 0; background: #DEDA76; display: none; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; }
/* ===========================
   HERO TAW - ESTILOS BASE
   =========================== */
.hero-taw {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: 'Aventa', sans-serif;
}

/* -------- HEADER -------- */
.hero-taw .header-taw {
  background: rgba(0, 0, 0, .2); /* transparente al inicio */
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 20px);
  transition: background 0.2s ease, backdrop-filter 0.2s ease;
}

/* Clase que se activa al hacer scroll */
.hero-taw .header-taw.scrolled {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}


.hero-taw .header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 78px;
}

.hero-taw .logo-taw img {
  height: 20px;
  width: auto;
  display: flex;
  align-items: center;
}

/* -------- MENÚ DESKTOP -------- */
.hero-taw .menu-desktop {
  display: flex;
  gap: 2rem;
  margin-left: 20px;
}

.hero-taw .menu-desktop a {
  color: #F8F8E3;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.hero-taw .menu-desktop a:hover {
  opacity: 0.7;
}

/* -------- ICONOS DERECHA -------- */
.hero-taw .icons-right {
  margin-left: auto;
  margin-right: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-taw .icons-right img {
  width: 20px;
}

.hero-taw .hamburger {
  display: none;           
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  margin-top: 5px;
  align-items: center;       
}

/* -------- HERO CONTENT -------- */
.hero-taw .hero-content {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 100svh;
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-taw .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}

.hero-taw .hero-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  max-width: 550px;
  z-index: 2;
  color: #F8F8E3;
}

.hero-taw .hero-text h1 {
  font-family: 'Canela', serif !important;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
  color: #F8F8E3;
}

.hero-taw .hero-text p {
  font-size: 15px;
  margin-top: 1rem;
  font-weight: 400;
  color: #F8F8E3;
}

.hero-taw .btn-unete {
  position: absolute;
  bottom: 10%;
  right: 10%;
  max-width: 100%;
  background: #A46846;
  color: #DEDA76;
  padding: 12px 90px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Aventa', sans-serif;
  z-index: 2;
}

.hero-taw .btn-unete:hover {
  background-color: #BA7E5E;
}

/* -------- RESPONSIVE MÓVIL -------- */
@media (max-width: 768px) {
  .hero-taw .hero-web { display: none; }
  .hero-taw .hero-mobile { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100svh;
    padding: 0 8%;
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .hero-taw .hero-mobile .hero-text {
    position: static;
    max-width: 90%;
    margin: 0 auto 16px;
    text-align: center;
    color: #F8F8E3;
  }

  .hero-taw .hero-mobile .hero-text h1 {
    font-size: 35px;
    font-family: 'Canela', serif;
  }

  .hero-taw .hero-mobile .hero-text p {
    font-size: 12px;
  }

  .hero-taw .hero-mobile .btn-unete {
    position: static;
    display: inline-flex;
    margin: 16px auto 0;
    padding: 12px 80px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
  }

  .hero-taw .menu-desktop { display: none; }
  .hero-taw .hamburger { display: block; }
}

/* -------- MENÚ MÓVIL -------- */
.hero-taw .menu-mobile {
  position: fixed;
  inset: 0;
  background: #DEDA76;
  color: white;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.hero-taw .menu-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.hero-taw .menu-mobile a {
  color: #113940;
  font-size: 2rem;
  text-decoration: none;
}

.hero-taw .menu-footer {
  text-align: center;
  margin-top: 12rem;
}

.hero-taw .menu-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

.hero-taw .menu-links a {
  color: #000;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hero-taw .menu-footer img { width: 80%; margin: 0 auto; display: block; }

.hero-taw .menu-header {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 1rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.hero-taw .menu-logo img { height: 30px; width: auto; }

.hero-taw .close-menu {
  font-size: 1.8rem;
  background: none;
  color: #113940;
  border: none;
  cursor: pointer;
}

body.menu-open .hero-taw .icons-right { visibility: hidden; }
body.menu-open .hero-taw .hamburger  { visibility: hidden; }
/* Por defecto mostramos solo web */
  .hero-mobile {
    display: none;
  }
        .hero-taw {
          width: 100%;
          height: auto;
          display: flex;
          flex-direction: column;
        }
        /* HEADER */
        .header-taw {
          background: rgba(0, 0, 0, 0.2);
          backdrop-filter: blur(0px);
          position: fixed;
          top: 45px;
          left: 0;
          right: 0;
          margin: 0 auto;
          padding: 1rem 2rem;
          z-index: 9999;
          border-radius: 15px;
          width: calc(100% - 60px); /* mantiene márgenes laterales */
          transition: all 0.3s ease;
        }

        .header-inner {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 80px; /* espacio entre logo y menú */
        }

        .logo-taw img{
          height: 30px;
          width: auto;
          display: flex;
          align-items: center;
        }

        /* MENÚ DESKTOP */
        .menu-desktop {
          display: flex;
          gap: 2rem;
          margin-left: 20px;
        }

        .menu-desktop a {
          font-family: 'Aventa', sans-serif;
          color: #fff;
          text-decoration: none;
          font-size: 12px;
          letter-spacing: 1px;
          transition: opacity 0.3s;
        }

        .menu-desktop a:hover {
          opacity: 0.7;
        }

        /* ICONOS DERECHA */
        .icons-right {
          margin-left: auto;
          display: flex;
          align-items: center;
          gap: 1rem;
        }


        .icons-right img {
          width: 22px;
        }

        .hamburger {
          background: none;
          border: none;
          display: none;
        }


      /* HERO */
      .hero-content {
        position: relative;
        width: 100%;
        height: 65vh; /* igual que antes */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0); /* sutil capa oscura */
      }

      .hero-text {
        position: absolute;
        bottom: 15%;
        left: 10%;
        color: #fff;
        max-width: 400px;
        z-index: 2;
      }

      .hero-text h1 {
        font-family: 'Canela', serif;
        font-size: 36px;
        font-weight: 300;
        line-height: 1.2;
        color:#fff;
      }

      .hero-text p {
        font-size: 12px;
        margin-top: 1rem;
        font-weight: 400;
      }

    .btn-unete {
      position: absolute;
      bottom: 10%;
      max-width: 100%;
      right: 20%;
      background: #A46846;
      font-family: 'Aventa', sans-serif;
      color: #DEDA76;
      padding: 0.7rem 5.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-size: 11px;
      z-index: 2;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
       .hero-web {
      display: none;
    }
    .hero-mobile {
      display: block;
      height: 50vh; /* altura personalizada móvil */
      background-size: cover;
      background-position: center;
    }
      .hero-content {
      height: 50vh;
      background-size: cover;
      background-position: center;
      }
      .hero-text {
        bottom: 12%;
        left: 8%;
        max-width: 85%;
      }
      .hero-text h1 {
        font-size: 28px;
      }
      .hero-text p {
        font-size: 11px;
      }
      .btn-unete {
        bottom: 8%;
        right: 8%; /* mantiene el botón a la derecha también en móvil */
        padding: 0.6rem 2.5rem;
        font-size: 10px;
      }
    }

        /* MENU MÓVIL */
        .menu-mobile {
          position: fixed;
          inset: 0;
          background: #DEDA76;
          color: white;
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 10000;
        }

        .menu-mobile nav {
          display: flex;
          flex-direction: column;
          gap: 2rem;
          text-align: center;
        }

        .menu-mobile a {
          font-family: 'Aventa', sans-serif;
          color: #000;
          font-size: 2rem;
          text-decoration: none;
        }

        .menu-footer {
          text-align: center;
          margin-top: 12rem;
        }

        .menu-links {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 9rem; /* 🔥 separa los enlaces */
          flex-wrap: wrap; /* evita que se desborden en pantallas pequeñas */
          margin-bottom: 6rem;
        }

        .menu-links a {
          font-family: 'Aventa', sans-serif;
          color: #000;
          text-decoration: none;
          font-size: 0.9rem;
          letter-spacing: 0.5px;
          transition: opacity 0.3s;
        }

        .menu-links a:hover {
          opacity: 0.7;
        }

        .menu-footer img {
          width: 80%;
          margin: 0 auto;
          display: block;
        }


        .menu-header {
          position: absolute;
          top: 25px;
          left: 0;
          right: 0;
          margin: 0 auto;
          padding: 1rem 5rem;
          display: flex;
          justify-content: space-between; /* logo a la izq, X a la der */
          align-items: center;
          z-index: 10;
        }

        .menu-logo img {
          height: 30px;
          width: auto;
        }

        .close-menu {
          font-size: 1.8rem;
          background: none;
          color: #000;
          border: none;
          cursor: pointer;
        }



        /* RESPONSIVE */
        @media (max-width: 768px) {
          .menu-desktop {
            display: none;
          }
          .hamburger {
            display: block;
          }
          .hero-content {
            grid-template-columns: 1fr;
          }
          .hero-left, .hero-right {
            height: 50vh;
          }
        }

        body.menu-open .icons-right {
          visibility: hidden; /* 🔥 oculta iconos e impide clics */
        }

        body.menu-open .hamburger {
          visibility: hidden;
        }
/* ===============================
   1) Header / navegación
   =============================== */

  
    /* HEADER */
    .hero-ingredientes-banner .header-banner {
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px; /* posición inicial */
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 21px);
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, top 0.5s ease-in-out; /* 👈 animación más suave */
}
    .hero-ingredientes-banner .header-inner { display: flex; align-items: center; gap: 78px; }
    .hero-ingredientes-banner .logo-banner img { height: 20px; width: auto; vertical-align: middle; margin-left: 10px;}

    /* Menú Desktop */
    .hero-ingredientes-banner .menu-desktop-comprar { display: flex; gap: 2rem; margin-left: 20px; }
    .hero-ingredientes-banner .menu-desktop-comprar a { color: #000 !important; text-decoration: none; font-size: 12px; letter-spacing: 1px; transition: opacity 0.3s; }
    .hero-ingredientes-banner .menu-desktop-comprar a:hover { opacity: 0.7; }

    /* Iconos derecha */
    .hero-ingredientes-banner .icons-right { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; margin-right: 11px; }
    .hero-ingredientes-banner .icons-right img { width: 20px; }

    /* Hero Content */
    .hero-ingredientes-banner .hero-content { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); min-height: 100svh; height: 100dvh; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .hero-ingredientes-banner .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
    .hero-ingredientes-banner .hero-text { position: absolute; bottom: 10%; left: 5%; max-width: 550px; z-index: 2; color: #F8F8E3; }

/* Menú desktop - cambiar texto al hacer scroll */
.hero-ingredientes-banner .header-banner.scrolled .menu-desktop-comprar a {
  color: #f5f5dc !important; /* beige */
}


    /* Responsive móvil */
    @media (max-width: 768px) {
      .hero-ingredientes-banner .hero-web { display: none; }
      .hero-ingredientes-banner .hero-mobile { display: flex; justify-content: center; align-items: center; width: 100%; height: 100svh; padding: 0 8%; text-align: center; background-size: cover; background-position: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text { position: static; max-width: 90%; margin: 0 auto 16px; text-align: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text h1 { font-size: 35px; font-family: 'Canela', serif; }
      .hero-ingredientes-banner .hero-mobile .hero-text p { font-size: 12px; }
      .hero-ingredientes-banner .hero-mobile .btn-unete { position: static; display: inline-flex; margin: 16px auto 0; padding: 12px 80px; font-size: 15px; font-weight: 600; border-radius: 12px; }
      .hero-ingredientes-banner .menu-desktop-comprar { display: none; }
      .hero-ingredientes-banner .hamburger { display: block;  }
      .hero-ingredientes-banner .icons-right .hamburger svg {
    width: 25px;       /* igual que los otros iconos */
    height: 25px;      /* igual que los otros iconos */
    vertical-align: middle; /* ayuda a alinear con los otros elementos */
    display: block;    /* elimina baseline spacing */
  }

    }

    /* Menú móvil */
    .hero-ingredientes-banner .menu-mobile { position: fixed; inset: 0; background: #DEDA76; display: none; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; }
/* ===============================
   1) Header / navegación
   =============================== */

  
    /* HEADER */
    .hero-ingredientes-banner .header-banner {
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px; /* posición inicial */
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 21px);
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, top 0.5s ease-in-out; /* 👈 animación más suave */
}
    .hero-ingredientes-banner .header-inner { display: flex; align-items: center; gap: 78px; }
    .hero-ingredientes-banner .logo-banner img { height: 20px; width: auto; vertical-align: middle; margin-left: 10px;}

    /* Menú Desktop */
    .hero-ingredientes-banner .menu-desktop-comprar { display: flex; gap: 2rem; margin-left: 20px; }
    .hero-ingredientes-banner .menu-desktop-comprar a { color: #000 !important; text-decoration: none; font-size: 12px; letter-spacing: 1px; transition: opacity 0.3s; }
    .hero-ingredientes-banner .menu-desktop-comprar a:hover { opacity: 0.7; }

    /* Iconos derecha */
    .hero-ingredientes-banner .icons-right { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; margin-right: 11px; }
    .hero-ingredientes-banner .icons-right img { width: 20px; }

    /* Hero Content */
    .hero-ingredientes-banner .hero-content { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); min-height: 100svh; height: 100dvh; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .hero-ingredientes-banner .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
    .hero-ingredientes-banner .hero-text { position: absolute; bottom: 10%; left: 5%; max-width: 550px; z-index: 2; color: #F8F8E3; }

/* Menú desktop - cambiar texto al hacer scroll */
.hero-ingredientes-banner .header-banner.scrolled .menu-desktop-comprar a {
  color: #f5f5dc !important; /* beige */
}


    /* Responsive móvil */
    @media (max-width: 768px) {
      .hero-ingredientes-banner .hero-web { display: none; }
      .hero-ingredientes-banner .hero-mobile { display: flex; justify-content: center; align-items: center; width: 100%; height: 100svh; padding: 0 8%; text-align: center; background-size: cover; background-position: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text { position: static; max-width: 90%; margin: 0 auto 16px; text-align: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text h1 { font-size: 35px; font-family: 'Canela', serif; }
      .hero-ingredientes-banner .hero-mobile .hero-text p { font-size: 12px; }
      .hero-ingredientes-banner .hero-mobile .btn-unete { position: static; display: inline-flex; margin: 16px auto 0; padding: 12px 80px; font-size: 15px; font-weight: 600; border-radius: 12px; }
      .hero-ingredientes-banner .menu-desktop-comprar { display: none; }
      .hero-ingredientes-banner .hamburger { display: block;  }
      .hero-ingredientes-banner .icons-right .hamburger svg {
    width: 20px;       /* igual que los otros iconos */
    height: 20px;      /* igual que los otros iconos */
    vertical-align: middle; /* ayuda a alinear con los otros elementos */
    display: block;    /* elimina baseline spacing */
  }

    }

    /* Menú móvil */
    .hero-ingredientes-banner .menu-mobile { position: fixed; inset: 0; background: #DEDA76; display: none; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; }
/* Por defecto mostramos solo web */
  .hero-mobile {
    display: none;
  }
        .hero-taw {
          width: 100%;
          height: auto;
          display: flex;
          flex-direction: column;
          margin-bottom: 10rem;
        }
        /* HEADER */
        .header-taw {
          background: rgba(0, 0, 0, 0.2);
          backdrop-filter: blur(0px);
          position: fixed;
          top: 45px;
          left: 0;
          right: 0;
          margin: 0 auto;
          padding: 1rem 2rem;
          z-index: 9999;
          border-radius: 15px;
          width: calc(100% - 60px); /* mantiene márgenes laterales */
          transition: all 0.3s ease;
        }

        .header-inner {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 80px; /* espacio entre logo y menú */
        }

        .logo-taw img{
          height: 30px;
          width: auto;
          display: flex;
          align-items: center;
        }

        /* MENÚ DESKTOP */
        .menu-desktop {
          display: flex;
          gap: 2rem;
          margin-left: 20px;
        }

        .menu-desktop a {
          font-family: 'Aventa', sans-serif;
          color: #fff;
          text-decoration: none;
          font-size: 12px;
          letter-spacing: 1px;
          transition: opacity 0.3s;
        }

        .menu-desktop a:hover {
          opacity: 0.7;
        }

        /* ICONOS DERECHA */
        .icons-right {
          margin-left: auto;
          display: flex;
          align-items: center;
          gap: 1rem;
        }


        .icons-right img {
          width: 22px;
        }

        .hamburger {
          background: none;
          border: none;
          display: none;
        }


      /* HERO */
      .hero-content {
        position: relative;
        width: 100%;
        height: 65vh; /* igual que antes */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0); /* sutil capa oscura */
      }

      .hero-text {
        position: absolute;
        bottom: 15%;
        left: 10%;
        color: #fff;
        max-width: 400px;
        z-index: 2;
      }

      .hero-text h1 {
        font-family: 'Canela', serif;
        font-size: 36px;
        font-weight: 300;
        line-height: 1.2;
        color:#fff;
      }

      .hero-text p {
        font-size: 12px;
        margin-top: 1rem;
        font-weight: 400;
      }

    .btn-unete {
      position: absolute;
      bottom: 10%;
      max-width: 100%;
      right: 20%;
      background: #A46846;
      font-family: 'Aventa', sans-serif;
      color: #DEDA76;
      padding: 0.7rem 5.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-size: 11px;
      z-index: 2;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
       .hero-web {
      display: none;
    }
    .hero-mobile {
      display: block;
      height: 50vh; /* altura personalizada móvil */
      background-size: cover;
      background-position: center;
    }
      .hero-content {
      height: 50vh;
      background-size: cover;
      background-position: center;
      }
      .hero-text {
        bottom: 12%;
        left: 8%;
        max-width: 85%;
      }
      .hero-text h1 {
        font-size: 28px;
      }
      .hero-text p {
        font-size: 11px;
      }
      .btn-unete {
        bottom: 8%;
        right: 8%; /* mantiene el botón a la derecha también en móvil */
        padding: 0.6rem 2.5rem;
        font-size: 10px;
      }
    }

        /* MENU MÓVIL */
        .menu-mobile {
          position: fixed;
          inset: 0;
          background: #DEDA76;
          color: white;
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 10000;
        }

        .menu-mobile nav {
          display: flex;
          flex-direction: column;
          gap: 2rem;
          text-align: center;
        }

        .menu-mobile a {
          font-family: 'Aventa', sans-serif;
          color: #000;
          font-size: 2rem;
          text-decoration: none;
        }

        .menu-footer {
          text-align: center;
          margin-top: 12rem;
        }

        .menu-links {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 9rem; /* 🔥 separa los enlaces */
          flex-wrap: wrap; /* evita que se desborden en pantallas pequeñas */
          margin-bottom: 6rem;
        }

        .menu-links a {
          font-family: 'Aventa', sans-serif;
          color: #000;
          text-decoration: none;
          font-size: 0.9rem;
          letter-spacing: 0.5px;
          transition: opacity 0.3s;
        }

        .menu-links a:hover {
          opacity: 0.7;
        }

        .menu-footer img {
          width: 80%;
          margin: 0 auto;
          display: block;
        }


        .menu-header {
          position: absolute;
          top: 25px;
          left: 0;
          right: 0;
          margin: 0 auto;
          padding: 1rem 5rem;
          display: flex;
          justify-content: space-between; /* logo a la izq, X a la der */
          align-items: center;
          z-index: 10;
        }

        .menu-logo img {
          height: 30px;
          width: auto;
        }

        .close-menu {
          font-size: 1.8rem;
          background: none;
          color: #000;
          border: none;
          cursor: pointer;
        }



        /* RESPONSIVE */
        @media (max-width: 768px) {
          .menu-desktop {
            display: none;
          }
          .hamburger {
            display: block;
          }
          .hero-content {
            grid-template-columns: 1fr;
          }
          .hero-left, .hero-right {
            height: 50vh;
          }
        }

        body.menu-open .icons-right {
          visibility: hidden; /* 🔥 oculta iconos e impide clics */
        }

        body.menu-open .hamburger {
          visibility: hidden;
        /* ===============================
   1) Header / navegación
   =============================== */

  
    /* HEADER */
    .hero-ingredientes-banner .header-banner {
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px; /* posición inicial */
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 21px);
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, top 0.5s ease-in-out; /* 👈 animación más suave */
}
    .hero-ingredientes-banner .header-inner { display: flex; align-items: center; gap: 78px; }
    .hero-ingredientes-banner .logo-banner img { height: 20px; width: auto; vertical-align: middle; margin-left: 10px;}

    /* Menú Desktop */
    .hero-ingredientes-banner .menu-desktop-comprar { display: flex; gap: 2rem; margin-left: 20px; }
    .hero-ingredientes-banner .menu-desktop-comprar a { color: #000 !important; text-decoration: none; font-size: 12px; letter-spacing: 1px; transition: opacity 0.3s; }
    .hero-ingredientes-banner .menu-desktop-comprar a:hover { opacity: 0.7; }

    /* Iconos derecha */
    .hero-ingredientes-banner .icons-right { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; margin-right: 11px; }
    .hero-ingredientes-banner .icons-right img { width: 20px; }

    /* Hero Content */
    .hero-ingredientes-banner .hero-content { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); min-height: 100svh; height: 100dvh; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .hero-ingredientes-banner .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
    .hero-ingredientes-banner .hero-text { position: absolute; bottom: 10%; left: 5%; max-width: 550px; z-index: 2; color: #F8F8E3; }

/* Menú desktop - cambiar texto al hacer scroll */
.hero-ingredientes-banner .header-banner.scrolled .menu-desktop-comprar a {
  color: #f5f5dc !important; /* beige */
}


    /* Responsive móvil */
    @media (max-width: 768px) {
      .hero-ingredientes-banner .hero-web { display: none; }
      .hero-ingredientes-banner .hero-mobile { display: flex; justify-content: center; align-items: center; width: 100%; height: 100svh; padding: 0 8%; text-align: center; background-size: cover; background-position: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text { position: static; max-width: 90%; margin: 0 auto 16px; text-align: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text h1 { font-size: 35px; font-family: 'Canela', serif; }
      .hero-ingredientes-banner .hero-mobile .hero-text p { font-size: 12px; }
      .hero-ingredientes-banner .hero-mobile .btn-unete { position: static; display: inline-flex; margin: 16px auto 0; padding: 12px 80px; font-size: 15px; font-weight: 600; border-radius: 12px; }
      .hero-ingredientes-banner .menu-desktop-comprar { display: none; }
      .hero-ingredientes-banner .hamburger { display: block;  }
      .hero-ingredientes-banner .icons-right .hamburger svg {
    width: 20px;       /* igual que los otros iconos */
    height: 20px;      /* igual que los otros iconos */
    vertical-align: middle; /* ayuda a alinear con los otros elementos */
    display: block;    /* elimina baseline spacing */
  }

    }

    /* Menú móvil */
    .hero-ingredientes-banner .menu-mobile { position: fixed; inset: 0; background: #DEDA76; display: none; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; }
/* ===============================
   1) Header / navegación
   =============================== */

  
    /* HEADER */
    .hero-ingredientes-banner .header-banner {
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px; /* posición inicial */
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 21px);
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out, top 0.5s ease-in-out; /* 👈 animación más suave */
}
    .hero-ingredientes-banner .header-inner { display: flex; align-items: center; gap: 78px; }
    .hero-ingredientes-banner .logo-banner img { height: 20px; width: auto; vertical-align: middle; margin-left: 10px;}

    /* Menú Desktop */
    .hero-ingredientes-banner .menu-desktop-comprar { display: flex; gap: 2rem; margin-left: 20px; }
    .hero-ingredientes-banner .menu-desktop-comprar a { color: #000 !important; text-decoration: none; font-size: 12px; letter-spacing: 1px; transition: opacity 0.3s; }
    .hero-ingredientes-banner .menu-desktop-comprar a:hover { opacity: 0.7; }

    /* Iconos derecha */
    .hero-ingredientes-banner .icons-right { margin-left: auto; display: flex; gap: 0.5rem; align-items: center; margin-right: 11px; }
    .hero-ingredientes-banner .icons-right img { width: 20px; }

    /* Hero Content */
    .hero-ingredientes-banner .hero-content { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); min-height: 100svh; height: 100dvh; background-size: cover; background-position: center; background-repeat: no-repeat; }
    .hero-ingredientes-banner .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); }
    .hero-ingredientes-banner .hero-text { position: absolute; bottom: 10%; left: 5%; max-width: 550px; z-index: 2; color: #F8F8E3; }

/* Menú desktop - cambiar texto al hacer scroll */
.hero-ingredientes-banner .header-banner.scrolled .menu-desktop-comprar a {
  color: #f5f5dc !important; /* beige */
}


    /* Responsive móvil */
    @media (max-width: 768px) {
      .hero-ingredientes-banner .hero-web { display: none; }
      .hero-ingredientes-banner .hero-mobile { display: flex; justify-content: center; align-items: center; width: 100%; height: 100svh; padding: 0 8%; text-align: center; background-size: cover; background-position: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text { position: static; max-width: 90%; margin: 0 auto 16px; text-align: center; }
      .hero-ingredientes-banner .hero-mobile .hero-text h1 { font-size: 35px; font-family: 'Canela', serif; }
      .hero-ingredientes-banner .hero-mobile .hero-text p { font-size: 12px; }
      .hero-ingredientes-banner .hero-mobile .btn-unete { position: static; display: inline-flex; margin: 16px auto 0; padding: 12px 80px; font-size: 15px; font-weight: 600; border-radius: 12px; }
      .hero-ingredientes-banner .menu-desktop-comprar { display: none; }
      .hero-ingredientes-banner .hamburger { display: block;  }
      .hero-ingredientes-banner .icons-right .hamburger svg {
    width: 20px;       /* igual que los otros iconos */
    height: 20px;      /* igual que los otros iconos */
    vertical-align: middle; /* ayuda a alinear con los otros elementos */
    display: block;    /* elimina baseline spacing */
  }

    }

    /* Menú móvil */
    .hero-ingredientes-banner .menu-mobile { position: fixed; inset: 0; background: #DEDA76; display: none; flex-direction: column; align-items: center; justify-content: center; z-index: 10000; }
/* Por defecto mostramos solo web */
  .hero-mobile {
    display: none;
  }
        .hero-taw {
          width: 100%;
          height: auto;
          display: flex;
          flex-direction: column;
          margin-bottom: 10rem;
        }
        /* HEADER */
        .header-taw {
          background: rgba(0, 0, 0, 0.2);
          backdrop-filter: blur(0px);
          position: fixed;
          top: 45px;
          left: 0;
          right: 0;
          margin: 0 auto;
          padding: 1rem 2rem;
          z-index: 9999;
          border-radius: 15px;
          width: calc(100% - 60px); /* mantiene márgenes laterales */
          transition: all 0.3s ease;
        }

        .header-inner {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 80px; /* espacio entre logo y menú */
        }

        .logo-taw img{
          height: 30px;
          width: auto;
          display: flex;
          align-items: center;
        }

        /* MENÚ DESKTOP */
        .menu-desktop {
          display: flex;
          gap: 2rem;
          margin-left: 20px;
        }

        .menu-desktop a {
          font-family: 'Aventa', sans-serif;
          color: #fff;
          text-decoration: none;
          font-size: 12px;
          letter-spacing: 1px;
          transition: opacity 0.3s;
        }

        .menu-desktop a:hover {
          opacity: 0.7;
        }

        /* ICONOS DERECHA */
        .icons-right {
          margin-left: auto;
          display: flex;
          align-items: center;
          gap: 1rem;
        }


        .icons-right img {
          width: 22px;
        }

        .hamburger {
          background: none;
          border: none;
          display: none;
        }


      /* HERO */
      .hero-content {
        position: relative;
        width: 100%;
        height: 65vh; /* igual que antes */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0); /* sutil capa oscura */
      }

      .hero-text {
        position: absolute;
        bottom: 15%;
        left: 10%;
        color: #fff;
        max-width: 400px;
        z-index: 2;
      }

      .hero-text h1 {
        font-family: 'Canela', serif;
        font-size: 36px;
        font-weight: 300;
        line-height: 1.2;
        color:#fff;
      }

      .hero-text p {
        font-size: 12px;
        margin-top: 1rem;
        font-weight: 400;
      }

    .btn-unete {
      position: absolute;
      bottom: 10%;
      max-width: 100%;
      right: 20%;
      background: #A46846;
      font-family: 'Aventa', sans-serif;
      color: #DEDA76;
      padding: 0.7rem 5.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-size: 11px;
      z-index: 2;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
       .hero-web {
      display: none;
    }
    .hero-mobile {
      display: block;
      height: 50vh; /* altura personalizada móvil */
      background-size: cover;
      background-position: center;
    }
      .hero-content {
      height: 50vh;
      background-size: cover;
      background-position: center;
      }
      .hero-text {
        bottom: 12%;
        left: 8%;
        max-width: 85%;
      }
      .hero-text h1 {
        font-size: 28px;
      }
      .hero-text p {
        font-size: 11px;
      }
      .btn-unete {
        bottom: 8%;
        right: 8%; /* mantiene el botón a la derecha también en móvil */
        padding: 0.6rem 2.5rem;
        font-size: 10px;
      }
    }

        /* MENU MÓVIL */
        .menu-mobile {
          position: fixed;
          inset: 0;
          background: #DEDA76;
          color: white;
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 10000;
        }

        .menu-mobile nav {
          display: flex;
          flex-direction: column;
          gap: 2rem;
          text-align: center;
        }

        .menu-mobile a {
          font-family: 'Aventa', sans-serif;
          color: #000;
          font-size: 2rem;
          text-decoration: none;
        }

        .menu-footer {
          text-align: center;
          margin-top: 12rem;
        }

        .menu-links {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 9rem; /* 🔥 separa los enlaces */
          flex-wrap: wrap; /* evita que se desborden en pantallas pequeñas */
          margin-bottom: 6rem;
        }

        .menu-links a {
          font-family: 'Aventa', sans-serif;
          color: #000;
          text-decoration: none;
          font-size: 0.9rem;
          letter-spacing: 0.5px;
          transition: opacity 0.3s;
        }

        .menu-links a:hover {
          opacity: 0.7;
        }

        .menu-footer img {
          width: 80%;
          margin: 0 auto;
          display: block;
        }


        .menu-header {
          position: absolute;
          top: 25px;
          left: 0;
          right: 0;
          margin: 0 auto;
          padding: 1rem 5rem;
          display: flex;
          justify-content: space-between; /* logo a la izq, X a la der */
          align-items: center;
          z-index: 10;
        }

        .menu-logo img {
          height: 30px;
          width: auto;
        }

        .close-menu {
          font-size: 1.8rem;
          background: none;
          color: #000;
          border: none;
          cursor: pointer;
        }



        /* RESPONSIVE */
        @media (max-width: 768px) {
          .menu-desktop {
            display: none;
          }
          .hamburger {
            display: block;
          }
          .hero-content {
            grid-template-columns: 1fr;
          }
          .hero-left, .hero-right {
            height: 50vh;
          }
        }

        body.menu-open .icons-right {
          visibility: hidden; /* 🔥 oculta iconos e impide clics */
        }

        body.menu-open .hamburger {
          visibility: hidden;
        }
/* ===========================
   MENÚ UNIVERSAL - ESTILOS
   =========================== */
.menu-universal {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: 'Aventa', sans-serif;
}

/* -------- HEADER -------- */
.menu-universal .menu-header {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 0.2rem;
  z-index: 9999;
  border-radius: 15px;
  width: calc(100% - 20px);
  transition: background 0.2s ease, backdrop-filter 0.2s ease;
}

/* Clase activa con scroll */
.menu-universal .menu-header.scrolled {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}

.menu-universal .menu-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 78px;
}

.menu-universal .menu-logo img {
  height: 20px;
  width: auto;
  display: flex;
  align-items: center;
}

/* -------- MENÚ DESKTOP -------- */
.menu-universal .menu-desktop {
  display: flex;
  gap: 2rem;
  margin-left: 20px;
}

.menu-universal .menu-desktop a {
  color: #F8F8E3;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.menu-universal .menu-desktop a:hover {
  opacity: 0.7;
}

/* -------- ICONOS DERECHA -------- */
.menu-universal .menu-icons-right {
  margin-left: auto;
  margin-right: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-universal .menu-icons-right img {
  width: 20px;
}

.menu-universal .menu-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  margin-top: 5px;
  align-items: center;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 768px) {
  .menu-universal .menu-desktop { display: none; }
  .menu-universal .menu-hamburger { display: block; }
}

/* -------- MENÚ MÓVIL -------- */
.menu-universal .menu-mobile {
  position: fixed;
  inset: 0;
  background: #DEDA76;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.menu-universal .menu-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.menu-universal .menu-mobile a {
  color: #113940;
  font-size: 2rem;
  text-decoration: none;
}

.menu-universal .menu-mobile-footer {
  text-align: center;
  margin-top: 12rem;
}

.menu-universal .menu-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

.menu-universal .menu-links a {
  color: #000;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.menu-universal .menu-mobile-footer img {
  width: 80%;
  margin: 0 auto;
  display: block;
}

.menu-universal .menu-mobile-header {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 1rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.menu-universal .menu-mobile-logo img { height: 30px; width: auto; }

.menu-universal .menu-close {
  font-size: 1.8rem;
  background: none;
  color: #113940;
  border: none;
  cursor: pointer;
}

body.menu-open .menu-universal .menu-icons-right,
body.menu-open .menu-universal .menu-hamburger {
  visibility: hidden;
}