:root{
    --text:#232323;
    --muted:#6f6f6f;
    --border:#e7e7e7;
    --accent:#c18b54;
    --radius:14px;
    --shadow:0 18px 45px rgba(0,0,0,.14);
  }
  
  .container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
  }
  
  /* HEADER */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  
  .header-inner{
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
  }
  
  /* LOGO */
  .logo{
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .logo img{
    max-height: 88px; /* tamaño del logo */
    width: auto;
    height: auto;
    display: block;
  }
  
  /* NAV DESKTOP */
  .nav-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .nav-link{
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--muted);
    transition: background .15s ease, color .15s ease;
  }
  .nav-link:hover,
  .nav-link:focus-visible{
    background: #f4f4f4;
    color: var(--text);
    outline: none;
  }
  
  .nav-link.cta{
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
  }
  .nav-link.cta:hover,
  .nav-link.cta:focus-visible{
    background: #cc9a67;
    color: #fff;
  }
  
  /* BOTÓN HAMBURGUESA */
  .nav-toggle{
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .nav-toggle .bar{
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    display: block;
  }
  
  /* OVERLAY */
  .nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 150;
  }
  
  /* ===== MOBILE ===== */
  @media (max-width: 900px){
    .nav-toggle{
      display: inline-flex;
      flex-direction: column;
    }
  
    /* menú desplegable */
    .nav{
      position: fixed;
      left: 0;
      right: 0;
      top: 110px;                 /* igual a header-inner height */
      background: #fff;
      border-top: 1px solid var(--border);
      box-shadow: var(--shadow);
      z-index: 180;
  
      max-height: 0;              /* cerrado */
      overflow: hidden;
      transition: max-height .35s ease;
    }
  
    .nav-list{
      flex-direction: column;
      padding: 20px;
      gap: 12px;
      text-align: center;
    }
  
    .nav-link{
      justify-content: center;
      padding: 14px 16px;
      font-size: 1.05rem;
    }
  
    /* abierto */
    .site-header.is-open .nav{
      max-height: 75vh;
    }
  
    .site-header.is-open .nav-overlay{
      display: block;
    }
  }

    /* ===== SLIDER ===== */
.slider-section {
    width: 100%;
    padding: 40px 0;
    background: #fff;
  }
  
  .slider {
    position: relative;
    width: min(1200px, 100%);
    margin: auto;
    overflow: hidden;
    border-radius: 18px;
  }
  
  .slider-track {
    display: flex;
    transition: transform 0.6s ease;
  }
  
  .slide {
    min-width: 100%;
    height: 520px;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* Flechas */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 10;
    transition: background .2s ease;
  }
  
  .slider-btn:hover {
    background: rgba(0,0,0,.8);
  }
  
  .slider-btn.prev {
    left: 16px;
  }
  
  .slider-btn.next {
    right: 16px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .slide {
      height: 340px;
    }
  }

  /* =========================
   MESAS DE CENTRO (mc)
   ========================= */
   
.mc{
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 16px;
}

.mc-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.mc-title{
  margin: 0;
  font-size: 1.35rem;
}

.mc-controls{
  display: flex;
  gap: 8px;
}

.mc-arrow{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e7e7e7;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.mc-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 280px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

.mc-track::-webkit-scrollbar{
  height: 10px;
}
.mc-track::-webkit-scrollbar-thumb{
  background: #e7e7e7;
  border-radius: 999px;
}

.mc-card{
  scroll-snap-align: start;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.mc-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.mc-media{
  position: relative;
  display: block;
  height: 170px;
  background: #fafafa;
  overflow: hidden;
}

.mc-media img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* si se te recorta mucho, cambia a contain */
  display: block;
}

.mc-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #c18b54;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
}

.mc-badge--dark{
  background: #111;
}

.mc-body{
  padding: 12px;
}

.mc-name{
  margin: 0 0 6px;
  font-size: 1rem;
}

.mc-desc{
  margin: 0 0 10px;
  color: #6b6b6b;
  font-size: .95rem;
  min-height: 36px;
}

.mc-price{
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.mc-btn{
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.mc-btn:hover{
  filter: brightness(1.05);
}

@media (max-width: 900px){
  .mc-media{ height: 155px; }
  .mc-track{ grid-auto-columns: minmax(210px, 260px); }
}


   /* ===== FOOTER PREMIUM OSCURO ===== */
.footer-premium{
    background: #0f1115;
    color: rgba(255,255,255,.86);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 58px 0 18px;
  }
  
  .footer-premium__container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 38px;
    align-items: start;
  }
  
  .footer-premium__logo{
    margin: 0 0 10px;
    font-size: 1.4rem;
    letter-spacing: .2px;
  }
  
  .footer-premium__desc{
    margin: 0 0 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    max-width: 42ch;
  }
  
  .footer-premium__col h4{
    margin: 0 0 14px;
    font-size: 1.05rem;
    color: rgba(255,255,255,.9);
  }
  
  /* Links */
  .footer-premium__links{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,.68);
    transition: color .18s ease, transform .18s ease;
  }
  
  .footer-link:hover{
    color: #c18b54;
    transform: translateX(2px);
  }
  
  .footer-premium .icon{
    display: inline-flex;
    color: rgba(255,255,255,.75);
  }
  
  /* WhatsApp pill */
  .footer-premium__wa{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.88);
    width: fit-content;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }
  
  .footer-premium__wa:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.09);
    border-color: rgba(193,139,84,.35);
  }
  
  /* Bottom line */
  .footer-premium__bottom{
    width: min(1200px, calc(100% - 40px));
    margin: 34px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.55);
    font-size: .92rem;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .footer-premium__container{
      grid-template-columns: 1fr;
      gap: 26px;
    }
    .footer-premium__bottom{
      justify-content: flex-start;
      text-align: left;
    }
  }

  .whatsapp-float{
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0,0,0,.3);
    z-index: 999;
    transition: transform .2s ease;
  }
  
  .whatsapp-float:hover{
    transform: scale(1.05);
  }
  