/* ==========================================================================
   SISTEMA DE DISEÑO PREMIUM - LA PARRILLA
   ========================================================================== */

:root {
  /* Paleta de Colores Extraída del Logo y Optimizada para Steakhouse */
  --bg-dark-1: #0a0a0a;          /* Negro absoluto */
  --bg-dark-2: #121212;          /* Antracita / Carbón oscuro */
  --bg-card: #1a1a1a;            /* Fondo de tarjetas */
  --border-color: #262626;       /* Bordes sutiles */
  
  --primary-red: #c62828;        /* Rojo Brasa (Logo) */
  --primary-red-glow: rgba(198, 40, 40, 0.3);
  --primary-red-hover: #b71c1c;  
  
  --accent-orange: #ff6b00;      /* Fuego / Brasas vivas */
  --accent-gold: #d4af37;        /* Acento Premium */
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  
  --text-light: #ffffff;         /* Textos principales */
  --text-gray: #a0a0a0;          /* Textos secundarios */
  --text-muted: #666666;         /* Textos desactivados */
  
  /* Fuentes */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Transiciones */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & ESTILOS GENERALES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-1);
  color: var(--text-light);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   COMPONENTES ESTRUCTURALES Y UTILIDADES
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1rem;
}

.no-padding {
  padding: 0 !important;
}

.section-padding {
  padding: 8rem 0;
}

.text-center {
  text-align: center;
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* Encabezados de Sección */
.section-header {
  margin-bottom: 5rem;
  position: relative;
}

.section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text-light) 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.header-divider {
  width: 80px;
  height: 3px;
  background: var(--primary-red);
  margin: 1.5rem auto 0;
  position: relative;
}

.header-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  border: 2px solid var(--bg-dark-1);
}

.section-description {
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: var(--text-gray);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Botones Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--text-light);
  box-shadow: 0 4px 15px var(--primary-red-glow);
  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, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--primary-red-hover);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--bg-dark-1);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 0.7rem 1.5rem;
  font-size: 0.75rem;
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-nav:hover {
  background: var(--accent-gold);
  color: var(--bg-dark-1);
  box-shadow: 0 4px 12px var(--accent-gold-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  gap: 0.75rem;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   1. HERO PRINCIPAL
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../assets/hero_grill.png') no-repeat center center/cover;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.85) 90%),
              linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, var(--bg-dark-1) 100%);
  z-index: 1;
}

/* Efecto de humo/fuego en el fondo */
.hero-flame-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom, rgba(255, 87, 34, 0.15) 0%, transparent 60%);
  z-index: 2;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  animation: embersGlow 8s infinite alternate ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem;
  max-width: 800px;
}

.logo-wrapper {
  margin-bottom: 2rem;
  display: inline-block;
}

.hero-logo-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--primary-red);
  box-shadow: 0 0 30px var(--primary-red-glow), 0 0 15px rgba(255, 107, 0, 0.4);
  transition: var(--transition-smooth);
}

.hero-logo-img:hover {
  transform: rotate(5deg) scale(1.05);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--text-light);
  line-height: 1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: var(--primary-red);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Indicador Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.scroll-down:hover {
  opacity: 1;
}

.scroll-down .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-gray);
  border-radius: 15px;
  position: relative;
}

.scroll-down .wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

.scroll-down .arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-down .arrows span {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--text-gray);
  border-right: 2px solid var(--text-gray);
  transform: rotate(45deg);
  margin: -2px 0;
  animation: scrollArrow 2s infinite;
}

.scroll-down .arrows span:nth-child(2) {
  animation-delay: 0.2s;
}

/* Animaciones del Hero */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards ease-out;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1.2s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-slide-up-delayed {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1.2s 0.3s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-fade-in-delayed {
  opacity: 0;
  animation: fadeIn 1.5s 0.6s forwards ease-out;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
  100% { top: 8px; opacity: 1; }
}

@keyframes scrollArrow {
  0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

@keyframes embersGlow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}

/* ==========================================================================
   2. BARRA DE NAVEGACIÓN FIJA (STICKY)
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

/* Efecto al hacer scroll */
.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
}

.nav-logo-text {
  background: linear-gradient(135deg, var(--text-light), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.active::after {
  background: var(--accent-gold);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
}

/* Hamburger animation */
.mobile-nav-toggle.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   3. SECCIÓN NUESTRAS ESPECIALIDADES
   ========================================================================== */

.bg-dark-1 {
  background-color: var(--bg-dark-1);
}

.bg-dark-2 {
  background-color: var(--bg-dark-2);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.specialty-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 35px var(--primary-red-glow);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 1;
}

.specialty-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
}

.specialty-card:hover::before {
  opacity: 0.4;
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 65%; /* Aspect Ratio 16:10 */
  overflow: hidden;
}

.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.specialty-card:hover .card-img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gold);
  color: var(--bg-dark-1);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.card-body {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.specialty-card:hover .card-title {
  color: var(--accent-gold);
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-gray);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.card-btn-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.card-btn-link:hover {
  color: var(--primary-red);
  transform: translateX(3px);
}

/* ==========================================================================
   SECCIÓN EXTRA: MENÚ COMPACTO CON TABS
   ========================================================================== */

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.menu-tab-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-gray);
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-tab-btn:hover {
  border-color: var(--primary-red);
  color: var(--text-light);
}

.menu-tab-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--text-light);
  box-shadow: 0 4px 15px var(--primary-red-glow);
}

.menu-tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.menu-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-color);
  transition: var(--transition-fast);
}

.menu-item:hover {
  border-bottom-color: var(--primary-red);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.menu-item-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-left: 1rem;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  font-weight: 300;
}

.menu-cta {
  margin-top: 3.5rem;
}

/* ==========================================================================
   4. GALERÍA GASTRONÓMICA
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 75%; /* Aspect ratio 4:3 */
}

.gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-info {
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.5rem;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

/* ==========================================================================
   5. ¿POR QUÉ ELEGIRNOS?
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.06);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition-smooth);
  color: var(--accent-gold);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--accent-gold);
  color: var(--bg-dark-1);
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

.feature-icon {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ==========================================================================
   6. OPINIONES DE CLIENTES (TESTIMONIOS)
   ========================================================================== */

.testimonials-section {
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)),
              url('../assets/gallery_ambiance.png') no-repeat center center/cover;
}

.testimonials-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonials-slider {
  position: relative;
  min-height: 250px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  text-align: center;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--primary-red);
  line-height: 0.3;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-rating {
  font-size: 1.15rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.testimonial-author {
  margin-top: 1rem;
}

.author-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.author-status {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-top: 0.25rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot:hover {
  background: var(--text-gray);
}

.dot.active {
  background: var(--primary-red);
  transform: scale(1.2);
}

/* ==========================================================================
   7. SECCIÓN DE RESERVACIONES
   ========================================================================== */

.reservation-section {
  position: relative;
  background: url('../assets/hero_grill.png') no-repeat center center/cover;
  background-attachment: fixed;
}

.reservation-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.85);
  z-index: 1;
}

.reservation-box {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4.5rem;
  border-radius: 12px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.reservation-intro {
  color: var(--text-gray);
  max-width: 500px;
  margin: 0.8rem auto 1.5rem;
  font-size: 0.95rem;
  font-weight: 300;
}

.reservation-form {
  margin-top: 3rem;
}

.form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-row.flex-three .form-group {
  flex: 1;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  border-radius: 4px;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(15, 15, 15, 0.9);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

/* Spinner Loading */
.btn-loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--text-light);
  animation: spin 0.8s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   MODAL DE FEEDBACK EXITOSO
   ========================================================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--primary-red);
  padding: 3.5rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(198, 40, 40, 0.2);
}

.modal.open .modal-content {
  transform: translateY(0);
}

.modal-icon-success {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  border: 2px solid #25d366;
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.modal-icon-success svg {
  width: 32px;
  height: 32px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-text {
  font-size: 0.92rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.modal-details {
  background: rgba(10, 10, 10, 0.5);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: left;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.modal-details p {
  margin-bottom: 0.5rem;
}

.modal-details p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   8. INFORMACIÓN DE CONTACTO Y MAPA
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.contact-info-content p {
  color: var(--text-gray);
  font-size: 0.92rem;
  font-weight: 300;
}

.contact-link {
  transition: var(--transition-fast);
}

.contact-link:hover {
  color: var(--primary-red);
}

.contact-buttons-wrapper {
  margin-top: 1.5rem;
}

/* Contenedor del Mapa */
.map-container-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-height: 380px;
}

.map-inner {
  width: 100%;
  height: 100%;
}

.dark-map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: #111111;
  overflow: hidden;
  min-height: 380px;
}

.map-svg-roads {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-marker-pin {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  background: var(--bg-dark-1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.marker-pin-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.map-marker-pin.glow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-orange);
  animation: pulsePin 2s infinite;
  z-index: -1;
}

@keyframes pulsePin {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.map-card-floating {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border-color);
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  z-index: 10;
  backdrop-filter: blur(10px);
  max-width: 250px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.map-card-floating h5 {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.map-card-floating p {
  font-size: 0.78rem;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.map-routing-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.map-routing-btn:hover {
  color: var(--text-light);
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */

.footer {
  background-color: #050505;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
}

.footer-tagline {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 450px;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: rgba(198, 40, 40, 0.05);
  transform: translateY(-3px);
}

.feather-social {
  width: 18px;
  height: 18px;
}

.footer-links-group h4,
.footer-contact-group h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links-group h4::after,
.footer-contact-group h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-red);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-gray);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-gray);
  font-weight: 300;
}

.footer-link-text {
  transition: var(--transition-fast);
}

.footer-link-text:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.designer-link {
  color: var(--text-gray);
  font-weight: 600;
}

.designer-link:hover {
  color: var(--primary-red);
}

/* ==========================================================================
   RESPONSIVIDAD Y ADAPTABILIDAD (MOBILE FIRST)
   ========================================================================== */

/* --- TABLETS (Menos de 1024px) --- */
@media (max-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-tagline {
    font-size: 1.4rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- MOVILES GRANDES / TABLET RETRATO (Menos de 768px) --- */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar.scrolled {
    padding: 0.8rem 0;
  }
  
  .mobile-nav-toggle {
    display: flex;
    z-index: 110;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 8rem 2.5rem;
    gap: 1.8rem;
    transition: var(--transition-smooth);
    z-index: 105;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-cta {
    display: none; /* Ocultar CTA del nav en móvil */
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
  }
  
  .hero-slogan {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .menu-tabs {
    flex-wrap: wrap;
  }
  
  .menu-tab-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
    flex-grow: 1;
    text-align: center;
  }
  
  .reservation-box {
    padding: 2rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-row.flex-three {
    flex-direction: column;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

/* --- MOVILES CHICOS (Menos de 480px) --- */
@media (max-width: 480px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP Y ELEMENTOS ADICIONALES
   ========================================================================== */

.whatsapp-floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 0 15px rgba(37, 211, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.whatsapp-floating-btn svg {
  width: 32px;
  height: 32px;
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.3);
  background-color: #22c35e;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  border-left: 3px solid #25d366;
}

.whatsapp-floating-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Estilos de botones de llamada distribuidos */
.btn-call-cta {
  background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
  border: none;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.25);
}

.btn-call-cta:hover {
  background: linear-gradient(135deg, var(--primary-red-hover), var(--primary-red));
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  transform: translateY(-3px);
}

.btn-call-cta-secondary {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.btn-call-cta-secondary:hover {
  background: var(--accent-gold);
  color: var(--bg-dark-1);
  box-shadow: 0 6px 20px var(--accent-gold-glow);
  transform: translateY(-3px);
}

/* Ocultar tooltip en dispositivos móviles */
@media (max-width: 768px) {
  .whatsapp-tooltip {
    display: none;
  }
  .whatsapp-floating-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-floating-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   SISTEMA DE ANIMACIÓN AL HACER SCROLL (SCROLL REVEAL)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

/* Estado activo cuando entra en el viewport */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delays para escalonar la aparición de elementos (Stagger effect) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Micro-animación permanente de pulsación suave para botones CTA principales */
.glow-pulse {
  animation: buttonPulse 2.5s infinite alternate ease-in-out;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 4px 15px var(--primary-red-glow), 0 0 0 0 rgba(198, 40, 40, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.6), 0 0 10px 4px rgba(198, 40, 40, 0.2);
  }
}

