/* ============================================================
   Pinchos Factory SmokeHouse — Design System
   Colors: #C62B2B (Red), #a6a6a6 (Grey), #fff (White), #000 (Black)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --red: #C62B2B;
  --red-dark: #9e2222;
  --red-light: #e04545;
  --grey: #a6a6a6;
  --grey-dark: #333;
  --grey-medium: #666;
  --white: #ffffff;
  --black: #000000;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --text-primary: #ffffff;
  --text-secondary: #a6a6a6;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,.5);
  --shadow-red: 0 8px 32px rgba(198,43,43,.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition-fast: .2s cubic-bezier(.4,0,.2,1);
  --transition-medium: .4s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-light); }

/* ---------- Selection ---------- */
::selection { background: var(--red); color: var(--white); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader img { width: 180px; animation: pulse-glow 1.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(198,43,43,.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(198,43,43,.6)); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(198,43,43,0);
  transition: var(--transition-medium);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10,10,10,.95);
  border-bottom: 1px solid rgba(198,43,43,.3);
}
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 70px; transition: var(--transition-fast); }
.navbar.scrolled .nav-logo img { height: 55px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--font-accent);
  font-size: .9rem; font-weight: 500;
  color: var(--text-secondary);
  position: relative; padding: 4px 0;
  transition: var(--transition-fast);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* CTA button in nav */
.nav-cta {
  background: var(--red); color: var(--white);
  padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-accent);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(198,43,43,.3);
}
.nav-cta:hover {
  background: var(--red-light);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span {
  width: 28px; height: 2px; background: var(--white);
  transition: var(--transition-fast);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('media/platos/8.png') center center / cover no-repeat;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.7) 0%,
    rgba(0,0,0,.4) 40%,
    rgba(0,0,0,.6) 70%,
    rgba(10,10,10,1) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 24px;
  max-width: 900px;
}
.hero-logo {
  width: 340px; margin: 0 auto 24px;
  animation: float-logo 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(198,43,43,.4));
}
@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 400; font-style: italic;
  color: var(--grey);
  margin-bottom: 12px;
  opacity: 0; animation: fadeUp .8s ease forwards .6s;
}
.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp .8s ease forwards .9s;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s ease forwards 1.2s;
}
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 16px 40px; border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 1rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(198,43,43,.4);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: .5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(198,43,43,.5);
}
.btn-outline {
  background: transparent; color: var(--white);
  padding: 16px 40px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.3);
  font-family: var(--font-accent);
  font-size: 1rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition-fast);
}
.btn-outline:hover {
  border-color: var(--red);
  background: rgba(198,43,43,.1);
  color: var(--red-light);
  transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp .8s ease forwards 1.5s;
  opacity: 0;
}
.scroll-indicator span {
  font-size: .7rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--text-secondary); font-family: var(--font-accent);
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--text-secondary);
  border-radius: 12px; position: relative;
}
.scroll-mouse::before {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--red);
  border-radius: 2px; animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ---------- Shared animation keyframes ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: .75rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  position: relative;
}
.section-badge::before, .section-badge::after {
  content: ''; position: absolute; top: 50%;
  width: 40px; height: 1px; background: var(--red);
}
.section-badge::before { right: calc(100% + 12px); }
.section-badge::after  { left: calc(100% + 12px); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .highlight { color: var(--red); }
.section-description {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}
.about-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.about-img-wrapper:nth-child(1) { grid-column: 1 / -1; }
.about-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-img-wrapper:hover img { transform: scale(1.05); }
.about-img-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(198,43,43,.15));
  pointer-events: none;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; margin-bottom: 20px;
  color: var(--white);
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px; line-height: 1.8;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 32px;
}
.about-feature {
  display: flex; gap: 12px; align-items: flex-start;
}
.about-feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(198,43,43,.1);
  border: 1px solid rgba(198,43,43,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.2rem;
}
.about-feature h4 {
  font-family: var(--font-accent); font-size: .9rem;
  font-weight: 600; margin-bottom: 4px;
}
.about-feature p {
  font-size: .8rem; margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================================
   GALLERY / PLATOS SECTION
   ============================================================ */
#gallery {
  background: var(--bg-primary);
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7));
  opacity: 0;
  transition: var(--transition-medium);
  display: flex; align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--white);
}

/* ============================================================
   MENU SECTION
   ============================================================ */
#menu { background: var(--bg-secondary); }

/* Tab navigation */
.menu-tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px; margin-bottom: 48px;
}
.menu-tab {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-secondary);
  padding: 12px 24px; border-radius: 50px;
  font-family: var(--font-accent);
  font-size: .85rem; font-weight: 500;
  letter-spacing: .5px;
  transition: var(--transition-fast);
}
.menu-tab:hover {
  background: rgba(198,43,43,.1);
  border-color: rgba(198,43,43,.3);
  color: var(--white);
}
.menu-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(198,43,43,.4);
}

/* Menu panels */
.menu-panel { display: none; animation: fadeIn .4s ease; }
.menu-panel.active { display: block; }

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--red);
  margin-bottom: 8px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(198,43,43,.2);
}
.menu-category-note {
  font-size: .85rem; color: var(--text-secondary);
  font-style: italic; margin-bottom: 24px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 12px;
  margin-bottom: 48px;
}
.menu-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.menu-item:hover {
  background: rgba(198,43,43,.08);
  border-color: rgba(198,43,43,.15);
  transform: translateX(4px);
}
.menu-item-name {
  font-family: var(--font-accent);
  font-size: .95rem; font-weight: 500;
  color: var(--white);
  flex: 1;
}
.menu-item-desc {
  font-size: .78rem; color: var(--text-secondary);
  margin-top: 4px; line-height: 1.4;
}
.menu-item-price {
  font-family: var(--font-accent);
  font-size: 1rem; font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  margin-left: 16px;
}

/* Complementos list */
.complementos-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.complemento-tag {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 16px; border-radius: 50px;
  font-size: .82rem; color: var(--text-secondary);
  transition: var(--transition-fast);
}
.complemento-tag:hover {
  background: rgba(198,43,43,.1);
  border-color: rgba(198,43,43,.2);
  color: var(--white);
}

/* ============================================================
   SPECIALS BANNER
   ============================================================ */
.specials-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.specials-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.specials-content {
  position: relative; z-index: 1;
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
}
.specials-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.specials-text p {
  font-size: 1.1rem; color: rgba(255,255,255,.85);
  max-width: 500px; line-height: 1.7;
}
.specials-img {
  width: 350px; height: 350px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.2);
  box-shadow: 0 16px 64px rgba(0,0,0,.4);
  flex-shrink: 0;
}
.specials-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   VIDEO SHOWCASE
   ============================================================ */
.video-showcase {
  background: var(--bg-primary);
  padding: 100px 0;
  overflow: hidden;
}
.video-showcase-container {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.video-showcase-player {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
  box-shadow: 0 16px 64px rgba(198,43,43,.15);
  border: 1px solid rgba(255,255,255,.08);
}
.video-showcase-player video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-medium);
  cursor: pointer;
}
.video-play-overlay.playing {
  background: transparent;
  pointer-events: none;
}
.video-play-overlay.playing .video-play-btn {
  opacity: 0; transform: scale(.6);
}
.video-play-btn {
  width: 72px; height: 72px;
  background: rgba(198,43,43,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  transition: var(--transition-fast);
  box-shadow: 0 8px 32px rgba(198,43,43,.4);
}
.video-play-btn svg { margin-left: 3px; }
.video-play-overlay:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--red);
  box-shadow: 0 8px 40px rgba(198,43,43,.6);
}
.video-showcase-text .section-badge {
  text-align: left;
}
.video-showcase-text .section-badge::before { display: none; }
.video-showcase-text .section-badge::after { display: none; }

@media (max-width: 1024px) {
  .video-showcase-container { grid-template-columns: 1fr; gap: 32px; }
  .video-showcase-text { text-align: center; }
  .video-showcase-text .section-title { text-align: center !important; }
  .video-showcase-text .section-badge { text-align: center; display: block; }
}
@media (max-width: 768px) {
  .video-showcase { padding: 64px 0; }
  .video-play-btn { width: 56px; height: 56px; }
  .video-play-btn svg { width: 24px; height: 24px; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--bg-primary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition-fast);
}
.contact-card:hover {
  background: rgba(198,43,43,.05);
  border-color: rgba(198,43,43,.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 56px; height: 56px; min-width: 56px;
  background: rgba(198,43,43,.12);
  border: 1px solid rgba(198,43,43,.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.4rem;
}
.contact-card h3 {
  font-family: var(--font-accent);
  font-size: 1rem; font-weight: 600;
  margin-bottom: 6px;
}
.contact-card p {
  font-size: .9rem; color: var(--text-secondary);
  line-height: 1.6;
}
.contact-card a {
  color: var(--red-light);
  transition: var(--transition-fast);
}
.contact-card a:hover { color: var(--red); }

/* Map */
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  min-height: 400px;
}
.contact-map iframe {
  width: 100%; height: 100%; min-height: 400px;
  border: 0; filter: grayscale(.6) contrast(1.1);
  transition: filter .4s ease;
}
.contact-map:hover iframe { filter: grayscale(0) contrast(1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(198,43,43,.15);
  padding: 60px 0 0;
}
.footer-grid {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-secondary); font-size: .9rem;
  line-height: 1.7; max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-accent);
  font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--white); margin-bottom: 20px;
  position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 24px; height: 2px; background: var(--red);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .88rem; color: var(--text-secondary);
  transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--red-light); transform: translateX(4px); display: inline-block; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--red); border-color: var(--red);
  color: var(--white); transform: translateY(-3px);
  box-shadow: var(--shadow-red);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .82rem; color: var(--grey-medium);
}
.footer-bottom .heart { color: var(--red); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition-fast);
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 40px rgba(37,211,102,.5);
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.12); }
}
.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%;
  transform: translateY(-50%);
  background: var(--white); color: var(--black);
  padding: 10px 16px; border-radius: 8px;
  font-size: .82rem; font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: var(--transition-fast);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip::after {
  content: ''; position: absolute; top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--white);
}

/* ============================================================
   FLOATING PERSONA AVATAR
   ============================================================ */
.persona-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 999;
  width: 90px;
  height: 90px;
  cursor: pointer;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.persona-float.visible {
  transform: scale(1);
}
.persona-float.visible:hover {
  transform: scale(1.08);
}

/* Animated pulsing rings */
.persona-float-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid rgba(198, 43, 43, 0.5);
  animation: persona-ring-pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.persona-float-ring--delay {
  animation-delay: 1.25s;
}
@keyframes persona-ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Image wrapper — circular clip */
.persona-float-img-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #c62b2b, #ff6b35);
  padding: 3px;
  box-shadow:
    0 4px 20px rgba(198, 43, 43, 0.35),
    0 0 0 0 rgba(198, 43, 43, 0);
  transition: box-shadow 0.3s ease;
}
.persona-float:hover .persona-float-img-wrapper {
  box-shadow:
    0 8px 32px rgba(198, 43, 43, 0.5),
    0 0 20px rgba(198, 43, 43, 0.2);
}
.persona-float-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--dark);
  display: block;
}

/* Online status indicator */
.persona-float-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: #25D366;
  border-radius: 50%;
  border: 2.5px solid var(--dark);
  z-index: 2;
  animation: status-blink 3s ease-in-out infinite;
}
@keyframes status-blink {
  0%, 90%, 100% { opacity: 1; }
  95% { opacity: 0.4; }
}

/* Glassmorphism tooltip */
.persona-float-tooltip {
  position: absolute;
  right: 102px;
  bottom: 4px;
  width: 220px;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.persona-float:hover .persona-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.persona-float-tooltip::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: -8px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left-color: rgba(20, 20, 20, 0.92);
}
.persona-float-tooltip-header {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}
.persona-float-tooltip p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0 0 10px 0;
}
.persona-float-tooltip-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #25D366;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.persona-float:hover .persona-float-tooltip-cta {
  color: #2ee67a;
}

/* Subtle floating animation */
.persona-float.visible {
  animation: persona-float-bob 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
@keyframes persona-float-bob {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1) translateY(-6px); }
}
.persona-float.visible:hover {
  animation-play-state: paused;
  transform: scale(1.08);
}

/* Auto-show tooltip on entrance */
.persona-float.tooltip-auto-show .persona-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.persona-float.tooltip-auto-show .persona-float-img-wrapper {
  box-shadow:
    0 8px 32px rgba(198, 43, 43, 0.5),
    0 0 20px rgba(198, 43, 43, 0.2);
}



/* ============================================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.revealed {
  opacity: 1; transform: translateX(0);
}
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.revealed {
  opacity: 1; transform: translateX(0);
}
.reveal-scale {
  opacity: 0; transform: scale(.85);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-scale.revealed {
  opacity: 1; transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: .05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: .1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: .15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: .2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: .25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: .3s; }
.stagger-children .reveal:nth-child(7) { transition-delay: .35s; }
.stagger-children .reveal:nth-child(8) { transition-delay: .4s; }
.stagger-children .reveal:nth-child(9) { transition-delay: .45s; }
.stagger-children .reveal:nth-child(10) { transition-delay: .5s; }
.stagger-children .reveal:nth-child(11) { transition-delay: .55s; }
.stagger-children .reveal:nth-child(12) { transition-delay: .6s; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition-medium);
  cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.9);
  transition: transform .4s ease;
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-close:hover { background: var(--red); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 180px; right: 28px;
  z-index: 998;
  width: 44px; height: 44px;
  background: rgba(198,43,43,.8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-fast);
  box-shadow: 0 4px 16px rgba(198,43,43,.3);
}
.back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red);
  transform: translateY(-4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .specials-content { flex-direction: column; text-align: center; }
  .specials-img { width: 280px; height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 2/1; }
  .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center; gap: 24px;
    padding: 48px;
    transition: right .4s ease;
    border-left: 1px solid rgba(198,43,43,.2);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .hero-logo { width: 240px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .specials-img { width: 220px; height: 220px; }
  .persona-float { width: 75px; height: 75px; bottom: 92px; right: 20px; }
  .persona-float-img-wrapper { width: 75px; height: 75px; }
  .persona-float-status { width: 14px; height: 14px; bottom: 3px; right: 3px; }
  .persona-float-tooltip { width: 190px; right: 86px; padding: 12px 14px; }
  .persona-float-tooltip-header { font-size: 0.9rem; }
  .persona-float-tooltip p { font-size: 0.76rem; }
  .back-to-top { bottom: 160px; right: 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 1; }
  .hero-logo { width: 200px; }
  .btn-primary, .btn-outline { padding: 14px 28px; font-size: .9rem; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 16px; }
  .persona-float { width: 62px; height: 62px; bottom: 82px; right: 16px; }
  .persona-float-img-wrapper { width: 62px; height: 62px; padding: 2.5px; }
  .persona-float-status { width: 13px; height: 13px; bottom: 2px; right: 2px; border-width: 2px; }
  .persona-float-ring { inset: -3px; border-width: 2px; }
  .persona-float-tooltip { display: none; }
  .back-to-top { bottom: 142px; right: 16px; width: 38px; height: 38px; }
  .menu-tab { padding: 10px 16px; font-size: .78rem; }
}
