/* =========================
   GENERAL
========================= */

.restaurant-section{
padding:70px 0;
background:#f5f5f5;
}

.restaurant-card{
background:#fff;
border-radius:35px;
padding:25px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
overflow:hidden;
}

.restaurant-content{
display:flex;
flex-direction:column;
gap:15px;
}



/* =========================
   BANNER
========================= */

.restaurant-banner{
margin-bottom:40px;
}

.restaurant-banner img{
width:100%;
border-radius:28px;
display:block;
}

/* =========================
   INFO
========================= */

.restaurant-info{
padding-right:15px;
}

.restaurant-badge{
display:inline-flex;
align-items:center;
gap:8px;
background:#264653;
color:#fff;
padding:10px 18px;
border-radius:50px;
font-size:.85rem;
font-weight:600;
margin-bottom:18px;
}

.restaurant-title{
font-size:2.5rem;
font-weight:800;
color:#17384d;
margin-bottom:10px;
}

.restaurant-subtitle{
font-size:1rem;
font-weight:700;
color:#264653;
margin-bottom:25px;
}

.restaurant-description p{
color:#555;
line-height:1.9;
margin-bottom:18px;
}

.section-title h3{
   font-weight: 700;
   color: #264653;
}
/* =========================
   FEATURES
========================= */

.restaurant-features{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:25px;
}

.restaurant-features span{
background:#f3f3f3;
padding:12px 18px;
border-radius:50px;
font-size:.9rem;
font-weight:600;
display:flex;
align-items:center;
gap:8px;
}

.restaurant-actions-modern{
display:flex;
justify-content:center;
align-items:center;
gap:15px;

width:100%;
margin-top:50px;

flex-wrap:nowrap;
}

/* =========================
   GALERÍA
========================= */

.gallery-wrapper{
position:relative;
}

.col-lg-7 .restaurant-actions-modern{
width:100%;
}

.gallery-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
position:relative;
}

.gallery-item{
height:200px;
border-radius:25px;
overflow:hidden;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* CENTRO */

.gallery-center{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:220px;
height:220px;

/* FONDO NEGRO CON OPACIDAD */

background:rgba(0,0,0,.55);

backdrop-filter:blur(10px);
border-radius:30px;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

padding:20px;

box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:5;

border:1px solid rgba(255,255,255,.15);
}

/* TEXTO */

.gallery-center span{
font-size:.75rem;
font-weight:700;
letter-spacing:3px;
color:#fff;
opacity:.8;
}

.gallery-center h3{
font-size:2rem;
font-weight:800;
color:#fff;
margin:5px 0;
}

.gallery-center p{
font-size:.9rem;
line-height:1.6;
color:#fff;
opacity:.9;
}

/* =========================
   PLATILLOS ESPECIALES
========================= */

.special-dishes{
margin-top:70px;
}

.section-title{
text-align:center;
margin-bottom:10px;
}

.mini-subtitle{
display:inline-block;
font-size:.8rem;
font-weight:700;
letter-spacing:3px;
color:#888;
margin-bottom:10px;
}

.section-title h3{
font-size:2.5rem;
font-weight:800;
color:#17384d;
margin-bottom:12px;
}

.section-title p{
color:#777;
font-size:1rem;
}

/* GRID */

.dishes-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
}

/* CARD */

.dish-card-modern{
position:relative;
height:340px;
border-radius:30px;
overflow:hidden;
cursor:pointer;
transition:.45s;
box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.dish-card-modern:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* IMAGEN */

.dish-card-modern img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.dish-card-modern:hover img{
transform:scale(1.08);
}

/* OSCURECER */

.dish-overlay{
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,.78),
rgba(0,0,0,.15),
transparent
);
}

/* ETIQUETA */

.dish-badge{
position:absolute;
top:18px;
right:18px;
background:rgba(0, 0, 0, 0.273);
backdrop-filter:blur(10px);
padding:8px 15px;
border-radius:50px;
font-size:.75rem;
font-weight:700;
color:#fff;
border:1px solid rgba(255,255,255,.25);
}

/* CONTENIDO */

.dish-content{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:25px;
z-index:2;
}

.dish-content h5{
font-size:1.4rem;
font-weight:800;
color:#fff;
margin-bottom:6px;
}

.dish-content span{
font-size:.92rem;
color:rgba(255,255,255,.85);
line-height:1.5;
}

/* =========================
   MODAL
========================= */

.gallery-modal{
position:fixed;
inset:0;
background:rgba(0,0,0,.9);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.gallery-modal img{
max-width:90%;
max-height:90vh;
border-radius:25px;
}

.close-gallery{
position:absolute;
top:20px;
right:40px;
font-size:3rem;
color:#fff;
cursor:pointer;
}

/* ===============================
   ESCALA GLOBAL (COMO 90% ZOOM)
   =============================== */

body{
  zoom: 0.9;
}

/* En celulares mejor no reducir tanto */
@media (max-width: 768px){
  body{
    zoom: 1;
  }
}

/* =========================
   BOTONES BASE
========================= */

.action-pill {
  display:flex;
  align-items:center;
  gap:8px;

  padding:15px 28px;
  border-radius:40px;

  background:#fff;
  border:1px solid rgba(40,40,40,0.20);

  color:#666;
  text-decoration:none;

  font-weight:600;
  font-size:14px;

  box-shadow:0 4px 12px rgba(0,0,0,0.07);

  transition:all .25s ease;
}

/* HOVER BONITO */
.action-pill:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:0 10px 22px rgba(0,0,0,0.15);
}

.action-pill i{
  font-size:16px;
}

/* ICONOS */
.menus-btn i{ color:#d93025 !important; }
.pedidos-btn i{ color:#25d366 !important; }
.ubicacion-btn i{ color:#1a73e8 !important; }

/* =========================
   HOVER (LEVITAR)
========================= */

.action-pill,
.action-pill:focus,
.action-pill:active,
.action-pill:focus-visible {
  background: #fff !important;
  color: #444 !important;
  outline: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07) !important;
}

/* QUITA GRIS EN CLICK MÓVIL */
.action-pill {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

@media (min-width: 769px){

    .mobile-buttons{
        display: none !important;
    }

}


.hero-pulquerias{
    position: relative;
    overflow: hidden;

    border-radius: 35px;

    margin: 40px auto;

    box-shadow:
        0 10px 25px rgba(0,0,0,.10),
        0 25px 60px rgba(0,0,0,.20);
}

