:root {
  --fire-yellow:  #FFD000;
  --fire-orange:  #FF6A00;
  --fire-red:     #E8211A;
  --dark-bg:      #0E0C0A;
  --dark-card:    #1A1612;
  --dark-surface: #231E18;
  --text-primary: #F5EFE6;
  --text-muted:   #9A8B78;
  --accent:       #FF6A00;
  --border:       rgba(255,106,0,0.18);
  --glow:         rgba(255,106,0,0.35);
  --font-display: "Bebas Neue", sans-serif;
  --font-heading: "Syne", sans-serif;
  --font-body:    "DM Sans", sans-serif;
  --nav-h: 70px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--dark-bg); color: var(--text-primary); font-family: var(--font-body); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

.container { width: min(90%, 1200px); margin: 0 auto; }

.section-tag {
  font-family: var(--font-heading); font-weight: 700; font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--fire-orange);
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--fire-orange), var(--fire-yellow)); border-radius: 99px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: .04em; line-height: 1;
  background: linear-gradient(135deg, var(--fire-yellow) 0%, var(--fire-orange) 55%, var(--fire-red) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); display: flex; align-items: center; padding: 0 1.5rem;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  background: rgba(14,12,10,.92); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px); box-shadow: 0 2px 32px rgba(0,0,0,.5);
}
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-size: 1.55rem; letter-spacing: .06em; color: var(--fire-yellow); }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 8px var(--glow)); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-family: var(--font-heading); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--fire-orange); transition: width var(--transition); }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; align-items: center; gap: .2rem; background: var(--dark-surface); border: 1px solid var(--border); border-radius: 99px; padding: .2rem .35rem; font-family: var(--font-heading); font-size: .72rem; font-weight: 700; }
.lang-btn { cursor: pointer; padding: .22rem .52rem; border-radius: 99px; color: var(--text-muted); transition: all var(--transition); letter-spacing: .08em; }
.lang-btn.active { background: linear-gradient(135deg, var(--fire-orange), var(--fire-red)); color: #fff; }
.nav-cta { background: linear-gradient(135deg, var(--fire-orange), var(--fire-red)); color: #fff !important; font-family: var(--font-heading); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: .55rem 1.2rem; border-radius: 99px; transition: transform var(--transition), box-shadow var(--transition); white-space: nowrap; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,106,0,.45); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(14,12,10,.97); backdrop-filter: blur(20px); z-index: 899; padding: 2rem 1.5rem; border-bottom: 1px solid var(--border); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-nav a { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; transition: color var(--transition); }
.mobile-nav a:hover { color: var(--fire-orange); }

/* HERO */
#hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transform: scale(1.08); animation: heroZoom 12s ease-out forwards; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,12,10,.97) 0%, rgba(14,12,10,.6) 45%, rgba(14,12,10,.3) 100%),
              linear-gradient(120deg, rgba(232,33,26,.1) 0%, transparent 50%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes fadeIn { to { opacity: 1; } }
.hero-content { position: relative; z-index: 2; width: 100%; padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem; max-width: 1200px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,106,0,.12); border: 1px solid rgba(255,106,0,.3); border-radius: 99px; padding: .35rem .9rem; font-family: var(--font-heading); font-weight: 600; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--fire-orange); margin-bottom: 1.4rem; opacity: 0; animation: slideUp .6s .2s forwards; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fire-orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
.hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 14vw, 8.5rem); line-height: .92; letter-spacing: .02em; margin-bottom: 1.2rem; opacity: 0; animation: slideUp .7s .35s forwards; }
.hero-title .line-orange { background: linear-gradient(90deg, var(--fire-yellow), var(--fire-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.hero-title .line-white { display: block; color: var(--text-primary); }
.hero-desc { max-width: 480px; font-size: clamp(.88rem, 2vw, 1rem); color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; opacity: 0; animation: slideUp .7s .5s forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; opacity: 0; animation: slideUp .7s .65s forwards; }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.btn-primary { display: inline-flex; align-items: center; gap: .55rem; background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-red) 100%); color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; padding: .9rem 2rem; border-radius: 99px; border: none; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); box-shadow: 0 4px 24px rgba(255,106,0,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,106,0,.55); }
.btn-secondary { display: inline-flex; align-items: center; gap: .55rem; background: transparent; color: var(--text-primary); font-family: var(--font-heading); font-weight: 600; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; padding: .9rem 1.8rem; border-radius: 99px; border: 1px solid rgba(255,255,255,.2); cursor: pointer; transition: all var(--transition); }
.btn-secondary:hover { border-color: var(--fire-orange); color: var(--fire-orange); background: rgba(255,106,0,.08); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; opacity: 0; animation: slideUp .7s .8s forwards; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; background: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.hero-stat-label { font-size: .75rem; color: var(--text-muted); font-family: var(--font-heading); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.scroll-indicator { position: absolute; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--text-muted); font-family: var(--font-heading); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; opacity: 0; animation: fadeIn .7s 1.2s forwards; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--fire-orange), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: .6; } 50% { transform: scaleY(1.3); opacity: 1; } }

/* NOSOTROS */
#nosotros { padding: 7rem 0; position: relative; overflow: hidden; }
#nosotros::before { content: "BUFFALO"; position: absolute; font-family: var(--font-display); font-size: 18vw; color: rgba(255,106,0,.03); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; letter-spacing: .1em; }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.nosotros-images { position: relative; height: 520px; }
.nosotros-img-main { position: absolute; width: 72%; height: 85%; object-fit: cover; border-radius: var(--radius); top: 0; left: 0; box-shadow: 0 24px 60px rgba(0,0,0,.6); }
.nosotros-img-secondary { position: absolute; width: 52%; height: 55%; object-fit: cover; border-radius: var(--radius); bottom: 0; right: 0; box-shadow: 0 16px 40px rgba(0,0,0,.6); border: 3px solid var(--dark-bg); }
.nosotros-badge-float { position: absolute; top: 38%; right: 3%; background: linear-gradient(135deg, var(--fire-orange), var(--fire-red)); border-radius: var(--radius-sm); padding: 1rem 1.2rem; text-align: center; box-shadow: 0 12px 36px rgba(255,106,0,.4); z-index: 2; }
.nosotros-badge-float .num { font-family: var(--font-display); font-size: 2.2rem; color: #fff; line-height: 1; }
.nosotros-badge-float .label { font-family: var(--font-heading); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.nosotros-text { display: flex; flex-direction: column; gap: 1.4rem; }
.nosotros-description { color: var(--text-muted); line-height: 1.85; font-size: .96rem; }
.features-list { display: flex; flex-direction: column; gap: .85rem; margin-top: .5rem; }
.feature-item { display: flex; align-items: center; gap: .8rem; font-family: var(--font-heading); font-weight: 600; font-size: .88rem; }
.feature-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,106,0,.12); border: 1px solid rgba(255,106,0,.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* GALERÍA */
#galeria { padding: 5rem 0; background: var(--dark-card); }
.galeria-header { text-align: center; margin-bottom: 3rem; }

.gal-item { overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s ease; filter: brightness(.9); }
.gal-item:hover img { transform: scale(1.08); filter: brightness(1.05); }



/* ESPECIALIDADES */
#especialidades { padding: 7rem 0; background: var(--dark-bg); position: relative; }
.esp-header { text-align: center; margin-bottom: 4rem; }
.esp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.esp-card { background: var(--dark-surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); cursor: default; }
.esp-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,106,0,.35); border-color: rgba(255,106,0,.35); }
.esp-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.esp-card:hover .esp-card-img { transform: scale(1.06); }
.esp-card-body { padding: 1.4rem; }
.esp-card-tag { font-family: var(--font-heading); font-weight: 700; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--fire-orange); margin-bottom: .4rem; }
.esp-card-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; margin-bottom: .5rem; }
.esp-card-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* PROMO */
#promo { padding: 5rem 0; background: var(--dark-card); }
.promo-inner { background: linear-gradient(135deg, rgba(255,106,0,.12), rgba(232,33,26,.08)); border: 1px solid rgba(255,106,0,.25); border-radius: 24px; padding: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.promo-inner::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,106,0,.15) 0%, transparent 70%); right: -100px; top: -100px; pointer-events: none; }
.promo-days { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 3rem); background: linear-gradient(90deg, var(--fire-yellow), var(--fire-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: .5rem; letter-spacing: .04em; }
.promo-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; margin-bottom: 1rem; }
.promo-items { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.promo-items li { display: flex; align-items: center; gap: .7rem; font-size: .9rem; color: var(--text-muted); }
.promo-items li::before { content: "→"; color: var(--fire-orange); font-weight: 700; }
.promo-price-side { text-align: center; position: relative; z-index: 1; }
.promo-price-label { font-family: var(--font-heading); font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .5rem; }
.promo-price-num { font-family: var(--font-display); font-size: clamp(4.5rem, 12vw, 7rem); line-height: 1; background: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange), var(--fire-red)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 20px rgba(255,106,0,.4)); }
.promo-price-suffix { font-family: var(--font-display); font-size: 2.5rem; color: var(--fire-orange); vertical-align: super; }
.promo-note { font-size: .8rem; color: var(--text-muted); margin-top: .4rem; }

/* RESEÑAS */
#resenas { padding: 7rem 0; background: var(--dark-bg); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 4rem; }























/* HORARIO */
#horario { padding: 7rem 0; background: var(--dark-card); }
.horario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.horario-text { display: flex; flex-direction: column; gap: 1rem; }
.schedule-table { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.schedule-row { display: flex; justify-content: space-between; align-items: center; padding: .85rem 1.2rem; background: var(--dark-surface); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: border-color var(--transition); }
.schedule-row.today { background: rgba(255,106,0,.1); border-color: rgba(255,106,0,.35); }
.schedule-row:hover { border-color: rgba(255,106,0,.25); }
.schedule-day { font-family: var(--font-heading); font-weight: 700; font-size: .88rem; color: var(--text-primary); }
.schedule-row.today .schedule-day { color: var(--fire-orange); }
.schedule-time { font-family: var(--font-heading); font-weight: 600; font-size: .82rem; color: var(--text-muted); }
.schedule-row.today .schedule-time { color: var(--fire-yellow); }
.today-badge { font-family: var(--font-heading); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--fire-orange); background: rgba(255,106,0,.15); padding: .2rem .55rem; border-radius: 99px; }
.horario-visual { background: var(--dark-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; text-align: center; position: relative; overflow: hidden; }
.horario-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(255,106,0,.08), transparent 70%); pointer-events: none; }
.horario-visual img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 1.5rem; }
.horario-open-label { font-family: var(--font-display); font-size: 2rem; letter-spacing: .08em; color: var(--fire-yellow); margin-bottom: .4rem; }
.horario-open-time { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; background: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.horario-sub { font-size: .84rem; color: var(--text-muted); margin-top: .8rem; }
.services-badges { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.5rem; }
.service-badge { display: flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 99px; padding: .35rem .9rem; font-family: var(--font-heading); font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: var(--text-muted); }

/* RESERVAS */
#reservas { padding: 7rem 0; background: var(--dark-bg); text-align: center; }
.reservas-inner { max-width: 640px; margin: 0 auto; }
.reservas-inner p { color: var(--text-muted); font-size: .96rem; line-height: 1.8; margin-top: 1rem; margin-bottom: 2.5rem; }
.reservas-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.phone-big { font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 4rem); letter-spacing: .06em; background: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin: 1.5rem auto; transition: filter var(--transition); cursor: pointer; }
.phone-big:hover { filter: drop-shadow(0 0 20px rgba(255,160,0,.6)); }

/* UBICACION */
#ubicacion { padding: 7rem 0; background: var(--dark-card); }
.ubicacion-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.ubicacion-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,106,0,.1); border: 1px solid rgba(255,106,0,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.contact-label { font-family: var(--font-heading); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--fire-orange); margin-bottom: .2rem; }
.contact-value { font-size: .92rem; color: var(--text-muted); line-height: 1.5; }
.contact-value a { color: var(--text-primary); transition: color var(--transition); }
.contact-value a:hover { color: var(--fire-orange); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 16px 48px rgba(0,0,0,.5); aspect-ratio: 16/10; background: var(--dark-surface); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%) brightness(.85); }

/* FOOTER */
footer { background: var(--dark-card); border-top: 1px solid var(--border); padding: 3.5rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.footer-brand { display: flex; flex-direction: column; gap: .8rem; }
.footer-logo { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--fire-yellow); }
.footer-logo img { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; }
.footer-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.75; }
.social-links { display: flex; gap: .7rem; margin-top: .3rem; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: var(--dark-surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .95rem; transition: all var(--transition); }
.social-link:hover { background: var(--fire-orange); border-color: var(--fire-orange); transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-heading); font-weight: 800; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .84rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--fire-orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .78rem; color: var(--text-muted); }
.footer-rating { display: flex; align-items: center; gap: .5rem; font-family: var(--font-heading); font-size: .78rem; color: var(--text-muted); }
.footer-rating .stars-small { display: flex; gap: .15rem; font-size: .7rem; color: var(--fire-yellow); }

/* FLOATING */
.float-group { position: fixed; bottom: 1.8rem; right: 1.5rem; z-index: 800; display: flex; flex-direction: column; gap: .7rem; align-items: center; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border: none; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); text-decoration: none; }
.float-btn:hover { transform: scale(1.12) translateY(-2px); }
.float-up { background: var(--dark-surface); border: 1px solid var(--border); color: var(--text-primary); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition); }
.float-up.visible { opacity: 1; pointer-events: all; }
.float-up:hover { box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.float-phone { background: linear-gradient(135deg, var(--fire-orange), var(--fire-red)); color: #fff; box-shadow: 0 8px 28px rgba(255,106,0,.5); animation: phoneGlow 3s infinite; }
@keyframes phoneGlow { 0%,100% { box-shadow: 0 8px 28px rgba(255,106,0,.5); } 50% { box-shadow: 0 8px 40px rgba(255,106,0,.8); } }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 24px 80px rgba(0,0,0,.8); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-close:hover { background: var(--fire-orange); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nosotros-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nosotros-images { height: 360px; }
  .horario-grid { grid-template-columns: 1fr; }
  .ubicacion-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .promo-inner { grid-template-columns: 1fr; text-align: center; }
  .promo-items li { justify-content: center; }
  /* 2-col grid on tablet */
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .esp-card-feature { grid-template-columns: 1fr; }
  .esp-card-feature-img { height: 260px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nosotros-images { height: 300px; }
  .nosotros-img-main { width: 68%; height: 80%; }
  .nosotros-img-secondary { width: 50%; height: 50%; }
  /* Map aspect ratio on mobile */
  .map-wrapper { aspect-ratio: 4/3; }
  /* Galeria 2-col on mobile */
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  /* Promo price smaller */
  .promo-price-num { font-size: clamp(3.5rem, 12vw, 7rem); }
  /* Hero stats spacing */
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.8rem; }
  /* Schedule row */
  .schedule-row { padding: .65rem .9rem; }
  .schedule-time { font-size: .75rem; }
  /* Horario visual */
  .horario-visual { padding: 1.5rem 1rem; }
  .horario-open-time { font-size: clamp(1.8rem, 8vw, 3.5rem) !important; }
  /* Phone big */
  .phone-big { font-size: clamp(1.8rem, 7vw, 4rem); }
  /* Reservas buttons stack */
  .reservas-btns { flex-direction: column; align-items: center; }
  .reservas-btns a { width: 100%; max-width: 300px; justify-content: center; }
  /* Esp grid stay 2-col on 768 */
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  /* Feature card stacks */
  .esp-card-feature { grid-template-columns: 1fr; }
  .esp-card-feature-img { height: 220px; }
  /* Postre full width on mobile */
  /* Status widget */
  .status-widget { padding: .85rem 1rem; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
  .promo-inner { padding: 1.5rem; }
  /* 1-col on small phones */
  .esp-grid { grid-template-columns: 1fr; }
  .esp-card-feature { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  /* Footer logo */
  .footer-logo { font-size: 1.2rem; }
  /* Nav logo */
  .nav-logo span { font-size: 1.1rem; }
  /* Section titles */
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  /* Schedule table readable */
  .schedule-day { font-size: .8rem; }
  .schedule-time { font-size: .72rem; }
  .today-badge { font-size: .58rem; }
  /* Horario open time big display */
  .horario-open-time { font-size: clamp(1.5rem, 9vw, 2.5rem) !important; word-break: break-word; }
  /* Phone display */
  .phone-big { font-size: clamp(1.5rem, 8vw, 3rem); }
  /* Contact items readable */
  .contact-value { font-size: .82rem; }
  /* Postre centered */
  /* Scroll reveal elements - ensure visible */
  .rc-rail-wrap { padding-bottom: 1rem; }
}

body::after { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); opacity: .022; pointer-events: none; z-index: 9999; }

/* CARTA MODAL */
.carta-modal { display:none; position:fixed; inset:0; z-index:9500; background:rgba(0,0,0,.95); align-items:center; justify-content:center; backdrop-filter:blur(8px); flex-direction:column; gap:1rem; }
.carta-modal.open { display:flex; }
.carta-modal-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.8);
  cursor: zoom-in;
  transition: transform .25s ease;
  transform-origin: 50% 50%;
  user-select: none;
  -webkit-user-select: none;
}
.carta-modal-img.zoomed {
  cursor: zoom-out;
}
.carta-modal-close { position:absolute; top:1.2rem; right:1.2rem; width:44px; height:44px; border-radius:50%; background:rgba(255,106,0,.2); border:1px solid rgba(255,106,0,.5); color:var(--text-primary); font-size:1.3rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all var(--transition); z-index:1; }
.carta-modal-close:hover { background:var(--fire-orange); }
.carta-hint { font-family:var(--font-heading); font-size:.72rem; color:var(--text-muted); letter-spacing:.1em; text-transform:uppercase; }
.btn-carta { display:inline-flex; align-items:center; gap:.6rem; background:transparent; color:var(--text-primary); font-family:var(--font-heading); font-weight:700; font-size:.88rem; letter-spacing:.1em; text-transform:uppercase; padding:.9rem 2rem; border-radius:99px; border:2px solid var(--fire-orange); cursor:pointer; transition:all var(--transition); margin-top:2.5rem; }
.btn-carta:hover { background:var(--fire-orange); color:#fff; transform:translateY(-2px); box-shadow:0 8px 28px rgba(255,106,0,.4); }


/* ESP GRID 3x2 + centered card */
.esp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.esp-card-feature { background:linear-gradient(135deg,rgba(255,106,0,.1),rgba(14,12,10,.3)); border:1px solid rgba(255,106,0,.3); border-radius:var(--radius); overflow:hidden; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:0; margin-top:1.5rem; transition:transform var(--transition),box-shadow var(--transition); }
.esp-card-feature:hover { transform:translateY(-6px); box-shadow:0 24px 60px rgba(0,0,0,.5),0 0 0 1px rgba(255,106,0,.4); }
.esp-card-feature-img { height:280px; object-fit:cover; width:100%; }
.esp-card-feature-body { padding:2rem; }
.esp-card-feature-body .esp-card-tag { margin-bottom:.6rem; }
.esp-card-feature-body .esp-card-name { font-size:1.4rem; margin-bottom:.8rem; }
.esp-card-feature-body .esp-card-desc { font-size:.9rem; line-height:1.75; color:var(--text-muted); }
@media(max-width:1024px){ .esp-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .esp-grid { grid-template-columns:1fr; } .esp-card-feature { grid-template-columns:1fr; } .esp-card-feature-img { height:220px; } }





.review-stars img.twemoji { height: 1em; width: 1em; }
.stars img.twemoji { height: 1.1em; width: 1.1em; }


/* ── GALLERY: perfect 3×2 equal grid ── */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 12px;
}
.gal-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.88);
  display: block;
}
.gal-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.05);
}
@media (max-width: 900px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 240px);
  }
}
@media (max-width: 500px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 180px);
  }
}


/* ── ESPECIALIDADES: 3-col grid + feature card ── */
.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.esp-card-feature {
  background: linear-gradient(135deg, rgba(255,106,0,.08), rgba(14,12,10,.5));
  border: 1px solid rgba(255,106,0,.3);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.esp-card-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,106,0,.4);
}
.esp-card-feature-img {
  height: 320px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}
.esp-card-feature-body {
  padding: 2.5rem;
}
.esp-card-feature-body .esp-card-tag { margin-bottom: .6rem; }
.esp-card-feature-body .esp-card-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.esp-card-feature-body .esp-card-desc {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-muted);
}
@media (max-width: 1024px) {
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .esp-card-feature { grid-template-columns: 1fr; }
  .esp-card-feature-img { height: 260px; }
}
@media (max-width: 600px) {
  .esp-grid { grid-template-columns: 1fr; }
  .esp-card-feature-img { height: 220px; }
}





/* Instagram logo */
.ig-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.social-link .ig-logo {
  width: 22px;
  height: 22px;
}


/* ── FIX: prevent horizontal scroll on mobile (safe method) ── */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
  width: 100%;
}
/* Only the large background text causes overflow - hide it */
#nosotros::before {
  max-width: 100vw;
  overflow: hidden;
}
/* Ensure containers don't exceed viewport */
.container {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .hero-title {
    word-break: break-word;
  }
  #nosotros::before {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   INFINITE REVIEWS CAROUSEL
═══════════════════════════════════════════ */

/* Header */
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-rating-global { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.stars { display: flex; gap: .2rem; font-size: 1.1rem; color: var(--fire-yellow); letter-spacing:.05em; }
.rating-num { font-family: var(--font-display); font-size: 2rem; color: var(--fire-yellow); }
.rating-count { font-size: .85rem; color: var(--text-muted); }

/* Carousel wrapper */
.reviews-carousel-infinite {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 3rem 0 2rem;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* Track that moves */
.rc-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: rcScroll 40s linear infinite;
  will-change: transform;
}
.rc-track:hover { animation-play-state: paused; }

@keyframes rcScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Base card */
.rc-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform .4s ease, opacity .4s ease, box-shadow .4s ease;
  opacity: .55;
  transform: scale(.88);
  cursor: default;
  position: relative;
}
.rc-card:hover {
  opacity: .8;
  transform: scale(.92);
}

/* Featured card */
.rc-card.featured {
  width: 400px;
  background: linear-gradient(145deg, var(--dark-surface) 0%, rgba(255,106,0,.08) 100%);
  border-color: rgba(255,106,0,.45);
  padding: 2.2rem;
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(255,106,0,.22), 0 0 0 1px rgba(255,106,0,.25);
  z-index: 2;
}
.rc-card.featured:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 28px 70px rgba(255,106,0,.32), 0 0 0 1px rgba(255,106,0,.4);
}

/* Featured badge */
.rc-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
  color: #fff;
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 99px;
  width: fit-content;
}

/* Big decorative quote on featured */
.rc-card.featured::before {
  content: '"';
  position: absolute;
  top: -.1rem;
  left: 1.4rem;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--fire-orange);
  opacity: .18;
  pointer-events: none;
}

/* Stars */
.rc-stars { color: var(--fire-yellow); font-size: .95rem; letter-spacing: .06em; }
.rc-card.featured .rc-stars { font-size: 1.1rem; }

/* Text */
.rc-text {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rc-card.featured .rc-text {
  font-size: .96rem;
  line-height: 1.85;
  color: var(--text-primary);
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Scores row on featured */
.rc-scores {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  background: rgba(255,106,0,.07);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,106,0,.15);
}
.rc-score-item {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  color: var(--fire-yellow);
  letter-spacing: .05em;
}
.rc-score-item span {
  color: var(--text-muted);
  font-weight: 400;
}

/* Recommended */
.rc-recommended {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  color: var(--fire-orange);
  letter-spacing: .05em;
}

/* Author */
.rc-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.rc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.rc-card.featured .rc-avatar {
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(255,106,0,.4);
}
.rc-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
}
.rc-card.featured .rc-name { font-size: .98rem; }
.rc-meta {
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: .1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .rc-card { width: 260px; padding: 1.3rem; }
  .rc-card.featured { width: 310px; padding: 1.8rem; }
  .rc-card.featured .rc-text { font-size: .88rem; }
  .reviews-carousel-infinite {
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  }
}



}


 to { width: 100% } }



/* ══════════════════════════════════════════
   REVIEWS — Notebook/Comanda aesthetic
   Cards hang from a rail like order slips
══════════════════════════════════════════ */
.reviews-header { text-align:center; margin-bottom:2rem; }
.reviews-rating-global {
  display:flex; align-items:center; justify-content:center;
  gap:1rem; margin-top:1rem;
}
.stars        { color:var(--fire-yellow); font-size:1.1rem; letter-spacing:.05em; }
.rating-num   { font-family:var(--font-display); font-size:2rem; color:var(--fire-yellow); }
.rating-count { font-size:.85rem; color:var(--text-muted); }

/* ── RAIL ── */
.rc-rail-wrap {
  position: relative;
  width: 100%;
  padding: 0 0 2.5rem;
  /* subtle fade only on edges — keep readable */
  mask-image: linear-gradient(to right,
    transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%, black 5%, black 95%, transparent 100%);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.rc-rail-wrap.is-dragging { cursor: grabbing; }

/* The actual rail bar */
.rc-rail {
  position: relative;
  height: 28px;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}
/* Main rod */
.rc-rail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 6px;
  margin-top: -3px;
  background: linear-gradient(
    180deg,
    #b8b8b8 0%,
    #e8e8e8 30%,
    #c0c0c0 60%,
    #888 100%
  );
  border-radius: 3px;
  box-shadow:
    0 2px 6px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.4);
}
/* Rail end caps */
.rc-rail::after {
  content: '';
  position: absolute;
  top: 50%; left: -4px; right: -4px;
  height: 12px;
  margin-top: -6px;
  background: radial-gradient(circle at 4px 50%, #aaa 4px, transparent 5px),
              radial-gradient(circle at calc(100% - 4px) 50%, #aaa 4px, transparent 5px);
  pointer-events: none;
}

/* ── TRACK ── */
.rc-track {
  display: flex;
  align-items: flex-start; /* hang from top */
  gap: 1.5rem;
  width: max-content;
  padding-top: 4px;        /* small gap below rail */
  /* animation set via JS after measuring width */
  will-change: transform;
  position: relative;
}

@keyframes rcInfinite {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--rc-total, -50%)); }
}

/* ── CARD — notebook / comanda look ── */
.rc-card {
  flex-shrink: 0;
  width: 290px;
  background: #fdf8ef;
  border-radius: 2px 2px 4px 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  box-shadow:
    0 4px 12px rgba(0,0,0,.35),
    0 1px 3px rgba(0,0,0,.2),
    inset 0 0 0 1px rgba(0,0,0,.08);
  /* subtle paper texture */
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 23px,
      rgba(180,210,255,.18) 23px,
      rgba(180,210,255,.18) 24px
    );
}

/* Clip / ring at top of each card */
.rc-card::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #e8e8e8, #888);
  border: 2px solid #666;
  box-shadow: 0 2px 4px rgba(0,0,0,.4);
  z-index: 2;
}
/* Inner hole of ring */
.rc-card::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  z-index: 3;
}

/* Card header strip */
.rc-card-header {
  background: linear-gradient(135deg, #1a1208, #2a1e0a);
  border-radius: 0;
  padding: .7rem 1.2rem .6rem;
  border-bottom: 2px solid var(--fire-orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.rc-card-header .rc-stars {
  color: var(--fire-yellow);
  font-size: .85rem;
  letter-spacing: .1em;
}

/* Card body */
.rc-card-body {
  padding: 1rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  flex: 1;
}

.rc-text {
  font-size: .8rem;
  color: #2a1e0a;
  line-height: 1.75;
  flex: 1;
  font-family: 'DM Sans', sans-serif;
}

/* Featured card */
.rc-card.rc-featured {
  width: 360px;
  box-shadow:
    0 8px 28px rgba(255,106,0,.3),
    0 2px 6px rgba(0,0,0,.3),
    inset 0 0 0 1px rgba(255,106,0,.3);
}
.rc-card.rc-featured .rc-card-header {
  background: linear-gradient(135deg, #3d1800, #6b2a00);
  border-bottom-color: var(--fire-yellow);
}
.rc-card.rc-featured .rc-text {
  font-size: .84rem;
  color: #1a1208;
  display: block;
  overflow: visible;
}

/* Featured badge — inside header */
.rc-featured-badge {
  font-family: var(--font-heading);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fire-yellow);
  white-space: nowrap;
}

/* Scores */
.rc-scores {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  padding: .45rem .7rem;
  background: rgba(255,106,0,.08);
  border-radius: 2px;
  border: 1px solid rgba(255,106,0,.2);
}
.rc-score-item {
  font-family: var(--font-heading);
  font-size: .63rem;
  font-weight: 700;
  color: #8B4513;
}
.rc-score-item span { color: #555; font-weight: 400; }

.rc-recommended {
  font-family: var(--font-heading);
  font-size: .63rem;
  font-weight: 600;
  color: var(--fire-orange);
}

/* Author footer strip */
.rc-author {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.2rem;
  background: rgba(0,0,0,.06);
  border-top: 1px dashed rgba(0,0,0,.15);
  margin-top: auto;
}
.rc-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .8rem; color: #fff; flex-shrink: 0;
}
.rc-name { font-family: var(--font-heading); font-weight: 700; font-size: .78rem; color: #1a1208; }
.rc-meta { font-size: .62rem; color: #666; margin-top: .05rem; }

/* Responsive */
@media (max-width: 900px) and (min-width: 601px) {
  .rc-card { width: 265px; }
  .rc-card.rc-featured { width: 320px; }
  .rc-rail-wrap {
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  }
}
@media (max-width: 600px) {
  .rc-card { width: 230px; }
  .rc-card.rc-featured { width: 268px; }
  .rc-rail-wrap {
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 400px) {
  .rc-card { width: 205px; }
  .rc-card.rc-featured { width: 240px; }
}

  .rc-track { animation-duration: 11s; }
}


/* Postre centered card below the 3-col grid */
@media (max-width: 1024px) {
}
@media (max-width: 600px) {
}


/* Real-time open/closed status */
.status-widget {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--dark-surface);
  transition: border-color .3s, background .3s;
}
.status-widget.open-now {
  border-color: rgba(80, 200, 100, .45);
  background: rgba(80, 200, 100, .06);
}
.status-widget.closed-now {
  border-color: rgba(255, 80, 80, .35);
  background: rgba(255, 80, 80, .05);
}
.status-row {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.open-now .status-dot  { background: #50c864; box-shadow: 0 0 8px rgba(80,200,100,.7); animation: pulse-green 2s infinite; }
.closed-now .status-dot { background: #ff5050; }
@keyframes pulse-green {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.3); }
}
.status-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
}
.open-now  .status-label { color: #50c864; }
.closed-now .status-label { color: #ff5050; }
.status-sub {
  font-size: .75rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  margin-left: 1.6rem;
  line-height: 1.5;
}


@media (max-width: 380px) {
  .hero-title { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-desc { font-size: .82rem; }
  .btn-primary, .btn-secondary { font-size: .78rem; padding: .75rem 1.2rem; }
  .rc-card { width: 190px !important; }
  .rc-card.rc-featured { width: 220px !important; }
  .esp-card-img { height: 180px; }
  .nosotros-images { height: 260px; }
}


/* ── Postre: 3rd row, perfectly centered ── */
.esp-grid-centered {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.esp-grid-centered .esp-card {
  width: calc((100% - 3rem) / 3);
  min-width: 260px;
  max-width: 400px;
  flex: 0 0 auto;
}
@media (max-width: 1024px) {
  .esp-grid-centered .esp-card {
    width: calc((100% - 1.5rem) / 2);
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .esp-grid-centered .esp-card {
    width: 100%;
    min-width: unset;
    max-width: 100%;
  }
}





/* ── NOSOTROS: magazine photo grid ── */
.nosotros-section-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Photo grid: 2 cols × 3 rows mosaic */
.nosotros-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.nosotros-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, filter .35s ease;
  filter: brightness(.88);
  cursor: pointer;
}
.nosotros-photo-grid img:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* Other 4 each take 1 col */
.nos-img-a { grid-column: 1; }
.nos-img-b { grid-column: 2; }
.nos-img-c { grid-column: 1; }
.nos-img-d { grid-column: 2; }

@media (max-width: 1024px) {
  .nosotros-section-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .nosotros-photo-grid { grid-template-rows: 190px 190px; }
}
@media (max-width: 600px) {
  .nosotros-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
    gap: 6px;
  }
}


/* ════════════════════════════════════
   RESPONSIVE FINAL PASS — all sections
════════════════════════════════════ */

/* ── Galeria: correct row heights per breakpoint ── */
.galeria-grid {
  grid-template-rows: repeat(2, 300px);
}
@media (max-width: 900px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 240px);
  }
}
@media (max-width: 500px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 160px);
  }
}

/* ── Nosotros: section-wrap responsive ── */
@media (max-width: 1024px) {
  .nosotros-section-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nosotros-photo-grid {
    grid-template-rows: 200px 200px;
  }
}
@media (max-width: 600px) {
  .nosotros-photo-grid {
    grid-template-rows: 150px 150px;
    gap: 8px;
  }
}

/* ── esp-card-feature: responsive ── */
@media (max-width: 1024px) {
  .esp-card-feature {
    grid-template-columns: 1fr;
  }
  .esp-card-feature-img {
    height: 240px;
  }
}
@media (max-width: 600px) {
  .esp-card-feature-img {
    height: 200px;
  }
  .esp-card-feature-body {
    padding: 1.5rem;
  }
}

/* ── Container: safe padding on mobile ── */
@media (max-width: 480px) {
  .container {
    width: min(96%, 1200px);
  }
}

/* ── Hero: prevent button overflow ── */
@media (max-width: 380px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── Horario visual: responsive ── */
@media (max-width: 600px) {
  .horario-visual img {
    height: 160px;
  }
  .status-widget {
    padding: .75rem 1rem;
  }
}

/* ── Reservas: phone big on mobile ── */
@media (max-width: 480px) {
  .phone-big-wrapper {
    display: flex;
    flex-direction: column;
    gap: .25rem;
  }
}

/* ── Promo: combo note readable ── */
@media (max-width: 480px) {
  .promo-price-num { font-size: clamp(3rem, 14vw, 6rem); }
  .promo-items li  { font-size: .85rem; }
  .promo-title     { font-size: 1.2rem; }
}

/* ── Footer: safe spacing ── */
@media (max-width: 480px) {
  footer { padding: 2.5rem 0 1.5rem; }
  .footer-copy, .footer-rating { font-size: .72rem; }
}

/* ── Map: full height on mobile ── */
@media (max-width: 600px) {
  .map-wrapper { aspect-ratio: 1/1; }
}

/* ── Float buttons: not too large on mobile ── */
@media (max-width: 380px) {
  .float-btn { width: 46px; height: 46px; font-size: 1rem; }
  .float-group { bottom: 1.2rem; right: 1rem; }
}