/* ================================================= */
/* === Paleta de Colores y Variables Actualizada === */
/* ================================================= */
:root {
  /* Paleta: Intensa, Urbana, Apetecible (Rojo, Negro, Beige) */
  --primary-color: #FF0000; /* Rojo (Principal, Titulares, Énfasis) */
  --secondary-color: #FFFFCC; /* Beige (Soporte/Contraste) */
  --accent-color: #009933; /* Verde (Detalle mínimo/Acento secundario) */

  --text-dark: #0B0B0B; /* Negro Profundo (Texto sobre Beige/Claro) */
  --text-light: #ffffff; /* Blanco (Texto sobre Negro Mate/Oscuro) */
  --bg-light: #FFFFCC; /* Beige (Soporte/Contraste para secciones claras) */
  --bg-dark: #1A1A1A; /* Negro Mate (Fondos dominantes, Footer) */

  --font-family-primary: 'Passion One', sans-serif;
  --font-family-secondary: 'Roboto', sans-serif;
}

/* ================================================= */
/* === Reseteo Básico y Estilos Generales === */
/* ================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-secondary);
  line-height: 1.6;
  color: var(--text-dark); /* Color por defecto, usado sobre fondo claro */
  background-color: var(--bg-dark); /* Fondo principal de la marca: Negro Mate */
  /* Suavizado de fuente para mejor lectura */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

/* ================================================= */
/* === Botones y CTAs (Añadiendo movimiento) === */
/* ================================================= */
.btn-cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color); /* Rojo principal */
  color: var(--text-light) !important;
  font-weight: 700; /* Roboto Bold */
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--primary-color);
}

.btn-cta:hover {
  background-color: #cc0000; /* Rojo más oscuro */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
}

.btn-cta.secondary {
  background-color: transparent;
  border: 2px solid var(--secondary-color); /* Borde Beige */
  color: var(--secondary-color) !important;
  padding: 10px 28px;
}

.btn-cta.secondary:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark) !important; /* Texto Negro Profundo sobre Beige */
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 204, 0.4);
}

/* ================================================= */
/* === Header (Fondo claro para contraste) === */
/* ================================================= */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: var(--bg-light); /* Fondo Beige (Soporte/Contraste) */
  border-bottom: 1px solid var(--text-dark); /* Borde Negro Profundo */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Botón Hamburguesa - Oculto por defecto en desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

/* Línea del Botón Hamburguesa */
.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: var(--primary-color); /* Usar el rojo principal */
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animación del botón hamburguesa cuando está activo */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.logo a {
  font-size: 2em;
  font-weight: 900;
  color: var(--primary-color); /* Rojo Principal */
  font-family: var(--font-family-primary); /* Passion One */
  letter-spacing: 1px;
}

.logo a span {
  color: var(--text-dark); /* Negro Profundo */
}

.nav-links ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Contenedor de posicionamiento para el menú desplegable */
.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--text-dark); /* Negro Profundo */
  font-weight: 500; /* Roboto Medium */
  padding: 5px 0;
  display: block;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color); /* Rojo */
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 3px;
}

/* CTA del Header (Rojo principal) */
.cta-header {
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: var(--text-light) !important;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 700;
  border: 2px solid var(--primary-color);
}

.cta-header:hover {
  background-color: #cc0000;
}

/* ================================================= */
/* === ESTILOS PARA DROPDOWN (MENÚ DESPLEGABLE) === */
/* ================================================= */
.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  z-index: 1010;
  background-color: var(--text-light); /* Blanco para legibilidad */
  min-width: 180px;
  padding: 0;
  border: 1px solid var(--text-dark);
  border-top: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Mostrar el menú cuando tiene la clase 'active' (por click) */
.dropdown-menu.active {
  display: block !important;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  padding: 10px 20px;
  font-size: 0.95em;
  font-weight: 400; /* Roboto Regular */
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light); /* Fondo Beige */
  color: var(--primary-color); /* Rojo */
}

/* Estilo para el enlace padre cuando el menú está abierto */
.dropdown.active > .dropdown-toggle {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 3px;
}

/* ================================================= */
/* === SECCIÓN HERO (Fondo Oscuro/Negro Mate) === */
/* ================================================= */
.hero-section {
  background-image: url('https://images.unsplash.com/photo-1541748831952-e42159042b36?w=800'); /* Imagen urbana/intensa */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.75); /* Opacidad alta para contrastar con el texto claro */
  padding: 60px 5%;
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  color: var(--text-light); /* Texto Blanco */
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}


.hero-content h1 {
  font-size: 4.5em;
  margin-bottom: 20px;
  font-family: var(--font-family-primary); /* Passion One */
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary-color); /* Título en Rojo */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}

.hero-content p {
  font-size: 1.6em;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300; /* Roboto Light */
}

/* ================================================= */
/* === Sección Servicios (Fondo Negro Mate) === */
/* ================================================= */
.services-section {
  padding: 100px 5%;
  background-color: var(--bg-dark); /* Fondo Negro Mate */
  color: var(--text-light); /* Texto por defecto en Blanco */
}

.services-section h2 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 60px;
  color: var(--primary-color); /* Titulares en Rojo */
  font-family: var(--font-family-primary); /* Passion One */
  font-weight: 700;
  position: relative;
}

.services-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color); /* Subrayado Beige */
  margin: 15px auto 0;
  border-radius: 2px;
}

.service-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 80px;
  background-color: var(--bg-dark); /* Mantener el fondo de la sección (Negro Mate) */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* CAMBIO: Altura estándar para todas las filas */
  height: 450px;
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Columna de Texto */
.service-col.text-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #222; /* Ligeramente más claro que el fondo para distinción */
  color: var(--text-light);
}

.service-col.text-content h3 {
  font-size: 2.2em;
  color: var(--secondary-color); /* Titulares secundarios en Beige */
  margin-bottom: 20px;
  font-family: var(--font-family-primary); /* Passion One */
}

.service-col.text-content p {
  margin-bottom: 30px;
  font-size: 1.15em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300; /* Roboto Light */
}

/* Columna de Imagen - AJUSTE TÉCNICO APLICADO AQUÍ */
.service-col.image-content {
  flex: 1;
  /* CAMBIO: Forzamos altura completa */
  height: 100%; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary-color); /* Fondo en Rojo para el placeholder */
  transition: transform 0.5s ease;
}

/* Asegurar que la imagen dentro no se deforme */
.service-col.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Evita que la foto se estire */
  display: block;
}

/* Efecto Zoom al pasar el ratón en la imagen */
.service-row:hover .service-col.image-content {
    transform: scale(1.03);
}

/* ASIGNACIÓN DE IMÁGENES POR ID */
#service-steaks .image-content {
  background-image: url('https://images.unsplash.com/photo-1577366311894-399081a951c5?w=600'); /* Comida intensa */
  background-size: cover;
  background-position: center;
}

#service-pizza .image-content {
  background-image: url('https://images.unsplash.com/photo-1594300300647-817347a83d7a?w=600'); /* Pizza urbana/intensa */
  background-size: cover;
  background-position: center;
}

#service-cafe .image-content {
  background-image: url('https://images.unsplash.com/photo-1542475143-3932a353d262?w=600'); /* Café con estilo urbano */
  background-size: cover;
  background-position: center;
}

/* ================================================= */
/* === Sección Refuerzo (Fondo Beige para contraste) === */
/* ================================================= */
.reinforce-section {
  background-color: var(--bg-light); /* Fondo Beige */
  color: var(--text-dark);
  padding: 100px 5%;
  text-align: center;
}

.reinforce-content h2 {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-family: var(--font-family-primary); /* Passion One */
  color: var(--primary-color); /* Título en Rojo */
}

.reinforce-content p {
  font-size: 1.4em;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

/* ================================================= */
/* === Footer (Diseño Negro Mate) === */
/* ================================================= */
.main-footer {
  display: flex;
  justify-content: space-between;
  padding: 60px 5%;
  background-color: var(--bg-dark); /* Negro Mate */
  color: var(--text-light);
  border-top: 5px solid var(--primary-color); /* Borde de color principal (Rojo) */
}

.footer-column {
  flex: 1;
  min-width: 200px;
  padding: 0 20px;
}

.footer-column h4 {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: var(--primary-color); /* Títulos de columna en Rojo */
  font-family: var(--font-family-primary); /* Passion One */
  border-bottom: 1px solid rgba(255, 0, 0, 0.3); /* Subrayado sutil */
  padding-bottom: 5px;
}

.footer-column li,
.footer-column p {
  margin-bottom: 12px;
  font-size: 0.95em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.footer-column a {
  color: var(--text-light);
  opacity: 0.8;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--secondary-color); /* Beige */
}

/* Derechos de autor/Copia final */
.footer-copy {
    width: 100%;
    text-align: center;
    padding: 15px 5%;
    background-color: #000000; /* Negro puro para mayor contraste */
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85em;
    margin-top: 20px;
}


/* ================================================= */
/* === Media Queries para Responsive Design (Ajustado) === */
/* ================================================= */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4em;
  }
}

@media (max-width: 1024px) {
  /* CAMBIO: Ajustamos altura para tablets */
  .service-row {
      height: 400px;
  }
}

@media (max-width: 768px) {
  /* Header */
  .main-header {
    padding: 15px 4%;
  }

  /* Botón Hamburguesa: Mostrar en tablet y móvil */
  .hamburger {
    display: flex;
  }
  
  /* Ocultar la navegación principal por defecto en móvil */
  .nav-links {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-light); /* Fondo Beige */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
      display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }
  
  .nav-links li {
      width: 100%;
      text-align: center;
  }
  
  .nav-links a {
      padding: 15px 0;
      border-bottom: 1px solid rgba(11, 11, 11, 0.1); /* Borde sutil */
  }

  .nav-links a:hover {
      border-bottom: none;
  }

  .cta-header {
      margin-top: 10px;
      margin-bottom: 10px;
      display: inline-block;
  }

  /* Dropdown en móvil: se expande a todo el ancho */
  .dropdown-menu {
    left: 0;
    transform: none;
    min-width: 100%;
    box-shadow: none;
    border-left: none;
    border-right: none;
    top: 100%; 
    border-radius: 0;
    position: static; 
  }
  
  .dropdown-menu.active {
    transform: none; 
  }

  /* Hero */
  .hero-section {
    background-attachment: scroll;
    min-height: 60vh;
  }

  .hero-overlay {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 2.8em;
  }

  .hero-content p {
      font-size: 1.3em;
  }

  /* Servicios: siempre apilados en móvil */
  .services-section {
      padding: 60px 4%;
  }

  .services-section h2 {
      font-size: 2.5em;
      margin-bottom: 40px;
  }

  .service-row {
    flex-direction: column;
    margin-bottom: 50px;
    /* CAMBIO: Quitamos altura fija en móviles */
    height: auto; 
  }

  .service-col.text-content {
    order: 2;
    padding: 30px;
  }

  .service-col.image-content {
    order: 1;
    /* CAMBIO: Altura fija solo para la imagen en móvil */
    height: 250px; 
    flex: none;
  }

  /* Refuerzo */
  .reinforce-content h2 {
      font-size: 2.5em;
  }

  /* Footer */
  .main-footer {
    flex-direction: column;
    gap: 40px;
    padding: 50px 4%;
  }

  .footer-column {
    padding: 0;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .main-header {
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 15px 4%;
  }
  
  .logo a {
      font-size: 1.8em;
  }
  
  .nav-links ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0;
  }

  .hero-content h1 {
      font-size: 2.2em;
  }

  .hero-content p {
      font-size: 1.1em;
  }

  .service-col.image-content {
    /* CAMBIO: Ajuste para pantallas pequeñas */
    height: 200px; 
  }
}

/* ================================================= */
/* === PIZZEIRO MENU — ESTILOS ESPECÍFICOS === */
/* ================================================= */

:root {
  /* Espaciado */
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

/* Base del Main */
main {
  padding-top: 80px;
}

/* SECCIÓN BANNER DEL MENÚ */
.menu-banner {
  width: 100%;
  margin-bottom: var(--spacing-xl);
}

.menu-banner-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.menu-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); 
}

.menu-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.3), rgba(255, 0, 0, 0.4), rgba(26, 26, 26, 0.3));
}

.menu-banner-text {
  font-family: var(--font-family-primary); 
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--secondary-color); 
  letter-spacing: 0.1em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

/* SECCIÓN MENÚ PRINCIPAL */
.menu-section {
  padding: 0 2rem var(--spacing-xl) 2rem;
  background-color: var(--bg-dark); 
  color: var(--text-light); 
}

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

/* Botones de Categoría */
.menu-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  border-bottom: 2px solid var(--secondary-color); 
  padding-bottom: 1rem;
}

.menu-btn {
  font-family: var(--font-family-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--text-light); 
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  border-bottom: 3px solid transparent;
}

.menu-btn:hover {
  color: var(--primary-color); 
  border-bottom: 3px solid var(--primary-color);
}

.menu-btn.active {
  background-color: transparent;
  color: var(--primary-color); 
  font-weight: 700;
  border-bottom: 3px solid var(--primary-color);
}

/* Títulos de Categoría y Subtítulos */
.menu-category-title {
  font-family: var(--font-family-primary); 
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color); 
  text-align: center;
  margin-bottom: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-section-description {
  text-align: center;
  font-family: var(--font-family-secondary);
  font-size: 1.1rem;
  color: var(--secondary-color); 
  opacity: 0.8;
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
}

.menu-section-subtitle {
  font-family: var(--font-family-primary); 
  font-size: 1.8rem; 
  font-weight: 700;
  color: var(--secondary-color); 
  margin-top: var(--spacing-md);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 204, 0.3);
  padding-bottom: 0.5rem;
}


/* Diseño de los ítems del menú */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.menu-item {
  margin-bottom: var(--spacing-md);
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

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

.menu-item-name {
  font-family: var(--font-family-secondary); 
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.menu-item-price {
  font-family: var(--font-family-primary); 
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color); 
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.menu-item-description {
  font-family: var(--font-family-secondary);
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.7;
  line-height: 1.6;
  font-weight: 300;
}

/* Responsive Menú */
@media (max-width: 768px) {
  .menu-buttons {
      gap: 0.75rem;
      padding-bottom: 0.5rem;
  }
  
  .menu-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
  }
  
  .menu-category-title {
      font-size: 2rem;
  }
  
  .menu-btn {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
  }

  main {
      padding-top: 60px;
  }
}

/* ==================================== */
/* ESTILOS ESPECÍFICOS PARA EVENTOS.HTML */
/* ==================================== */

.events-hero-section {
  background-image: url('https://images.unsplash.com/photo-1594300300647-817347a83d7a?w=800'); 
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.events-hero-overlay {
  background-color: rgba(26, 26, 26, 0.7); 
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.events-hero-content {
  max-width: 800px;
  padding: 20px;
}

.events-hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-family-primary); 
  color: var(--primary-color); 
}

.events-hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-weight: 300;
  font-family: var(--font-family-secondary);
  color: var(--secondary-color); 
}

.events-cta {
  background-color: var(--primary-color); 
  color: white;
  padding: 15px 30px;
  font-size: 1.1em;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 2px solid var(--primary-color);
  display: inline-block;
  font-weight: 700;
}

.events-cta:hover {
  background-color: #cc0000;
  border-color: #cc0000;
}

@media (max-width: 768px) {
  .events-hero-section {
      height: 70vh;
  }
  .events-hero-content h1 {
      font-size: 2em;
  }
  .events-hero-content p {
      font-size: 1em;
  }
  .events-cta {
      padding: 10px 20px;
      font-size: 1em;
  }
}

/* ======================================= */
/* ESTILOS DE CONTACTO */
/* ======================================= */

.contact-section {
  padding: 60px 20px;
  background-color: var(--bg-light); 
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.contact-info,
.contact-map {
  flex: 1;
  min-width: 300px;
}

.contact-info {
  padding-right: 20px;
}

.contact-title {
  font-size: 2.5em;
  color: var(--primary-color); 
  font-family: var(--font-family-primary);
  margin-bottom: 10px;
  border-bottom: 3px solid var(--text-dark); 
  display: inline-block;
  padding-bottom: 5px;
}

.contact-intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 300;
}

.contact-detail {
  margin-bottom: 25px;
}

.contact-label {
  font-size: 1.2em;
  color: var(--primary-color); 
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-text {
  font-size: 1em;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 300;
}

.contact-text a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-text a:hover {
  color: var(--primary-color);
}

.contact-send-mail {
  margin-top: 15px;
  background-color: var(--primary-color); 
  color: white;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.contact-send-mail:hover {
  background-color: #cc0000;
}


.contact-map {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  border-radius: 8px;
}

/* ======================================= */
/* SECCIÓN DE COTIZACIÓN DE EVENTOS */
/* ======================================= */

.event-quotation-section {
  padding: 60px 20px;
  background-color: var(--bg-light); 
}

.quotation-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--text-light); 
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quotation-title {
  font-size: 2em;
  color: var(--primary-color); 
  font-family: var(--font-family-primary);
  margin-bottom: 10px;
  text-align: center;
}

.quotation-subtitle {
  text-align: center;
  font-size: 1.1em;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.quotation-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  width: 100%;
  margin-bottom: 10px;
}

.form-group.half-width {
  width: calc(50% - 10px);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.quotation-form input[type="text"],
.quotation-form input[type="email"],
.quotation-form input[type="tel"],
.quotation-form input[type="date"],
.quotation-form input[type="number"],
.quotation-form select,
.quotation-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  color: var(--text-dark);
}

.quotation-form textarea {
  resize: vertical;
}

.quotation-submit {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: var(--primary-color); 
  color: white;
  font-size: 1.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 700;
}

.quotation-submit:hover {
  background-color: #cc0000;
}

@media (max-width: 800px) {
  .contact-container {
      flex-direction: column;
  }

  .contact-map {
      height: 350px;
  }

  .form-group.half-width {
      width: 100%;
  }
}

/* Logos y Ajustes Finales */
.logo h1 {
  font-family: var(--font-hero);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dorado-satinado);
  letter-spacing: 0.05em;
  text-align: center;
  flex: 1;
}

.logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2rem;
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05); 
}