:root {
    --beige: #f7f2ec;
    --marron-suave: #a47148;
    --gris-claro: #dedede;
    --blanco: #ffffff;
    --negro-suave: #222;
  }

  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--beige);
    color: var(--negro-suave);
  }

  header {
    background-color: var(--blanco);
    padding: 1rem 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--marron-suave);
    letter-spacing: 1px;
  }
    /* NAVBAR INICIALMENTE INVISIBLE */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      backdrop-filter: blur(10px);
      background-color: rgba(255, 255, 255, 0.3);
      padding: 0.7rem 2rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.4s ease-in-out;
      z-index: 999;
    }

    .navbar.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .logo {
      height: 50px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    .navbar {
        position: fixed;
        top: 0;
        width: auto ;
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.3);
        padding: 0.7rem 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s ease-in-out;
        z-index: 999;
      }
      
      .navbar.visible {
        opacity: 1;
        transform: translateY(0);
      }
      
    .nav-links a:hover {
      color: var(--marron-suave);
    }
    .info-bar {
        margin-left: 2rem;
        font-size: 0.85rem;
        color: var(--marron-suave);
        font-weight: 500;
        white-space: nowrap;
      }

      /* ======================== */
/* 🌱 MOBILE: NAV + INFO  */
/* ======================== */
@media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 0.8rem 1rem;
      gap: 0.8rem;
    }
  
    .nav-links {
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.95rem;
    }
  
    .info-bar {

      width: 50%;
      text-align: center;
      font-size: 0.85rem;
      padding: 0.4rem 0.8rem;
      border-radius: 6px;
    }
    .carrito-modal form {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
      }
      
      .carrito-modal input,
      .carrito-modal select {
        padding: 0.5rem;
        border-radius: 4px;
        border: 1px solid #ccc;
        font-size: 0.9rem;
      }
      
      .carrito-modal .boton-whatsapp {
        background-color: #25D366;
        color: white;
        padding: 0.6rem 1rem;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        margin-top: 0.5rem;
        transition: background 0.3s;
      }
      
      .carrito-modal .boton-whatsapp:hover {
        background-color: #1ebe5d;
      }
      
      .carrito-modal .error {
        color: red;
        font-size: 0.85rem;
      }
      
      .info-pago {
        font-size: 0.85rem;
        background: #f7f7f7;
        padding: 0.6rem;
        border-radius: 6px;
      }
      .carrito-modal {
        max-height: 90vh;
        overflow-y: auto;
        padding-right: 1rem; /* margen para que no se corte el scroll */
      }
      
  }

  .boton-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .boton-whatsapp:hover {
    background-color: #1ebe5b;
    transform: translateY(-2px);
  }
  
  .icono-wa {
    width: 20px;
    height: 20px;
  }
  
  @media (max-width: 768px) {
    .hero {
      position: relative;
      min-height: 100vh;
      padding: 0;
      overflow: hidden;
    }
  
    .hero-video {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 80%;
      z-index: 1;
    }
  
    .hero-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .hero-logo {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }
  
    .hero-logo img {
      max-width: 70%;
      padding: 1rem 2rem;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(6px);
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
  }
  











  /* Preloader general */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fffdfb;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
  }
  
  /* Estructura de farola */
  .farola {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #fefefe;
    border: 8px solid #d1c7ba;
    box-shadow: 0 0 20px rgba(255, 230, 200, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: titilar 1.5s infinite ease-in-out;
  }
  
  /* Logo */
  .farola img {
    width: 80%;
    height: auto;
  }
  
  /* Efecto de parpadeo de la luz */
  @keyframes titilar {
    0%, 100% {
      box-shadow: 0 0 15px rgba(255, 230, 200, 0.4);
      background-color: #fefefe;
    }
    50% {
      box-shadow: 0 0 25px rgba(255, 200, 100, 0.7);
      background-color: #fff8e0;
    }
  }
  
























    /* HERO */
    .hero {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      min-height: 100vh;
      background-color: var(--beige);
      padding: 4rem 1rem;
      
    }

      .hero-logo {
          margin-top: 2rem;
          text-align: center;
        }
        .hero-logo img {
          max-width: 280px;
          width: 80%;
          filter: drop-shadow(0 2px 10px rgba(0,0,0,0.1));
        }
         
        .hero-video {
          max-width: 1000px;
          width: 100%;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
  
  footer {
    background-color: var(--marron-suave);
    color: var(--blanco);
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
  }

  footer p {
    margin: 0.5rem 0;
  }


  .nosotros {
background-color: var(--blanco);
padding: 4rem 2rem;
}

.nosotros-content {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
max-width: 1200px;
margin: auto;
gap: 3rem;
}

.nosotros .text {
flex: 1;
min-width: 280px;
}

.nosotros .text h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
color: var(--marron-suave);
margin-bottom: 1rem;
}

.nosotros .text p {
font-size: 1.1rem;
line-height: 1.8;
color: #444;
}

.nosotros .img {
flex: 1;
min-width: 280px;
}

.nosotros .img img {
width: 100%;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.carta {
padding: 4rem 2rem;
background-color: var(--beige);
text-align: center;
}

.carta h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--marron-suave);
margin-bottom: 2rem;
}

.filtros {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2rem;
}

.filtro {
background-color: transparent;
border: 2px solid var(--marron-suave);
color: var(--marron-suave);
padding: 0.5rem 1.2rem;
font-weight: 500;
border-radius: 20px;
cursor: pointer;
transition: all 0.3s ease;
}

.filtro.active,
.filtro:hover {
background-color: var(--marron-suave);
color: white;
}

.crear-pedido-sticky {
position: fixed;
bottom: 20px;
right: 20px;
background-color: var(--marron-suave);
color: white;
border: none;
padding: 0.8rem 1.6rem;
font-size: 1rem;
font-weight: 600;
border-radius: 30px;
cursor: pointer;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
z-index: 1000;
transition: background 0.3s;
}

.crear-pedido-sticky:hover {
background-color: #8a5a38;
}













/* ===================== */
/* PRESENTACIÓN DE CARTA */
/* ===================== */

.presentacion-carta {
    padding: 4rem 2rem;
    background-color: var(--beige);
  }
  
  .presentacion-carta .contenido {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .presentacion-carta .texto {
    flex: 1;
    min-width: 280px;
  }
  
  .presentacion-carta .texto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--marron-suave);
    margin-bottom: 1rem;
  }
  
  .presentacion-carta .texto p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .presentacion-carta .imagen {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .presentacion-carta .imagen img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* =============== */
  /* MODAL DE CARTA */
  /* =============== */
  
  .modal-reserva {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }
  
  .modal-contenido {
    background: var(--blanco);
    padding: 2rem;
    border-radius: 12px;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  
  .modal-reserva.hidden {
    display: none;
  }
  
  .cerrar-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .cerrar-modal:hover {
    color: var(--marron-suave);
  }
  
  /* Transición opcional */
  .modal-reserva.fade-in {
    animation: fadeInModal 0.3s ease-in-out;
  }
  
  @keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .presentacion-carta .contenido {
      flex-direction: column;
      text-align: center;
    }
  
    .presentacion-carta .texto h2 {
      font-size: 2rem;
    }
  
    .modal-contenido {
      padding: 1.5rem;
    }
  }

  

  

/* ========================== */
/* VERSIÓN DESKTOP ELEGANTE */
/* ========================== */
@media (min-width: 768px) {
.productos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.producto {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.producto .img-contenedor {
  width: 40%;
  margin-bottom: 0;
}

.producto .desc {
  width: 60%;
  text-align: left;
}

.pedido-extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle-desc {
    display: none;
    }
}


.productos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }
  
  .producto {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fffaf6;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    max-width: 400px;
    width: 100%;
  }
  
  .producto .img-contenedor {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .producto img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: auto;
  }
  
  .producto .desc {
    text-align: center;
  }
  
  .producto .desc h3 {
    font-size: 1rem;
    color: var(--marron-suave);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
  }
  
  .producto .desc p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
  }
  
  .pedido-extra {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .pedido-extra .precio {
    font-weight: bold;
    color: var(--marron-suave);
  }
  
  .pedido-extra .agregar {
    background-color: var(--marron-suave);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .pedido-extra .agregar:hover {
    background-color: #8a5a38;
  }
  
  @media (min-width: 768px) {
    .productos {
      grid-template-columns: 1fr 1fr;
    }
  
    .producto {
      flex-direction: row;
      max-width: 100%;
      gap: 1rem;
      align-items: flex-start;
    }
  
    .producto .img-contenedor {
      width: 0%;
    }
  
    .producto .desc {
      width: 60%;
      text-align: left;
    }
  
    .pedido-extra {
      justify-content: flex-start;
      gap: 1rem;
    }
  }
  @media (min-width: 768px) {
    .productos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  
    .producto {
      flex-direction: row;
      align-items: center;
      gap: 1.5rem;
      max-width: 90%;
    }
  
    .producto .img-contenedor {
      width: 180px;
      flex-shrink: 0;
    }
  
    .producto .img-contenedor img {
      width: 40%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      display: block;
    }
  
    .producto .desc {
      flex: 1;
      text-align: left;
    }
  
    .pedido-extra {
      justify-content: flex-start;
      gap: 1rem;
    }
  }
  
  
  @media (max-width: 767px) {
    .productos {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
  
    .producto {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0.8rem;
      border-radius: 10px;
      background: white;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      max-width: 100%;
    }
  
    .producto .img-contenedor {
      flex: 0 0 60px;
      height: 60px;
      margin-right: 1rem;
    }
  
    .producto .img-contenedor img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
    }
  
    .producto .desc {
      flex: 1;
      text-align: left;
    }
  
    .producto .desc h3 {
      margin: 0;
      font-size: 1rem;
      color: var(--marron-suave);
      font-family: 'Playfair Display', serif;
    }
  
    .producto .desc p {
      margin: 0.3rem 0 0;
      font-size: 0.8rem;
      color: #555;
    }
  
    .pedido-extra {
      flex-direction: column;
      align-items: flex-end;
      gap: 0.3rem;
      margin-top: 0;
    }
  
    .pedido-extra .precio {
      font-size: 0.9rem;
      font-weight: bold;
      color: var(--marron-suave);
    }
  
    .pedido-extra .agregar {
      padding: 0.3rem 0.8rem;
      font-size: 0.85rem;
      border-radius: 8px;
    }
  
    .toggle-desc {
      display: none !important;
    }
  }
  
  @media (max-width: 768px) {
    .carrito {
      display: none !important;
    }
  
    .btn-ver-carrito {
      position: fixed;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--marron-suave);
      color: white;
      border: none;
      border-radius: 40px;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      font-weight: bold;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      cursor: pointer;
      z-index: 1000;
    }
  
    .carrito-modal {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: white;
      z-index: 9999;
      overflow-y: auto;
      padding: 2rem 1.5rem;
      display: none;
      flex-direction: column;
    }
  
    .carrito-modal.visible {
      display: flex;
    }
  
    .cerrar-carrito {
      align-self: flex-end;
      background: none;
      border: none;
      font-size: 2rem;
      color: #999;
      cursor: pointer;
    }
  
    .carrito-modal h4 {
      margin-top: 0;
      color: var(--marron-suave);
      text-align: center;
    }
    .volver-carta {
        margin-top: 1.5rem;
        background-color: #eee;
        border: none;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        border-radius: 8px;
        color: var(--marron-suave);
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }
      
      .volver-carta:hover {
        background-color: #e0d6d1;
      }
      .btn-ver-carrito {
        display: none;
      }
      
    
    
      #enviar-pedido-modal {
        display: block;
        margin-top: 2rem;
        background-color: #25D366; /* color oficial de WhatsApp */
        color: white;
        text-decoration: none;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 14px rgba(0,0,0,0.1);
        transition: background-color 0.3s, transform 0.2s;
      }
      
      #enviar-pedido-modal:hover {
        background-color: #1ebe5b;
        transform: translateY(-2px);
      }
  }






  

.carrito {
position: fixed;
bottom: 100px;
right: 20px;
width: 260px;
background: white;
border: 1px solid #ddd;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
padding: 1rem;
font-size: 0.9rem;
z-index: 1000;
}

.carrito h4 {
margin: 0 0 0.5rem;
color: var(--marron-suave);
}

.carrito ul {
list-style: none;
padding: 0;
margin: 0;
}

.carrito li {
display: flex;
justify-content: space-between;
margin-bottom: 0.4rem;
}

#enviar-pedido {
display: inline-block;
margin-top: 0.5rem;
background: var(--marron-suave);
color: white;
text-decoration: none;
padding: 0.4rem 0.8rem;
border-radius: 8px;
}
.hidden {
display: none !important;
}
.carrito.hidden .vacio {
text-align: center;
color: #999;
font-style: italic;
}

.fade-out {
opacity: 0;
transition: opacity 0.4s ease-out;
}
.imagen-modal {
position: fixed;
top: 0; left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.75);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}

.imagen-modal img {
max-width: 90%;
max-height: 90%;
border-radius: 12px;
box-shadow: 0 4px 30px rgba(0,0,0,0.5);
animation: fadeZoom 0.3s ease-in-out;
}

.cerrar-modal {
position: absolute;
top: 30px;
right: 40px;
font-size: 2rem;
color: white;
cursor: pointer;
z-index: 10000;
}

@keyframes fadeZoom {
from {
  opacity: 0;
  transform: scale(0.95);
}
to {
  opacity: 1;
  transform: scale(1);
}
}
.ver-mas-btn {
display: block;
margin: 2rem auto 0;
background-color: transparent;
border: none;
color: var(--marron-suave);
font-size: 1.2rem;
cursor: pointer;
transition: color 0.3s;
}

.ver-mas-btn:hover {
color: #8a5a38;
}
.carrito {
position: fixed;
bottom: 100px;
right: 20px;
width: 280px;
background: white;
border: 1px solid #ddd;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
padding: 1rem;
font-size: 0.9rem;
z-index: 1000;
opacity: 1;
transition: opacity 0.4s ease;
}

.carrito.hidden {
display: none !important;
}

.carrito h4 {
margin: 0 0 0.5rem;
color: var(--marron-suave);
}

.carrito ul {
list-style: none;
padding: 0;
margin: 0;
}

.carrito li {
display: flex;
justify-content: space-between;
margin-bottom: 0.4rem;
}

.carrito .vacio {
text-align: center;
color: #999;
font-style: italic;
}

#form-pedido {
margin-top: 1rem;
font-size: 0.85rem;
}

#form-pedido input,
#form-pedido select {
width: 100%;
padding: 0.4rem;
margin-top: 0.3rem;
border: 1px solid #ccc;
border-radius: 6px;
}

.info-extra {
background: #f7f2ec;
border: 1px dashed #a47148;
padding: 0.7rem;
margin-top: 1rem;
border-radius: 8px;
font-size: 0.85rem;
}

#enviar-pedido {
display: inline-block;
margin-top: 1rem;
background: var(--marron-suave);
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 8px;
text-align: center;
width: 100%;
}
#mensaje-error {
color: #a94442;
background: #fdecea;
border: 1px solid #f5c6cb;
padding: 0.5rem;
border-radius: 8px;
margin-top: 1rem;
display: none;
font-size: 0.85rem;
}







.galeria {
padding: 5rem 0;
}

.masonry {
column-count: 3;
column-gap: 1rem;
}

.masonry img {
width: 100%;
height: auto;
margin-bottom: 1rem;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
break-inside: avoid;
cursor: zoom-in;
}

.masonry img:hover {
transform: scale(1.02);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
.masonry {
  column-count: 2;
}
}

@media (max-width: 600px) {
.masonry {
  column-count: 1;
}
}











.reserva-bloque {
text-align: center;
margin: 3rem 0;
}

.btn-reserva {
background-color: var(--marron-suave);
color: white;
padding: 0.8rem 2rem;
border: none;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
}

.modal-reserva {
position: fixed;
top: 0; left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 10000;
}

.modal-contenido {
background: white;
padding: 2rem;
border-radius: 12px;
max-width: 400px;
width: 90%;
position: relative;
text-align: left;
}

.cerrar-modal {
position: absolute;
top: 1rem;
right: 1rem;
font-size: 1.4rem;
cursor: pointer;
color: #888;
}

.tabs {
display: flex;
justify-content: space-around;
margin-bottom: 1rem;
}

.tab {
flex: 1;
padding: 0.5rem;
background: #eee;
border: none;
cursor: pointer;
}

.tab.activo {
background: var(--marron-suave);
color: white;
font-weight: bold;
}

.formulario-tab {
display: none;
}

.formulario-tab.visible {
display: block;
}

.formulario-tab input,
.formulario-tab select {
width: 100%;
padding: 0.5rem;
margin-top: 0.3rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 6px;
}


















.footer-chocolatta {
    background-color: var(--marron-suave);
    color: var(--blanco);
    text-align: center;
    padding: 2.5rem 1rem;
    margin-top: 4rem;
    font-size: 0.95rem;
  }
  
  .footer-chocolatta a {
    color: var(--blanco);
    text-decoration: underline;
    font-size: 0.9rem;
  }
  
  .footer-contenido {
    max-width: 1000px;
    margin: auto;
  }
  
  .footer-botones {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .btn-footer {
    background-color: #8a5a38;
    color: var(--marron-suave);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-footer:hover {
    background-color: #361700;
  }

  /* BOTÓN TOP - STICKY DERECHA */
.btn-sticky-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--marron-suave);
    color: white;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.3s;
  }
  
  .btn-sticky-top:hover {
    background-color: #8a5a38;
  }
  
  /* BOTONES REDES - STICKY IZQUIERDA */
  .btn-sticky-redes {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
  }
  
  .btn-red {
    background-color: #8a5a38;
    border-radius: 50%;
    padding: 8px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
  }
  
  .btn-red:hover {
    transform: scale(1.1);
  }
  
  .btn-red img {
    width: 30px;
    height: 30px;
  }
  .btn-sticky-top.visible {
    opacity: 1;
    pointer-events: all;
  }


  @media (min-width: 769px) {
    #abrir-carrito,
    #modal-carrito {
      display: none !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }
  }
 









  body {
  padding-left: 10vw;
  padding-right: 10vw;
  }
  
  @media (max-width: 768px) {
  body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
    
  }
  html {
    scroll-behavior: smooth;
  }
  
  
  
  
  