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

:root {
  --primary-red: #C41E3A;
  --dark-red: #8B0000;
  --light-red: #DC143C;
  --accent-red: #FF6B6B;
  --warm-white: #FFF8DC;
  --cream: #F5F5DC;
  --dark-brown: #3E2723;
  --gold: #FFD700;
  --shadow: rgba(196, 30, 58, 0.3);
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
  min-height: 100vh;
}

/* Header Styles */
.hero {
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 50%, var(--light-red) 100%);
  color: white;
  padding: 2rem 0;
  position: relative;
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="flames" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10,20 Q5,10 10,0 Q15,10 10,20" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23flames)"/></svg>');
  opacity: 0.3;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.header-left .imagen-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.header-left .imagen-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.header-center {
  text-align: center;
  flex: 1;
  margin: 0 2rem;
}

.header-center h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  letter-spacing: 2px;
  background: linear-gradient(45deg, var(--gold), #FFF, var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.subtitulo {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--warm-white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-top: 0.5rem;
}

.header-right .redes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.nav-item {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.nav-item:hover {
  background: var(--gold);
  color: var(--dark-red);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Ubicación Section */
#ubicacion {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 3px solid var(--primary-red);
  position: relative;
  overflow: hidden;
}

#ubicacion::before {
  content: '📍';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.3;
}

.ubicacion-mapa {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  border: 3px solid var(--primary-red);
  box-shadow: 0 8px 25px var(--shadow);
  transition: transform 0.3s ease;
}

.ubicacion-mapa:hover {
  transform: scale(1.02);
}

/* Reservas Section */
#reservas {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 10px 30px var(--shadow);
  position: relative;
  overflow: hidden;
}

#reservas::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

#reservas > * {
  position: relative;
  z-index: 2;
}

#reservas h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: 700;
}

#reservas p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--warm-white);
}

#reservas a {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-red);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#reservas a:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

#reservas a:before {
  content: '📞 ';
  font-size: 1.1em;
}

/* Products Section */
.products {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 5px solid var(--primary-red);
  min-height: 200px;
  position: relative;
}

.products::before {
  content: '🥩 Próximamente nuestro menú 🥩';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: var(--primary-red);
  font-weight: 600;
  text-align: center;
  opacity: 0.7;
}

/* Sección Contacto */
.contacto-section {
  background: linear-gradient(135deg, var(--warm-white) 0%, white 100%);
  padding: 4rem 0;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.contacto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-red), var(--gold), var(--primary-red));
}

.contacto-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.contacto-header h2 {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.contacto-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--gold));
  border-radius: 2px;
}

.contacto-header p {
  font-size: 1.2rem;
  color: #666;
  margin-top: 1.5rem;
}

.contacto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Formulario de contacto */
.contacto-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid var(--primary-red);
  position: relative;
  overflow: hidden;
}

.contacto-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--gold), var(--primary-red));
}

.contacto-form h3 {
  color: var(--primary-red);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: var(--warm-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 10px rgba(196, 30, 58, 0.2);
  background: white;
}

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

.btn-enviar {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-enviar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.btn-enviar:hover::before {
  width: 300px;
  height: 300px;
}

.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

/* Información de contacto */
.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 5px solid var(--primary-red);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--gold));
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.1;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.info-card h4 {
  color: var(--primary-red);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-card p {
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Horarios específicos */
.horarios-list {
  background: var(--warm-white);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #eee;
}

.horarios-list p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.horarios-list strong {
  color: var(--primary-red);
}

.cerrado {
  color: var(--primary-red) !important;
  font-weight: 600;
  font-style: italic;
}

/* Botones de acción */
.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reservar-btn {
  background: linear-gradient(135deg, var(--gold), #FFE55C);
  color: var(--dark-red);
  border: 2px solid var(--gold);
}

.reservar-btn:hover {
  background: linear-gradient(135deg, #FFE55C, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: 2px solid #25D366;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-action .icon {
  font-size: 1.2rem;
}

/* Ubicación específica */
.direccion {
  background: var(--warm-white);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-red);
  font-weight: 600;
  color: var(--dark-red) !important;
}

.direccion .icon {
  margin-right: 0.5rem;
}

.descripcion {
  font-style: italic;
  color: #555 !important;
  margin: 1rem 0;
}

.extra-info {
  font-size: 0.9rem;
  color: #777 !important;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent-red);
}

/* Footer con Redes Sociales */
footer {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #2C1810 100%);
  color: var(--warm-white);
  padding: 3rem 0 2rem 0;
  margin-top: 3rem;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--gold), var(--primary-red));
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Información del footer */
.footer-info {
  text-align: left;
}

.footer-info p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-info h5 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* Redes sociales */
.footer-redes {
  text-align: right;
}

.footer-redes h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.redes-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}

.red-social {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  min-width: 140px;
  justify-content: flex-start;
}

.red-social .icon {
  font-size: 1.2rem;
  min-width: 20px;
}

/* Colores específicos para cada red social */
.red-social.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.red-social.instagram:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
  border-color: #E1306C;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.red-social.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.red-social.email:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.red-social:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
  }
  
  .header-center h1 {
      font-size: 2.5rem;
  }
  
  .header-right .redes {
      flex-direction: row;
      justify-content: center;
  }
  
  main {
      padding: 1rem;
  }
  
  #ubicacion, #reservas, .products {
      padding: 1.5rem;
  }
  
  .ubicacion-mapa {
      height: 300px;
  }
  
  #reservas h2 {
      font-size: 2rem;
  }
  
  .contacto-container {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .contacto-form,
  .info-card {
      padding: 1.5rem;
  }
  
  .contacto-header h2 {
      font-size: 2.5rem;
  }
  
  .btn-action {
      width: 100%;
      justify-content: center;
  }
  
  /* Footer responsive */
  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }
  
  .footer-info,
  .footer-redes {
      text-align: center;
  }
  
  .redes-icons {
      align-items: center;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.8rem;
  }
  
  .red-social {
      min-width: auto;
      flex: 1;
      min-width: 120px;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .redes-icons {
      flex-direction: column;
      width: 100%;
  }
  
  .red-social {
      width: 100%;
      justify-content: center;
  }
}

/* Animaciones */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
      opacity: 0;
      transform: translateX(50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

#ubicacion, #reservas, .products {
  animation: fadeInUp 0.8s ease-out;
}

#ubicacion:hover, .products:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.contacto-form {
  animation: slideInLeft 0.8s ease-out;
}

.contacto-info {
  animation: slideInRight 0.8s ease-out;
}

.info-card {
  animation: slideInRight 0.8s ease-out;
}

.info-card:nth-child(2) { animation-delay: 0.1s; }
.info-card:nth-child(3) { animation-delay: 0.2s; }
.info-card:nth-child(4) { animation-delay: 0.3s; }

.footer-redes {
  animation: slideInRight 0.8s ease-out;
}

.footer-info {
  animation: slideInLeft 0.8s ease-out;
}

.red-social {
  animation: fadeInUp 0.6s ease-out;
}

.red-social:nth-child(1) { animation-delay: 0.1s; }
.red-social:nth-child(2) { animation-delay: 0.2s; }
.red-social:nth-child(3) { animation-delay: 0.3s; }
.red-social:nth-child(4) { animation-delay: 0.4s; }

/* Fire effect for header */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, 
      var(--gold) 0%, 
      var(--accent-red) 25%, 
      var(--gold) 50%, 
      var(--accent-red) 75%, 
      var(--gold) 100%
  );
  animation: flicker 2s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}


/* CSS ADICIONAL PARA PÁGINA NOSOTROS - Agregar al final de styles.css */

/* Historia Section */
.historia-section {
  background: linear-gradient(135deg, var(--warm-white) 0%, white 100%);
  padding: 4rem 0;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.historia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-red), var(--gold), var(--primary-red));
}

.historia-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.historia-header {
  text-align: center;
  margin-bottom: 4rem;
}

.historia-header h2 {
  font-size: 3.5rem;
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.historia-divider {
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--gold), var(--primary-red));
  margin: 0 auto;
  border-radius: 2px;
}

.historia-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.historia-texto h3 {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 2rem;
  font-weight: 600;
}

.historia-texto p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.historia-quote {
  background: var(--warm-white);
  padding: 2rem;
  border-left: 5px solid var(--primary-red);
  border-radius: 10px;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark-red);
  position: relative;
}

.historia-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-red);
  position: absolute;
  top: -10px;
  left: 15px;
  font-family: serif;
}

.historia-quote cite {
  display: block;
  text-align: right;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-red);
}

.historia-valores {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 2px solid var(--primary-red);
  margin-top: 2rem;
}

.historia-valores h4 {
  color: var(--primary-red);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.historia-valores ul {
  list-style: none;
  padding: 0;
}

.historia-valores li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #666;
}

.historia-valores li:last-child {
  border-bottom: none;
}

.historia-valores strong {
  color: var(--primary-red);
  font-weight: 600;
}

.historia-imagen {
  position: sticky;
  top: 2rem;
}

.imagen-placeholder {
  background: linear-gradient(135deg, var(--warm-white), #f9f9f9);
  border: 3px dashed var(--primary-red);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--primary-red);
  transition: all 0.3s ease;
}

.imagen-placeholder:hover {
  background: linear-gradient(135deg, #f9f9f9, var(--warm-white));
  transform: scale(1.02);
}

.imagen-placeholder span {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.imagen-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-red);
}

/* Galería Section */
.galeria-section {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: white;
  padding: 4rem 0;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.galeria-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.1; }
}

.galeria-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem; /* Asegurar padding */
  position: relative;
  z-index: 2;
}

.galeria-section h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  z-index: 10; /* Agregar esto */
  position: relative; /* Agregar esto */
}

.galeria-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--warm-white);
  margin-bottom: 3rem;
  z-index: 10; /* Agregar esto */
  position: relative; /* Agregar esto */
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.foto-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
}

.foto-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  border-color: var(--gold);
}

.foto-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.foto-placeholder span {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.foto-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-white);
}

/* Ubicación Nosotros Section */
.ubicacion-nosotros-section {
  background: white;
  padding: 4rem 0;
  margin: 3rem 0;
}

.ubicacion-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ubicacion-info h2 {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 2rem;
  font-weight: 700;
}

.direccion-completa {
  background: var(--warm-white);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--primary-red);
  margin-bottom: 2rem;
}

.direccion-completa h3 {
  color: var(--primary-red);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.direccion-completa p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.transporte-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.transporte-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid #eee;
  transition: all 0.3s ease;
}

.transporte-item:hover {
  border-color: var(--primary-red);
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.1);
}

.transporte-item h4 {
  color: var(--primary-red);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.transporte-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.ubicacion-botones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-como-llegar,
.btn-consultar {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  justify-content: center;
  min-width: 180px;
}

.btn-como-llegar {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: white;
  border: 2px solid var(--primary-red);
}

.btn-como-llegar:hover {
  background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn-consultar {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: 2px solid #25D366;
}

.btn-consultar:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-como-llegar .icon,
.btn-consultar .icon {
  font-size: 1.2rem;
}

.mapa-grande {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border: 3px solid var(--primary-red);
  transition: all 0.3s ease;
}

.mapa-grande:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(196, 30, 58, 0.3);
}

.mapa-grande iframe {
  filter: saturate(1.2) contrast(1.1);
  transition: filter 0.3s ease;
}

.mapa-grande:hover iframe {
  filter: saturate(1.4) contrast(1.2);
}

/* Responsive para página Nosotros */
@media (max-width: 768px) {
  .historia-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .historia-header h2 {
      font-size: 2.5rem;
  }
  
  .historia-texto h3 {
      font-size: 1.6rem;
  }
  
  .galeria-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .galeria-section h2 {
      font-size: 2.5rem;
  }
  
  .ubicacion-container {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .ubicacion-info h2 {
      font-size: 2rem;
  }
  
  .ubicacion-botones {
      flex-direction: column;
  }
  
  .btn-como-llegar,
  .btn-consultar {
      width: 100%;
  }
  
  .mapa-grande iframe {
      height: 350px;
  }
}

@media (max-width: 480px) {
  .historia-header h2 {
      font-size: 2rem;
  }
  
  .historia-quote {
      padding: 1.5rem;
      font-size: 1rem;
  }
  
  .historia-valores {
      padding: 1.5rem;
  }
  
  .galeria-section h2 {
      font-size: 2rem;
  }
  
  .foto-placeholder {
      padding: 2rem 1rem;
      height: 200px;
  }
  
  .foto-placeholder span {
      font-size: 2.5rem;
  }
}


.foto-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.foto-item img:hover {
  transform: scale(1.05);
}



.menu-section {
  background: white;
  padding: 4rem 0;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-red), var(--gold), var(--primary-red));
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-header h2 {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.menu-header p {
  font-size: 1.2rem;
  color: #666;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.menu-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 3px solid var(--primary-red);
  transition: all 0.3s ease;
  background: white;
}

.menu-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(196, 30, 58, 0.3);
}

.menu-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-image {
  transform: scale(1.05);
}

.menu-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-overlay {
  transform: translateY(0);
}

.menu-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

.menu-overlay p {
  font-size: 1rem;
  color: var(--warm-white);
}

.menu-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-pedido,
.btn-consultar {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 200px;
  justify-content: center;
}

.btn-pedido {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: white;
  border: 2px solid var(--primary-red);
}

.btn-pedido:hover {
  background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn-consultar {
  background: linear-gradient(135deg, var(--gold), #FFE55C);
  color: var(--dark-red);
  border: 2px solid var(--gold);
}

.btn-consultar:hover {
  background: linear-gradient(135deg, #FFE55C, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-pedido .icon,
.btn-consultar .icon {
  font-size: 1.2rem;
}

/* Responsive */
/* En styles.css, busca esta parte y reemplazala: */
@media (max-width: 768px) {
  .hero {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
      padding: 1rem; /* Agregar menos padding */
  }
  
  .header-center h1 {
      font-size: 2rem; /* Reducir tamaño del título */
  }
  
  .header-right .redes {
      flex-direction: row; /* Cambiar a fila */
      justify-content: center;
      gap: 0.5rem; /* Reducir espacio entre botones */
      flex-wrap: wrap; /* Permitir que se envuelvan */
  }
  
  .nav-item {
      padding: 0.6rem 1rem; /* Botones más pequeños */
      font-size: 0.9rem; /* Texto más pequeño */
      min-width: auto; /* Quitar ancho mínimo */
  }
}

/* Agregar esta media query adicional para pantallas muy pequeñas */
@media (max-width: 480px) {
  .header-right .redes {
      flex-direction: column; /* En pantallas muy pequeñas, botones en columna */
      width: 100%;
  }
  
  .nav-item {
      width: 100%;
      text-align: center;
  }
  
  .header-center h1 {
      font-size: 1.8rem;
  }
}


/* ===========================
   Modal de imágenes (menú + galería)
   =========================== */
   .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: pointer;
}

.modal-image {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.5); /* estilo más neutro para galería */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255,0,0,0.7);
    transform: scale(1.1);
}

.clickable-menu {
    cursor: pointer;
}

/* Hover en imágenes de galería */
.galeria-grid img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galeria-grid img:hover {
    transform: scale(1.05);
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-image {
        width: 95%;
        max-height: 85%;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 50px;
        height: 50px;
    }
}