  /* =======================
     ESTILO GENERAL (PDF)
  ======================= */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  body {
    background: #F4F1EA;
    color: #2b2b2b;
    overflow-x: hidden;
  }

  section {
    padding: 40px 0px;
  }

  h2 {
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: #034A26;
    font-size: 60px;
    font-weight: bold;
  }

  p {
    text-align: center;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
  }

  img {
    width: 100%;
  }

  /*Social network*/
  .socials {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    margin: 5px 0px;
    text-align: center;
  }

  .separator {
    height: 1px;
    background-color: gray;
  }

  .social-item {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 0px;
  }

  .social-item span {
    color: red;
  }

  .social-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1;
    padding-left: 24px;
  }

  .social-item:nth-child(2) {
    background-color: #000;
    grid-column: 5;
    grid-row: 1;
  }

  .social-item img {
    width: 30px;
  }

  /* =======================
     CAROUSEL HEADER FULL WIDTH
  ======================= */
  .carousel {
      position: relative;
      width: 100vw;          /* ancho total de la ventana */
      margin: 0;
      padding: 0;
      overflow: hidden;
  }

  .carousel-track {
      display: flex;
      width: 100%;
  }

  .carousel-slide {
      min-width: 100%;
  }

  .carousel-slide img {
      width: 100%;
      height: 60vh;          /* altura tipo banner */
      object-fit: cover;
      display: block;
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    font-size: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }

  .carousel-arrow:hover {
      background: rgba(0,0,0,0.7);
  }

  /* Izquierda y derecha */
  .carousel-arrow.left {
      left: 20px;
  }

  .carousel-arrow.right {
      right: 20px;
  }

  /* =======================
     HEADER
  ======================= */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F4F1EA;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .logo img {
    width: 130px;
  }

  .hamburger {
    font-size: 30px;
    cursor: pointer;
    border: 0;
    background-color: #F4F1EA;
  }

  /* =======================
     MENÚ
  ======================= */
  nav {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100vh;
    background: #1f5e37;
    color: #fff;
    padding: 70px 30px;
    transition: all .4s ease;
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    list-style: none;
  }

  nav li {
    font-size: 22px;
    margin: 20px 0;
    text-transform: uppercase;
  }

  /* =======================
     MENÚ RESPONSIVO PREMIUM
  ======================= */
  /* Overlay con blur */
  #menuOverlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
  }

  #menuOverlay.active {
      opacity: 1;
      pointer-events: all;
  }

  /* Botón cerrar */
  .menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: #fff;
      font-size: 34px;
      cursor: pointer;
  }

  /* Links */
  #menu ul {
      list-style: none;
      padding: 0 35px;
  }

  #menu ul li {
      opacity: 0;
      transform: translateX(30px);
      animation: none;
  }

  #menu.active ul li {
      animation: linkFade 0.45s ease forwards;
  }

  /* Animación escalonada */
  #menu.active ul li:nth-child(1) { animation-delay: 0.1s; }
  #menu.active ul li:nth-child(2) { animation-delay: 0.2s; }
  #menu.active ul li:nth-child(3) { animation-delay: 0.3s; }
  #menu.active ul li:nth-child(4) { animation-delay: 0.4s; }
  #menu.active ul li:nth-child(5) { animation-delay: 0.5s; }
  #menu.active ul li:nth-child(6) { animation-delay: 0.6s; }

  @keyframes linkFade {
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  #menu ul li a {
      display: block;
      padding: 12px 0;
      font-size: 22px;
      color: #fff;
      text-decoration: none;
      position: relative;
  }

  /* Estado activo */
  #menu ul li a.active::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 40px;
      height: 3px;
      background: #fff;
      border-radius: 3px;
  }


  /* =======================
     SLIDER MEJORADO
  ======================= */
  .slides img {
    height: 280px;
    object-fit: cover;
  }

  @keyframes slide {
    0% {transform: translateX(0);}
    30% {transform: translateX(0);}
    35% {transform: translateX(-100%);}
    65% {transform: translateX(-100%);}
    70% {transform: translateX(-200%);}
    100% {transform: translateX(-200%);}
  }

  /* =======================
     CAFÉ CAROUSEL (PDF)
  ======================= */
  /* Wrapper NO recorta */
  .cafe-wrapper {
      position: relative;
      max-width: 420px;
      margin: auto;
      margin-bottom: 100px;
  }

  /* Área visible SOLO para slides */
  .cafe-carousel {
      overflow: hidden;
  }

  /* TRACK */
  .cafe-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
  }

  /* SLIDE */
  .cafe-slide {
      min-width: 100%;
      flex-shrink: 0;
      text-align: center;
      background-color: white;
  }

  /* Flechas visibles */
  .cafe-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 30;
      background: #111;
      color: #fff;
      border: none;
      font-size: 32px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Fuera del recuadro */
  .cafe-arrow.left {
      left: -70px;
  }

  .cafe-arrow.right {
      right: -70px;
  }

  /* =======================
     JUGOS ACORDEÓN
  ======================= */
  #jugos {
    padding-left: 20px;
    padding-right: 20px;
  }


  .jugos-accordion {
    max-width: 900px;
    margin: auto;
  }

  .jugo-item {
    border-bottom: 1px solid #ddd;
  }

  .jugo-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .jugo-header:hover, .jugo-header:focus{
    background: #799B3C;
    color: #fff;
  }

  .jugo-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    background-color: #799B3C;
  }

  .jugo-content p {
    text-align: left;
    margin: 15px 0;
    color: #fff;
    font-size: 20px;
  }

  .jugo-content img {
    border-radius: 10px;
    margin-bottom: 15px;
  }

  /* Activo */
  .jugo-item.active .jugo-content {
    max-height: 600px;
  }

  .jugo-item.active .icon {
    transform: rotate(45deg);
  }

  .jugos-image {
    display: none;
  }

  /* Icono */
  .icon {
    font-size: 26px;
    transition: transform 0.3s ease;
  }

  /* =======================
     PROMOCIONES (PDF STYLE)
  ======================= */
  .promo-row {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    animation: fadeUp 0.8s ease;
  }

  .promo-row img {
    width: 100%;
  }

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

/* =======================
   BEBIDAS – RESPONSIVE
======================= */
  #bebidas {
    margin-bottom: 0px;
  }

  .bebidas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: auto;
  }

  .bebidas-lista {
    display: none;
  }

  .bebida-item {
    background: #E6E3DA;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
  }

  .pedidos {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    color: #fff;
  }

  .direccion {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
  }

  .copyright {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    color: #fff;
  }

  /* =======================
     MAPA
  ======================= */
  iframe {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    margin: 0 auto; /* centrar */
  }

  /* =======================
     WHATSAPP
  ======================= */
  .whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 26px;
    z-index: 1000;
  }

  .whatsapp img {
    width: 28px;
    height: 28px;
    display: block;
  }

  #somos {
    margin-bottom: 30px;
    padding: 8px;
  }

  #somos p {
    font-size: 20px;
    text-align: justify;
  }

  #somos p span {
    font-weight: 900;
  }

    /* =======================
  CONTACTO
  ======================= */
  #contacto {
    padding: 40px 20px;
    background-color: #799B3C;
  }

  /* Mobile default */
  .contacto-layout {
    display: flex;
    flex-direction: column;
  }

  .contacto-mapa {
    width: 100%;
    margin: 0 auto;
  }

  .contacto-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contacto-logo img {
    transform: scale(0.6);
  }

  .contacto-copy {
    order: 99;
    margin-top: 30px;
    text-align: center;
    font-size: 28px;
    color: #666;
  }

  #contacto h2,
  #contacto p {
    color: #ffffff;
  }

  .contacto-telefono {
    font-size: 48px;
    font-weight: bolder;
  }

  .contacto-direccion {
    font-size: 20px;
  }

  #cocktel {
    margin: 0px;
    padding: 0px;
    overflow: hidden;
  }

  #cocktel img {
    width: 200%;
    margin: 0px;
    padding: 0px;
  }

  .cocktel-ingredientes {
    background-color: #000;
    color: #fff;
    padding: 0px;
    margin: -6px 0px 0px 0px;
    padding-bottom: 40px;
  }

  .cocktel-ingredientes ul {
    width: 180px;
    max-width: 280px;
    margin: 0px auto;
    font-size: 24px;
  }

  .cocktel-ingredientes ul li {
    display: block !important;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  .bebidas-section{
    padding:60px 20px;
    max-width:1200px;
    margin:auto;
  }

.titulo{
  text-align:center;
  font-size:32px;
  margin-bottom:40px;
}

.categoria{
  margin-bottom:50px;
}

.categoria h3{
  margin-bottom:20px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

/* Estado inicial (oculto) */
.card{
  opacity:0;
  transform:translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.3s ease;
}

/* Cuando entra en pantalla */
.card.show{
  opacity:1;
  transform:translateY(0);
}

/* Hover suave */
.card:hover{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.card-batido img {
  width:100%;
  height:580px;
  object-fit:cover;
}

.card p{
  padding:15px;
  text-align:center;
  font-weight:600;
}

.bebidas-title {
  color: #799B3C;
  font-weight: bolder;
}

.jugo-content ul {
  color: #fff;
  margin: 0px 0px 0px 20px;
}