:root{
  /* === Base clara cálida === */
  --bg:#f7f5f2;          /* fondo general */
  --bg2:#efece7;         /* leve degradado */

 

  
  /* Superficies */
  --card:#ffffff;
  --card2:#ffffff;

  /* Texto */
  --txt:#2b2b2b;
  --muted:#070707;

  /* Líneas */
  --line: rgba(0,0,0,.08);

  /* Acentos gastronómicos */
  --primary:#c65d3a;     /* terracota */
  --primary2:#e07a55;    /* terracota claro */
  --olive:#5a6b4f;       /* oliva elegante */

  /* Glows suaves */
  --navyGlow: rgba(198,93,58,.08);

  --radius:18px;

   --topbar-h: 56px; 
  /* Sombras claras */
  --shadow: 0 20px 50px rgba(0,0,0,.12);
  --shadowSoft: 0 12px 32px rgba(0,0,0,.10);

  --goldRing: rgba(198,93,58,.28);
  --goldGlow: 0 0 0 1px rgba(198,93,58,.18),
              0 22px 70px rgba(198,93,58,.14);
}


*{box-sizing:border-box}
html{
  scroll-behavior: smooth;
  height: auto;
}

body{
  margin:0;
  min-height:100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  background-color:#f2f3f5;
  background-image: linear-gradient(
    to bottom,
    rgba(15,23,42,0.50),
    rgba(15,23,42,0.50)
  ), url("../multimedia/gris1500.webp");

  background-repeat: repeat;
  background-size:  auto;     /* probá 600–900 */
  background-position: 0 0;

  background-attachment: scroll;
}


a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1140px, 92%); margin:0 auto; }
.restaurante{color: white;}
.muted{color:var(--muted)}
.note{margin-top:14px}
.accent{
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ===== Common ===== */
.card{
  background: linear-gradient(180deg, var(--card2), var(--card));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  position: relative;
  overflow: hidden;
}

/* inner hairline */
.card::after{
  content:"";
  position:absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(255,255,255,.06);
  pointer-events:none;
}

.pill{
  display:inline-flex; align-items:center; 
  padding: 6px 10px;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 800;
  font-size: 34px;
}
 


.header{
  position:fixed;  z-index:55; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(6,10,20,.62);
  backdrop-filter: blur(14px);
}

.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand{display:flex; gap:12px; align-items:center}
.brand__logo{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(215,177,90,.26), rgba(243,220,155,.12));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(215,177,90,.10);
}
.brand__text strong{display:block; font-size: 15px; letter-spacing: .2px}
.brand__sub{display:block; font-size: 12px; color:white}

.nav{display:flex; gap:18px; align-items:center}
.nav__link{
  color: rgba(245,247,255,.80);
  font-weight: 900;
  font-size:14px;
}
.nav__link:hover{color: var(--txt)}

/* ===== Buttons (premium, less flashy) ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border: 1px solid rgba(202, 189, 189, 0.986);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  cursor:pointer;
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
  transition: transform .12s ease, filter .12s ease, border-color .12s ease, box-shadow .12s ease;
  position: relative;
  overflow: hidden;
}
.btn--ghost{background: white;}
.btn--menu{background-color: rgb(17, 133, 241);
display:inline-flex; align-items:center; justify-content:center;
  border: 1px solid rgba(202, 189, 189, 0.986);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  cursor:pointer;
 color: #070707;
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
  transition: transform .12s ease, filter .12s ease, border-color .12s ease, box-shadow .12s ease;
  position: relative;
  overflow: hidden;}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 24px 80px rgba(0,0,0,.52);
}
.btn:active{transform: translateY(0)}

.btn--primary{
  border-color: rgba(38, 233, 20, 0.55);
  background: linear-gradient(135deg, rgba(79, 224, 66, 0.55), rgb(19, 175, 5));
  box-shadow: 0 18px 70px rgba(215,177,90,.12), 0 22px 80px rgba(0,0,0,.55);
}
.btn--primary:hover{
  border-color: rgba(243,220,155,.72);
  box-shadow: 0 24px 90px rgba(215,177,90,.16), 0 26px 90px rgba(0,0,0,.58);
}

/* subtle sheen */
.btn--primary::before{
  content:"";
  position:absolute;
  top:-60%;
  left:-70%;
  width: 60%;
  height: 200%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  opacity: 0;
  transition: opacity .18s ease, left .45s ease;
  pointer-events:none;
}
.btn--primary:hover::before{opacity:.8; left:130%}

.btn--soft{background: rgba(255,255,255,.05)}
.btn--mini{
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 13px;
}

/* ===== Burger / Mobile nav ===== */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px; height:2px;
  margin: 5px auto;
  background: rgba(245,247,255,.85);
  border-radius: 999px;
}

.mnav{
  display: none;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 12px 0 18px;
  
  text-align: center;
}
.mnav__link{
  display:block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 900;
  
}
.mnav__link:hover{color: var(--txt)}

/* ===== Hero ===== */

/* =========================
   HERO (video de fondo) - Mobile first
========================= */
.hero{
  position: relative;
  min-height: 100vh;
 height: 90vh;
  overflow: hidden;
  
  padding-left: 0;
  
}

/* capa visual atrás */
.hero__visual{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width:100%; height:100%;
  background:  rgba(109, 113, 124, 0.747);
}

/* video como background */
.hero__video{
  position:absolute;
  width: 100%;
  height: 100%;
  inset:0;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
transform: translateY(-8%);
  filter: brightness(.55) contrast(1.1) saturate(1.05);
  transform: scale(1.03);
}



/* contenido arriba */
.hero__grid{
  position: relative;
  z-index: 2;
 

  display: grid;
  place-items: center;
padding-top: 120px; /* ajustá 110–140 según tu topbar */
  padding-left: 16px;
  padding-right: 16px;
  /* 👇 evita que el header sticky te lo tape */
  padding: 92px 0 56px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroContentFade 1.2s ease-out forwards;
  animation-delay: 4s; /* ⏱️ aparece a los 4 segundos */


}
@keyframes heroContentFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__content{
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  color: #fff;
}

.hero__copy{padding: 10px 0}

.hero h1{color: white;
  margin:0;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -.7px;
  text-shadow: 0 14px 50px rgba(0,0,0,.55);
}
.hero__lead{
  margin: 14px 0 18px;
  color: white;
  font-size: 16px;
  line-height: 1.6;
  max-width: 54ch;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}

/* badges */
.hero__badges{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  z-index: 5;
}
.badge{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.05);
  display:flex; gap:12px; align-items:center;
  box-shadow: 0 18px 60px rgba(0,0,0,.36);
  z-index: 5;
}
.badge__icon{
  width:38px; height:38px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(215,177,90,.14);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(215,177,90,.08);
  z-index: 5;
}
.badge strong{display:block; font-size:14px;
z-index: 5;}
.badge .muted{font-size:12px;
z-index: 5;}

/* hero media */
/*
.hero__media{
  position:relative;
  overflow:hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.hero__media::before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(circle at 30% 20%, rgba(215,177,90,.18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(90,140,255,.10), transparent 60%);
  filter: blur(12px);
  opacity: .7;
  pointer-events:none;
}
.hero__media img{
  width:100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.06);
  transform: scale(1.02);
}
*/

.hero__float{
  position:absolute;
  left: 14px;
  bottom: 14px;
  color: white;
  display:flex; align-items:center; gap:12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(6,10,20,.60);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 80px rgba(0,0,0,.55);
  z-index: 5;
}
.hero__floatIcon{
  width:40px; height:40px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(215,177,90,.16);
  border: 1px solid rgba(255,255,255,.12);
  z-index: 5;
}

/* ANIMACIÓN DE TEXTO DEL HERO */
.hero__copy > * {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeIn 0.9s ease-out forwards;
}

/* delays escalonados */
.hero__copy h1 {
  animation-delay: 4s;
}

.hero__lead {
  animation-delay: 4.2s;
}

.hero__cta {
  animation-delay: 4.4s;
}
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== Sections ===== */
h2{color: white;}
.section{padding: 34px 0;
background: transparent;}
.section--alt{
  background: transparent;
}
.section__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 14px;
  margin-bottom: 16px;
  background: transparent;
  
}
.section__subtitle{margin: 6px 0 0; color: white}

/* menu tools */
.menuTools{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* chips */
.chips{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: white;
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 900;
  font-size: 13px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
}
.chip:hover{transform: translateY(-1px)}
.chip.is-active{
  color: white;
  border-color: rgba(215,177,90,.55);
  background: rgba(215,177,90,.14);
  box-shadow: 0 20px 70px rgba(215,177,90,.10);
}

/* search */
.search{
  display:flex; align-items:center; gap:10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.search input{
  border:0; outline:0;
  background: transparent;
  color: var(--txt);
  width: 240px;
  font-weight: 800;
}
.search input::placeholder{color: rgba(245,247,255,.55)}

/* grids */
.grid{display:grid; gap: 14px}
.itemGrid{grid-template-columns: repeat(4, minmax(0, 1fr))}

/* ===== Menu cards (pro hover) ===== */

.itemCard{
  overflow:hidden;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
  position: relative;
}
.itemCard:hover{
  transform: translateY(-3px);
  border-color: rgba(215,177,90,.28);
  box-shadow: var(--goldGlow), var(--shadow);
}
.itemCard:hover::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: var(--radius);
  border: 1px solid rgba(215,177,90,.18);
  pointer-events:none;
}

.itemCard__media{
  position: relative;
  height: 200px;
  overflow: hidden;
  background:
    radial-gradient(440px 280px at 30% 10%, rgba(215,177,90,.18), transparent 55%),
    radial-gradient(360px 240px at 80% 40%, rgba(90,140,255,.10), transparent 60%),
    rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.12);
  cursor:pointer;
}

/* EL CONTENEDOR DE LA IMAGEN */
.itemCard__media .itemIcon{
  position:absolute;
  inset:0;              /* top:0 right:0 bottom:0 left:0 */
  display:block;
}


.itemCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* rellena sin deformar */
  display: block;
}

.itemCard__media::after{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(circle at 50% 30%, rgba(215,177,90,.18), transparent 55%);
  filter: blur(12px);
  opacity: .6;
  pointer-events:none;
}
.itemIcon{
  font-size: 40px;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.35));
}
.itemCard__body{padding: 12px 12px 14px}
.itemCard__body h3{margin: 0 0 6px; font-size: 15px}
.itemCard__foot{
  margin-top: 10px;
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
}
.price{font-weight: 950}
.price--big{font-size: 20px}


/* ====== GALERÍA: carrusel full-bleed ====== */
/* === FULL BLEED real === */
/* Full-bleed estable */

.gCarousel--full{
  width: 100vw;      /* 🔥 ancho total */
  height: 90vh;      /* 🔥 alto pedido */
   position: relative;
  z-index: 1;
  overflow: visible;
   background: #2b2e34;
  
  max-width: 100dvw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* clave: NO uses left/right acá */
  position: relative;
  left: auto;
  right: auto;
  transform: none;
}
#galeria .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* evita scroll raro por box-model */
.gCarousel--full *{
  box-sizing: border-box;
}


/* si algún estilo te lo limita */
.gCarousel--full,
.gCarousel--full .gCarousel__viewport{
  max-width: none !important;
}

/* sacar límites del container */
#galeria .gCarousel{
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}


/* viewport ocupa 90% de la pantalla */
.gCarousel__viewport{
  width: 100%;
  height: 100%;
  overflow: hidden;
}




/* track */
.gCarousel__track{
  display: flex;
  height: 100% ;
 transition: transform 0.6s ease;
}

/* slide ocupa 1 pantalla */
.gSlide{
 min-width: 100%;
  height: 100%;
  
  margin: 0;
}

/* imagen full y responsive */
.gSlide img{
   width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#galeria.section{
  padding-left: 0;
  padding-right: 0;
}

html, body{
  overflow-x: hidden;
}
.gCarousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
   background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 26px;
  cursor: pointer;

  display: grid;
  place-items: center;
}

.gCarousel__dots{
  position:absolute;
   left:50%; 
   bottom:20px; 
   transform:translateX(-50%);
  z-index:10; 
  display:flex; 
  gap:8px;
}


.gDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.gDot.is-active {
  background: #f4c430;
}

.gCarousel__btn--prev{ left: 48px; }
.gCarousel__btn--next{ right: 48px; }



/* por si el body mete margen */
body{ margin: 0; }


/*Testimonios y reseñas*/
.reviews-demo{
  padding: 72px 0;
  background: transparent;
}

.reviews-demo__head{
  text-align: center;
  margin-bottom: 36px;
}

.reviews-demo__subtitle{
  color: white;
  font-size: 0.95rem;
}

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

.review-card{
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.08);
  position: relative;
}

.review-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  color: #555;
}

.review-text{
  font-size: 0.95rem;
  margin: 22px 0 14px;
  line-height: 1.5;
  
}

.review-meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color:gray;
}

.review-stars{
  color: #f5b301;
  letter-spacing: 1px;
}

.reviews-demo__notice{
  margin-top: 40px;
  text-align: center;
  padding: 18px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  color: white;
}

.reviews-demo__btn{
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}


/* ===== Contact ===== */
.reserped{color: black;}
.contact{
  padding: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.contact__rows{display:grid; gap: 12px; margin: 16px 0}
.row{display:flex; gap: 12px; align-items:flex-start}
.row__icon{
  width:40px; height:40px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(215,177,90,.14);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 70px rgba(215,177,90,.08);
}
.contact__cta{display:flex; gap:12px; flex-wrap:wrap}

.mapMock{
  height: 100%;
  min-height: 260px;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,.18);
  background:
    radial-gradient(520px 300px at 20% 20%, rgba(215,177,90,.12), transparent 60%),
    rgba(255,255,255,.03);
}

/* ===== Footer ===== */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 24px;
  margin-top: auto;
  width: 100%;
  background: #555;
}
.footer__inner{
  display:flex;
  justify-content: flex-start;
  gap: 30px;
  align-items:center;
  flex-wrap:wrap;
}

/* ===== WhatsApp floating ===== */
 .wafloat{
  position:fixed;
  right:18px;
  bottom:18px;
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  background:#25d366;
  border-radius:50%;
  z-index:9999;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

.logredes{width: 40px;
height: 40px;
}

/* ====== PEDIDOSYA BUTTON ====== */

.btn--py {
  --py: #e00034;          /* rojo PedidosYa */
  --py-dark: #b8002a;

  background: linear-gradient(180deg, var(--py), var(--py-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(224, 0, 52, .35);
  font-style: italic;
}

.btn--py {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.2rem;   /* ← clave */
  line-height: 1;
  white-space: nowrap;
}


/* active */
.btn--py:active{
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255,45,85,.25);
}

/* ===== Modal / Lightbox ===== */
.modal,
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 80;
}
.modal__backdrop,
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(2px);
}

.modal__panel{
  position: relative;
  width: min(860px, 92%);
  margin: 7vh auto 0;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(215,177,90,.22);
  background: rgba(10,18,36,.92);
  box-shadow: 0 28px 100px rgba(215,177,90,.10), var(--shadow);
  display:grid;
  grid-template-columns: 1fr 1fr;
}
.modal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: white;
  cursor:pointer;
  z-index: 2;
}

.muted{color: black;}
.mited{color: white;}
.modal__media{
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.10);
}
.modal__media img{
  width:100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.modal__content{padding: 18px}
.modal__content h3{margin: 0 0 8px; font-size: 20px}
.modal__foot{
  margin-top: 14px;
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 14px;
}

.lightbox__panel{
  position: relative;
  width: min(920px, 92%);
  margin: 7vh auto 0;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(215,177,90,.22);
  background: rgba(10,18,36,.92);
  box-shadow: 0 28px 100px rgba(215,177,90,.10), var(--shadow);
}
.lightbox__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--txt);
  cursor:pointer;
}
.lightbox__panel img{
  width:100%;
  max-height: 70vh;
  object-fit: contain;
  background: rgba(0,0,0,.25);
}
.lightbox__panel figcaption{padding: 12px 14px}

/* ✅ Tarjeta que entra desde el costado */
.side-card{
  position: fixed;
  right: 18px;
  top: 96px;
  z-index: 9999;

  width: min(340px, calc(100vw - 36px));
  padding: 14px 16px;

  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);

  box-shadow: 0 14px 40px rgba(0,0,0,.18);

  transform: translateX(130%);
  opacity: 0;
  pointer-events: none;

  transition: transform .8s ease, opacity .8s ease;
}

.side-card__title{
  margin: 0 0 6px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

.side-card__text{
  margin: 0;
  font-size: .95rem;
  line-height: 1.35;
  color: rgba(17,17,17,.82);
}

/* ✅ Estado visible (entra despacio desde la derecha) */
.side-card.is-show{
  transform: translateX(0);
  opacity: 1;
}

/* ✅ Estado salida (baja opacidad y se va) */
.side-card.is-hide{
  transform: translateX(130%);
  opacity: 0;
}



/* Opcional: en pantallas muy chicas que no tape tanto */
@media (max-width: 420px){
  .side-card{ top: 76px; right: 12px; }
}


/* ===== Responsive ===== */
@media (max-width: 980px){
  
  .hero__grid{grid-template-columns: 1fr;}
  .hero__media img{min-height: 280px}
  .itemGrid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .gallery{grid-template-columns: repeat(2, minmax(0,1fr))}
  .contact{grid-template-columns: 1fr}
  .search input{width: 200px}
  
  .hero{ height: 88vh; }
}
@media (max-width: 680px){
  .nav{display:none}
  .burger{display:block}
  .mnav.is-open{display:block}
  .hero__badges{grid-template-columns: 1fr}
  .itemGrid{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .modal__panel{grid-template-columns: 1fr}
  .modal__media{border-right:0; border-bottom: 1px solid rgba(255,255,255,.10)}
  .search input{width: 160px}
  .gCarousel--full {
    height: 70vh;
  }
}


.modal__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

/* =========================
   FIX TOPBAR HEIGHT (Responsive)
========================= */

/* altura base (desktop) */
:root{
  --topbar-h: 48px;
}





/* Evitar que el texto haga 2 líneas */
.topbar__left{
  flex-wrap: nowrap;          /* clave */
  min-width: 0;
}
.topbar__left > *{
  min-width: 0;
}

/* Si hay texto largo: que no rompa, que recorte */
.topbar__link,
.topbar .muted{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Mobile: topbar más baja todavía ===== */
@media (max-width: 767px){
  :root{ --topbar-h: 40px; }

  .topbar__inner{
    justify-content: center;
    gap: 8px;
  }

  /* si usás pill en la topbar, achicala en mobile */
  .topbar .pill{
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1;
  }
}


@media (max-width: 767px){
  .topbar__right,
  .topbar .muted{ display:none; }

  .topbar__inner{
    justify-content: center;
    padding: 6px 12px;
  }

  .topbar__left{ white-space: nowrap; }
  .hero__grid{
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (min-width: 768px){
  .hero{
    padding-left: 6%;             /* recién acá */
  }
  .hero__grid{
    padding: 110px 0 70px;        /* vuelve “limpio” */
  }
  .hero__lead{
    font-size: 17px;
  }
  .hero__video{
    object-position: 50% 15%;
    transform: translateY(-6%) scale(1.03);
  }
  
}
/* hide arrows on very small? keep but a bit smaller */
@media (max-width: 640px){
  .gSlide img{
    height: 58vh;          /* se ve grande y wow */
    max-height: 520px;
  }
  .gCarousel__btn--prev{ left: 8px; }
  .gCarousel__btn--next{ right: 8px; }
}

/* ===== Contact map responsive (fix) ===== */
.contact__map{
  min-width: 0; /* clave para que el grid no desborde */
}

.mapEmbed{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

/* altura cómoda en desktop */
.mapEmbed iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* en mobile: más bajo y prolijo */
@media (max-width: 680px){
  .contact{
    padding: 16px;
  }

  .contact__cta{
    flex-direction: column;
    align-items: stretch;
  }

  .contact__cta .btn{
    width: 100%;
  }

  .mapEmbed iframe{
    height: 260px;
  }
    .hero__grid{
    padding: 96px 20px 64px;
  }
  .hero__lead{
    font-size: 16.5px;
  }
}

