/* =============================================
   Bellagio Pizzeria — Demo Site v2
   Emanoil Studio — 3D + Glassmorphism Edition
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #D85A3A;
  --red-dk: #A93B2C;
  --cream:  #FDF6EC;
  --char:   #1A1A1A;
  --gold:   #D4A843;
  --btn-warm: #D8B25A;
  --btn-warm-dk: #9B6B32;
  --btn-ink: #241812;
  --gray:   #6B7280;
  --light:  #F9F3E8;
  --white:  #FFFFFF;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --max-w: 1140px;
  --section-py: 88px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--char); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section-title { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; color: var(--char); margin-bottom: 12px; text-align: center; }
.section-subtitle { text-align: center; color: var(--gray); font-size: 1.05rem; margin-bottom: 52px; }
.demo-notice { background: #FFF3CD; border: 1px solid #FFC107; color: #856404; border-radius: var(--radius-sm); padding: 10px 16px; font-size: .85rem; margin-bottom: 32px; text-align: center; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem; font-weight: 700; cursor: pointer; border: 1px solid rgba(0,0,0,.14); transition: all .2s ease; white-space: nowrap; background: transparent; color: var(--char); box-shadow: none; }
.btn:hover { background: var(--light); color: var(--char); border-color: rgba(0,0,0,.18); transform: translateY(-2px); filter: none; box-shadow: none; }
.btn-primary, .btn-secondary, .btn-outline, .btn-glass, .btn-whatsapp { background: transparent; color: var(--char); border-color: rgba(0,0,0,.14); box-shadow: none; }
.btn-primary:hover, .btn-secondary:hover, .btn-outline:hover, .btn-glass:hover, .btn-whatsapp:hover { background: var(--light); color: var(--char); border-color: rgba(0,0,0,.18); transform: translateY(-2px); box-shadow: none; filter: none; }
.btn-large { padding: 16px 34px; font-size: 1.02rem; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---- HEADER ---- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,.07); transition: box-shadow .3s; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: var(--red); }
.logo-sub { font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: var(--gray); }
/* ---- Hamburger ---- */
.nav-toggle { display: inline-flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius-sm); color: var(--char); cursor: pointer; padding: 10px 14px; z-index: 210; flex-shrink: 0; box-shadow: 0 4px 18px rgba(0,0,0,.06); transition: border-color .2s, box-shadow .2s, transform .2s; }
.nav-toggle:hover { border-color: rgba(216,90,58,.25); box-shadow: 0 8px 24px rgba(0,0,0,.10); transform: translateY(-1px); }
.nav-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.nav-toggle-text { font-size: .86rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hamburger-lines { display: flex; flex-direction: column; gap: 5px; }
.hamburger-lines span { display: block; width: 22px; height: 2px; background: var(--char); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-active .hamburger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active .hamburger-lines span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .hamburger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Overlay ---- */
.nav-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 82px max(24px, calc((100vw - var(--max-w)) / 2 + 24px)) 0 24px;
  visibility: hidden; opacity: 0;
  pointer-events: none;
  transition: visibility 0s .25s, opacity .25s ease;
}
.nav-overlay.is-open {
  visibility: visible; opacity: 1;
  pointer-events: auto;
  transition: visibility 0s 0s, opacity .25s ease;
}
.overlay-backdrop {
  position: absolute; inset: 0;
  background: transparent;
}
.overlay-inner { position: relative; z-index: 2; width: min(320px, calc(100vw - 48px)); background: rgba(255,255,255,.96); border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius-sm); box-shadow: 0 18px 50px rgba(0,0,0,.18); padding: 18px; transform: translateY(-8px) scale(.98); transform-origin: top right; transition: transform .25s ease; }
.nav-overlay.is-open .overlay-inner { transform: translateY(0) scale(1); }
.overlay-content { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.overlay-links { display: flex; flex-direction: column; gap: 3px; border-bottom: 1px solid rgba(0,0,0,.08); padding-bottom: 10px; }
.overlay-links a {
  display: block; border-radius: var(--radius-sm); padding: 8px 10px;
  font-family: var(--font-head); font-size: 1.16rem; font-weight: 700;
  color: var(--char); letter-spacing: 0;
  transition: color .2s, background .2s, transform .2s;
}
.overlay-links a:hover, .overlay-links a[aria-current] { background: var(--cream); color: var(--red); transform: translateX(3px); }
.overlay-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.overlay-actions .btn { width: 100%; justify-content: center; padding: 11px 14px; font-size: .92rem; }
.overlay-actions .btn-outline { color: var(--char); }

/* ---- HERO ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: #17110D; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 24% 50%, rgba(119,75,50,.42) 0%, transparent 62%), radial-gradient(ellipse at 78% 24%, rgba(212,168,67,.13) 0%, transparent 48%), linear-gradient(135deg, #21160F 0%, #16110E 48%, #251A12 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(ellipse at center, black 0%, transparent 78%); opacity: .45; }
.hero-bg-circles { position: absolute; inset: 0; }
.hbc { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }
.hbc-1 { width: 600px; height: 600px; top: -200px; right: -100px; animation: rotateSlow 40s linear infinite; }
.hbc-2 { width: 400px; height: 400px; top: -80px; right: 60px; animation: rotateSlow 28s linear infinite reverse; border-color: rgba(212,168,67,.07); }
.hbc-3 { width: 200px; height: 200px; top: 80px; right: 220px; animation: rotateSlow 18s linear infinite; border-color: rgba(216,90,58,.1); }
.hero-bg-elements { position: absolute; inset: 0; overflow: hidden; opacity: .52; }
.bg-el, .bg-line { position: absolute; pointer-events: none; }
.bg-el { width: 58px; height: 58px; border-radius: 50%; filter: drop-shadow(0 12px 24px rgba(0,0,0,.18)); animation: bgDrift 8s ease-in-out infinite; }
.bg-pizza { background: radial-gradient(circle at 50% 50%, #B9583F 0 42%, #C89236 43% 62%, #6E4A20 63% 100%); border: 1px solid rgba(255,255,255,.11); }
.bg-pizza::before { content: ''; position: absolute; inset: 13px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, white 0 9%, transparent 10%), radial-gradient(circle at 70% 35%, white 0 8%, transparent 9%), radial-gradient(circle at 55% 72%, white 0 9%, transparent 10%); opacity: .75; }
.bg-cheese { background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.13); }
.bg-cheese::before, .bg-cheese::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.78); }
.bg-cheese::before { width: 24px; height: 24px; left: 9px; top: 12px; box-shadow: 19px 15px 0 rgba(255,255,255,.52); }
.bg-cheese::after { width: 12px; height: 12px; right: 10px; top: 9px; }
.bg-basil { background: rgba(39,174,96,.08); border: 1px solid rgba(46,204,113,.18); }
.bg-basil::before, .bg-basil::after { content: ''; position: absolute; width: 20px; height: 38px; border-radius: 100% 0 100% 0; background: rgba(46,204,113,.52); left: 16px; top: 8px; transform: rotate(38deg); }
.bg-basil::after { width: 17px; height: 31px; background: rgba(39,174,96,.52); left: 28px; top: 17px; transform: rotate(84deg); }
.bg-flame { background: rgba(216,90,58,.075); border: 1px solid rgba(216,90,58,.16); }
.bg-flame::before { content: ''; position: absolute; width: 24px; height: 36px; left: 17px; bottom: 10px; border-radius: 60% 40% 55% 45%; background: linear-gradient(180deg, #FFE7A3, #F0A526 45%, var(--red)); animation: flameFlicker 1.4s ease-in-out infinite; }
.bg-slice { width: 64px; height: 64px; border-radius: 0; background: linear-gradient(135deg, transparent 0 46%, #C89236 47% 52%, #B9583F 53% 100%); clip-path: polygon(50% 0, 100% 100%, 0 100%); opacity: .62; }
.bg-slice::before { content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: white; left: 28px; top: 32px; box-shadow: 12px 16px 0 rgba(255,255,255,.65), -10px 20px 0 rgba(255,255,255,.55); }
.bg-line { width: 210px; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,168,67,.18), transparent); transform: rotate(-18deg); animation: lineDrift 10s ease-in-out infinite; }
.bg-el-1 { left: 4%; top: 18%; transform: scale(.82); }
.bg-el-2 { left: 18%; top: 10%; transform: scale(.68) rotate(18deg); animation-delay: .8s; }
.bg-el-3 { left: 34%; top: 20%; transform: scale(.54); animation-delay: 1.4s; }
.bg-el-4 { left: 8%; bottom: 18%; transform: scale(.68); animation-delay: 2s; }
.bg-el-5 { left: 27%; bottom: 13%; transform: scale(.72) rotate(-20deg); animation-delay: 2.7s; }
.bg-el-6 { left: 44%; bottom: 28%; transform: scale(.58) rotate(-12deg); animation-delay: 3.2s; }
.bg-el-7 { right: 31%; top: 16%; transform: scale(.6); animation-delay: 3.6s; }
.bg-el-8 { right: 7%; top: 14%; transform: scale(.74); animation-delay: 4.1s; }
.bg-el-9 { right: 16%; bottom: 21%; transform: scale(.6); animation-delay: 4.8s; }
.bg-el-10 { right: 36%; bottom: 10%; transform: scale(.66) rotate(16deg); animation-delay: 5.4s; }
.bg-line-1 { left: 6%; top: 39%; }
.bg-line-2 { left: 29%; bottom: 25%; animation-delay: 2.5s; }
.bg-line-3 { right: 8%; top: 46%; animation-delay: 4.5s; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bgDrift { 0%,100%{ margin-top: 0; margin-left: 0; opacity: .74; } 50%{ margin-top: -12px; margin-left: 8px; opacity: .95; } }
@keyframes lineDrift { 0%,100%{ opacity:.28; transform: rotate(-18deg) translateX(0); } 50%{ opacity:.55; transform: rotate(-18deg) translateX(18px); } }

.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 60px 0; }
.hero-content { max-width: 560px; }
.hero-eyebrow { display: inline-block; background: rgba(212,168,67,.15); border: 1px solid rgba(212,168,67,.35); color: var(--gold); font-size: .82rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 22px; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; color: var(--white); line-height: 1.12; margin-bottom: 22px; }
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 480px; margin-bottom: 38px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-menu-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.hero-menu-link { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88); font-weight: 750; padding: 10px 0; position: relative; transition: color .2s ease, transform .2s ease; }
.hero-menu-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 5px; height: 2px; background: rgba(212,168,67,.75); transform: scaleX(.45); transform-origin: left; transition: transform .22s ease, background .22s ease; }
.hero-menu-link:hover { color: var(--white); transform: translateX(2px); }
.hero-menu-link:hover::after { transform: scaleX(1); background: var(--gold); }
.hero-call-link { color: var(--gold); }
.hero-call-link::after { background: rgba(216,90,58,.85); }
.hero-call-link:hover::after { background: var(--red); }
.hero-badge { display: inline-flex; flex-direction: column; background: linear-gradient(135deg, var(--gold), #c8930a); color: var(--char); padding: 16px 28px; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(212,168,67,.4); animation: floatBadge 3.5s ease-in-out infinite; }
.hero-badge strong { font-size: 1.15rem; font-weight: 700; font-family: var(--font-head); }
.hero-badge span { font-size: .85rem; opacity: .75; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ---- PIZZA 3D IN HERO ---- */
.hero-pizza-3d { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; isolation: isolate; }
.oven-ui { position: absolute; width: 430px; height: 355px; top: -42px; left: 50%; transform: translateX(-50%); z-index: 1; filter: drop-shadow(0 30px 58px rgba(0,0,0,.46)); animation: ovenFloat 5.5s ease-in-out infinite; }
.oven-dome { position: absolute; inset: 0 12px 44px; border-radius: 190px 190px 34px 34px; background: linear-gradient(145deg, rgba(255,244,225,.92), rgba(180,122,74,.92) 52%, rgba(93,50,32,.98)); border: 1px solid rgba(255,255,255,.24); overflow: hidden; box-shadow: inset 0 18px 40px rgba(255,255,255,.18), inset 0 -22px 40px rgba(35,16,9,.45); }
.oven-dome::before { content: ''; position: absolute; inset: 16px 18px auto; height: 72px; border-radius: 50%; background: linear-gradient(180deg, rgba(255,255,255,.32), transparent); opacity: .8; }
.oven-dome::after { content: ''; position: absolute; inset: auto 28px 18px; height: 28px; border-radius: 50%; background: radial-gradient(ellipse, rgba(0,0,0,.24), transparent 68%); }
.oven-bricks { position: absolute; inset: 24px 34px 120px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; opacity: .42; }
.oven-bricks span { border-radius: 999px; border-top: 2px solid rgba(86,41,25,.55); }
.oven-mouth { position: absolute; left: 50%; bottom: 32px; width: 190px; height: 126px; transform: translateX(-50%); border-radius: 112px 112px 20px 20px; background: radial-gradient(circle at 50% 78%, rgba(255,188,72,.95) 0 16%, rgba(216,90,58,.86) 36%, rgba(48,20,10,.96) 70%); box-shadow: inset 0 0 32px rgba(0,0,0,.62), 0 0 40px rgba(216,90,58,.34); border: 9px solid rgba(67,34,21,.9); overflow: hidden; }
.oven-fire { position: absolute; inset: auto 38px 16px; height: 62px; display: flex; align-items: flex-end; justify-content: center; gap: 5px; filter: blur(.1px); }
.oven-fire span { width: 30px; height: 52px; border-radius: 60% 40% 55% 45%; background: linear-gradient(180deg, #FFE7A3, #F0A526 52%, var(--red)); transform-origin: center bottom; animation: flameFlicker 1.2s ease-in-out infinite; }
.oven-fire span:nth-child(2) { height: 68px; width: 36px; animation-delay: .18s; }
.oven-fire span:nth-child(3) { height: 48px; animation-delay: .34s; }
.oven-base { position: absolute; left: 50%; bottom: 18px; width: 380px; height: 62px; transform: translateX(-50%); border-radius: 18px; background: linear-gradient(180deg, #8B5E3C, #4A2819); box-shadow: inset 0 10px 18px rgba(255,255,255,.08), inset 0 -12px 22px rgba(0,0,0,.34); }
.hero-pizza-row { position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4, 112px); gap: 14px; align-items: center; justify-content: center; }
.pizza-plate { width: 112px; height: 112px; position: relative; filter: drop-shadow(0 20px 34px rgba(0,0,0,.55)); }
.hero-pizza-row .pizza-plate:nth-child(1) { transform: translateY(-12px) rotate(-5deg); }
.hero-pizza-row .pizza-plate:nth-child(2) { transform: translateY(12px) rotate(4deg); }
.hero-pizza-row .pizza-plate:nth-child(3) { transform: translateY(-4px) rotate(7deg); }
.hero-pizza-row .pizza-plate:nth-child(4) { transform: translateY(10px) rotate(-4deg); }
.pizza-spin { width: 100%; height: 100%; animation: pizzaSpin 20s linear infinite; transform-origin: center; }
.pizza-spin-slow { animation-duration: 26s; }
.pizza-spin-reverse { animation-direction: reverse; animation-duration: 22s; }
@keyframes pizzaSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.pizza-shadow { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); width: 470px; height: 48px; background: radial-gradient(ellipse, rgba(0,0,0,.58) 0%, transparent 70%); border-radius: 50%; animation: shadowPulse 3.5s ease-in-out infinite; z-index: 2; }
@keyframes shadowPulse { 0%,100%{transform:translateX(-50%) scaleX(1)} 50%{transform:translateX(-50%) scaleX(.85)} }
.float-ing { position: absolute; z-index: 3; font-size: 1.6rem; animation: floatIng 4s ease-in-out infinite; pointer-events: none; filter: drop-shadow(0 4px 8px rgba(0,0,0,.4)); }
.fi-1 { top: 56%; right: 3%; animation-delay: 0s; }
.fi-2 { top: 63%; left: 2%; animation-delay: .8s; }
.fi-3 { bottom: 12%; right: 12%; animation-delay: 1.6s; }
.fi-4 { bottom: 9%; left: 14%; animation-delay: 2.4s; }
@keyframes floatIng { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-14px) rotate(12deg)} }
@keyframes ovenFloat { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }
@keyframes flameFlicker { 0%,100%{transform:scaleY(1) rotate(-2deg); opacity:.92} 50%{transform:scaleY(.82) rotate(3deg); opacity:1} }

.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); }
.hero-scroll-hint span { display: block; width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.3); border-radius: 12px; position: relative; }
.hero-scroll-hint span::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: rgba(255,255,255,.5); border-radius: 2px; animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 100%{opacity:0;transform:translateX(-50%) translateY(16px)} }

/* ---- OFERTE ---- */
.oferte { background: var(--cream); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.card { background: rgba(255,255,255,.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column; gap: 18px; transform-style: preserve-3d; transition: box-shadow .2s; will-change: transform; }
.card-featured { border-color: rgba(216,90,58,.4); background: rgba(255,255,255,.88); box-shadow: 0 8px 40px rgba(216,90,58,.15); }
.card-badge { position: absolute; top: -13px; left: 24px; background: var(--red); color: var(--white); font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; box-shadow: 0 4px 12px rgba(216,90,58,.4); }
.card-icon-3d { width: 64px; height: 64px; }
.card h3 { font-family: var(--font-head); font-size: 1.45rem; font-weight: 700; }
.card-tagline { color: var(--gray); line-height: 1.55; }
.card-tagline strong { color: var(--char); }
.card-perks { display: flex; flex-direction: column; gap: 8px; }
.card-perks li { font-size: .92rem; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.perk-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* ---- MENU ---- */
.menu-section { background: var(--light); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; margin-bottom: 48px; }
.menu-item { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.menu-item:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }
.pizza-svg-wrap { width: 100%; height: 190px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a0d06 0%, #2e1a0a 100%); overflow: hidden; padding: 16px; }
.pizza-svg-wrap svg { width: 148px; height: 148px; filter: drop-shadow(0 6px 16px rgba(0,0,0,.5)); transition: transform .35s ease; }
.menu-item:hover .pizza-svg-wrap svg { transform: scale(1.1) rotate(6deg); }
.menu-info { padding: 18px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.menu-info h3 { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; }
.menu-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.menu-price { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--red); white-space: nowrap; }
.menu-info p { font-size: .9rem; color: var(--gray); line-height: 1.45; }
.menu-tag { display: inline-block; margin-top: 5px; background: var(--cream); border: 1px solid rgba(212,168,67,.4); color: #8a6a20; font-size: .75rem; font-weight: 600; padding: 3px 12px; border-radius: 100px; align-self: flex-start; }
.menu-cta { text-align: center; }
.menu-cta p { color: var(--gray); margin-bottom: 18px; }

/* ---- ABOUT ---- */
.about-section { background: linear-gradient(180deg, var(--cream) 0%, var(--light) 100%); }
.about-section .section-title { color: var(--char); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.feature { background: var(--white); border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius-sm); padding: 30px 26px; box-shadow: 0 4px 14px rgba(0,0,0,.04); transition: transform .25s, box-shadow .25s, border-color .25s; }
.feature:hover { transform: translateY(-4px); border-color: rgba(212,168,67,.28); box-shadow: var(--shadow); }
.feature-svg-wrap { margin-bottom: 18px; }
.feature-svg { width: 52px; height: 52px; }
.feature h3 { font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; color: var(--char); margin-bottom: 10px; }
.feature p { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.review { background: var(--white); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column; gap: 18px; transition: transform .25s, box-shadow .25s; border: 1px solid rgba(0,0,0,.05); }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-featured { border-color: rgba(212,168,67,.3); box-shadow: 0 8px 32px rgba(212,168,67,.12); }
.review-stars span { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; }
.review p { font-size: 1rem; line-height: 1.65; color: var(--char); font-style: italic; }
.review p::before { content: '\201C'; font-family: var(--font-head); font-size: 2.5rem; color: var(--red); line-height: 0; vertical-align: -0.6em; margin-right: 4px; }
.review footer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--gold)); color: white; font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review cite { font-size: .88rem; color: var(--gray); font-style: normal; font-weight: 500; }
.review-demo-tag { position: absolute; top: 14px; right: 14px; background: #FFC107; color: #856404; font-size: .65rem; font-weight: 700; letter-spacing: .08em; padding: 3px 9px; border-radius: 6px; }

/* ---- FAQ ---- */
.faq { background: linear-gradient(180deg, var(--light) 0%, var(--cream) 100%); }
.faq-container { max-width: 820px; background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 34px; }
.faq .section-title { text-align: left; line-height: 1.08; margin-bottom: 24px; }
.faq-item { background: var(--white); border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius-sm); box-shadow: 0 4px 14px rgba(0,0,0,.04); margin-bottom: 10px; overflow: hidden; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item summary { padding: 17px 18px; font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--char); transition: color .2s, background .2s; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--red); transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--red); background: rgba(253,246,236,.45); }
.faq-item p { padding: 0 18px 18px; color: var(--gray); font-size: .95rem; line-height: 1.65; }

/* ---- CONTACT ---- */
.contact { background: linear-gradient(180deg, var(--cream) 0%, var(--light) 100%); }
.contact-grid { display: grid; grid-template-columns: minmax(380px, .9fr) minmax(480px, 1.1fr); gap: 28px; align-items: start; }
.contact-info { background: var(--white); border: 1px solid rgba(0,0,0,.07); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 34px; }
.contact .section-title { text-align: left; line-height: 1.08; }
.contact-intro { color: var(--gray); font-size: .96rem; line-height: 1.55; margin: 0 0 22px; max-width: 440px; }
.contact-list { display: grid; gap: 10px; margin-bottom: 22px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; background: var(--white); border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius-sm); padding: 12px; box-shadow: 0 4px 14px rgba(0,0,0,.04); }
.contact-icon-wrap { width: 42px; height: 42px; border-radius: 10px; background: rgba(216,90,58,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-list strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--gray); margin-bottom: 2px; }
.contact-list span { display: block; color: var(--char); font-weight: 600; }
.contact-list a { color: var(--red); font-weight: 600; transition: color .2s; }
.contact-list a:hover { color: var(--red-dk); text-decoration: underline; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-items: center; }
.contact-actions .btn { justify-content: center; min-height: 46px; padding: 11px 16px; }
.contact-primary-action, .contact-facebook-action { grid-column: span 2; }
.map-frame { height: 560px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(0,0,0,.07); box-shadow: var(--shadow-lg); background: var(--white); }
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; filter: saturate(.95) contrast(1.02); }

/* ---- FOOTER ---- */
.site-footer { background: var(--char); padding: 48px 0 32px; color: rgba(255,255,255,.55); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.footer-inner .logo-text { color: var(--red); font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }
.footer-inner .logo-sub { font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: .85rem; }
.footer-demo-note { font-size: .8rem; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; width: 100%; text-align: center; }
.footer-demo-note strong { color: var(--gold); }

/* ---- FLOATING CTA ---- */
.floating-cta { position: fixed; bottom: 28px; right: 28px; z-index: 200; }
.floating-btn { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: var(--white); border: 1px solid rgba(0,0,0,.14); box-shadow: 0 8px 22px rgba(0,0,0,.14); transition: transform .2s, box-shadow .2s, background .2s; position: relative; z-index: 2; }
.floating-btn:hover { transform: scale(1.12); background: var(--light); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.floating-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.floating-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(212,168,67,.42); animation: pulseRing 2.5s ease-out infinite; }
@keyframes pulseRing { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2.2);opacity:0} }

.mobile-sticky-actions { display: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero { min-height: auto; padding: 26px 0 44px; }
  .hero-layout { grid-template-columns: 1fr; gap: 16px; padding: 38px 0 24px; }
  .hero-content { max-width: 620px; text-align: center; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; margin-bottom: 10px; }
  .hero-pizza-3d { min-height: 360px; width: min(100%, 520px); margin: 0 auto; transform: scale(.82); transform-origin: center top; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact .section-title { text-align: center; }
  .contact-intro { text-align: center; margin-left: auto; margin-right: auto; }
  .contact-actions { justify-content: center; }
  .map-frame { height: 420px; }
}
@media (max-width: 1024px) {
  :root { --section-py: 60px; }
}
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .btn { justify-content: center; }
  .hero-menu-link { align-self: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --section-py: 52px; }
  body { padding-bottom: 86px; }
  .container { padding: 0 18px; }
  .header-inner { height: 62px; }
  .logo-text { font-size: 1.34rem; }
  .logo-sub { font-size: .58rem; letter-spacing: .07em; }
  .nav-toggle { gap: 9px; padding: 9px 11px; }
  .nav-toggle-text { font-size: .76rem; }
  .hamburger-lines span { width: 20px; }
  .nav-overlay { padding: 74px 14px 0; }
  .overlay-inner { width: min(340px, calc(100vw - 28px)); padding: 14px; }
  .overlay-actions .btn { min-height: 44px; white-space: normal; text-align: center; }
  .hero { padding-top: 14px; }
  .hero-layout { padding: 34px 0 12px; gap: 8px; }
  .hero-eyebrow { font-size: .68rem; line-height: 1.35; padding: 6px 12px; margin-bottom: 16px; max-width: 100%; }
  .hero-content h1 { font-size: clamp(2.3rem, 13vw, 3.35rem); line-height: 1.03; margin-bottom: 16px; }
  .hero-sub { font-size: .98rem; line-height: 1.55; margin-bottom: 22px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; max-width: 360px; margin-left: auto; margin-right: auto; }
  .hero-menu-link { justify-content: center; min-height: 44px; padding: 10px 12px; border: 1px solid rgba(212,168,67,.42); border-radius: var(--radius-sm); background: rgba(255,255,255,.05); color: rgba(255,255,255,.92); }
  .hero-menu-link::after { display: none; }
  .hero-call-link { color: var(--gold); }
  .hero-pizza-3d { min-height: 320px; transform: scale(.68); width: 560px; max-width: none; left: 50%; margin-left: -280px; }
  .hero-scroll-hint { display: none; }
  .bg-el { transform: scale(.5); }
  .bg-line { width: 140px; }
  .menu-grid, .features-grid, .reviews-grid { gap: 18px; }
  .menu-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.75rem, 8vw, 2.35rem); }
  .section-subtitle { font-size: .96rem; margin-bottom: 32px; }
  .demo-notice { font-size: .78rem; padding: 9px 12px; margin-bottom: 22px; }
  .faq-container { padding: 22px; }
  .faq .section-title { text-align: center; }
  .faq-item summary { padding: 15px 14px; }
  .faq-item p { padding: 0 14px 16px; }
  .contact-info { padding: 22px; }
  .contact-list li { gap: 10px; padding: 11px; }
  .contact-icon-wrap { width: 38px; height: 38px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-primary-action, .contact-facebook-action { grid-column: auto; }
  .map-frame { height: 340px; }
  .floating-cta { display: none; }
  .floating-btn { width: 52px; height: 52px; }
  .mobile-sticky-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 220;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 16px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 14px 36px rgba(0,0,0,.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .mobile-sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,.1);
    color: var(--char);
    font-weight: 800;
    background: var(--cream);
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
  }
  .mobile-sticky-call { background: #F6E4C3; border-color: rgba(212,168,67,.36); }
  .mobile-sticky-whatsapp { background: #E8F6EE; border-color: rgba(39,174,96,.25); }
  .mobile-sticky-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 22px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-primary-action { grid-column: auto; }
  .contact-facebook-action { grid-column: auto; }
  .map-frame { height: 330px; }
}
@media (max-width: 390px) {
  .container { padding: 0 14px; }
  .logo-text { font-size: 1.2rem; }
  .logo-sub { display: none; }
  .hero-content h1 { font-size: 2.28rem; }
  .hero-actions { grid-template-columns: 1fr; max-width: 280px; }
  .hero-pizza-3d { transform: scale(.58); min-height: 275px; }
  .menu-info { padding: 16px 18px 19px; }
  .feature, .review { padding: 24px 20px; }
  .contact-info { padding: 18px; }
  .map-frame { height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
