/* ================================================= */
/* === Paleta de Colores y Variables Actualizada === */
/* ================================================= */
:root {
  /* Colores de la Marca: Parrilla, elegancia sobria, fuego controlado */
  --bg-primary: #1A1A1A;     /* Negro mate (Fondo principal) */
  --text-primary: #FFFFCC;   /* Beige (Titulares serif y contraste) */
  --text-secondary: #0B0B0B; /* Negro profundo (Texto secundario/cuerpo) */
  --accent-strong: #FF0000;  /* Rojo (Énfasis premium) */
  --accent-natural: #009933; /* Verde (Acento natural, limitado) */

  /* Colores de soporte basados en la nueva paleta */
  --primary-color: var(--accent-strong); /* Usamos el rojo fuerte como color de acción principal */
  --secondary-color: var(--text-primary); /* Usamos el beige para acentos de elegancia */
  --accent-color: #333333; /* Gris oscuro para bordes y separadores sutiles en fondo oscuro */

  --text-dark: var(--text-secondary); /* Texto que va sobre el fondo claro (si se usa) */
  --text-light: var(--text-primary); /* Texto que va sobre el fondo oscuro */
  --bg-light: #F7F7F7; /* Un gris muy claro/casi blanco para contraste con el negro mate */
  --bg-dark: var(--bg-primary); /* Fondo oscuro principal */

  /* Tipografías actualizadas */
  --font-family-editorial: 'Libre Baskerville', serif; /* Principal (editorial) */
  --font-family-expressive: 'Playfair Display', serif; /* Expresiva */
  --font-family-body: 'Roboto', sans-serif; /* Secundaria (textos) */

  --font-family-primary: var(--font-family-editorial);
  --font-family-secondary: var(--font-family-body);
}

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

body {
  /* Fondo principal en negro mate */
  font-family: var(--font-family-body);
  line-height: 1.6;
  color: var(--text-light); /* Color de texto base para el fondo oscuro */
  background-color: var(--bg-dark); /* Fondo principal en 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;
  /* El color del enlace por defecto pasa a ser el acento fuerte (Rojo) */
  color: var(--primary-color);
}

/* ================================================= */
/* === Botones y CTAs (Añadiendo movimiento) === */
/* ================================================= */
.btn-cta {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color); /* Rojo */
  color: var(--bg-light) !important; /* Usamos un blanco/gris muy claro para el texto del botón */
  font-weight: 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 en hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4); /* Sombra suave roja */
}

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

.btn-cta.secondary:hover {
  background-color: var(--secondary-color); /* Fondo Beige */
  /* Texto en negro profundo sobre beige */
  color: var(--text-secondary) !important;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  /* Sombra suave beige */
  box-shadow: 0 5px 15px rgba(255, 255, 204, 0.4);
}

/* ================================================= */
/* === Header (Añadiendo Sombra y Efecto Sticky) === */
/* ================================================= */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: var(--bg-light); /* Fondo claro para el header */
  border-bottom: 1px solid var(--accent-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada en fondo claro */
}

/* 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;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: var(--primary-color); /* Líneas en Rojo */
  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 {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo a {
  font-size: 2em;
  font-weight: 700;
  /* Logo en Rojo (Acento Fuerte) */
  color: var(--primary-color);
  /* Tipografía Expressiva para el Logo */
  font-family: var(--font-family-expressive);
  letter-spacing: 0px;
}

.logo a span {
  /* Detalle del logo en Beige (Secundario) */
  color: var(--secondary-color);
}

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

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

.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 {
  /* Texto del menú en Negro Profundo */
  color: var(--text-dark);
  font-weight: 400; 
  padding: 5px 0;
  display: block;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

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

.cta-header {
  padding: 8px 20px;
  /* CTA Header en Rojo, el color principal de acción */
  background-color: var(--primary-color);
  /* Texto en Beige (Secundario) sobre el Rojo */
  color: var(--secondary-color) !important;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.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;
  /* Fondo del Dropdown en Gris Claro */
  background-color: var(--bg-light);
  min-width: 180px;
  padding: 0;
  border: 1px solid var(--accent-color);
  border-top: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  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: normal;
  white-space: nowrap;
  /* Color del texto del dropdown en Negro Profundo */
  color: var(--text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
  /* Fondo del hover en Beige (color secundario) */
  background-color: var(--secondary-color);
  /* Texto en Negro Profundo sobre el Beige */
  color: var(--text-secondary);
}

/* 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 (Añadiendo Parallax Sutil) === */
/* ================================================= */
.hero-section {
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800'); /* Imagen de restaurante de alta calidad */
  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.7); 
  padding: 60px 5%;
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  /* Texto claro (Beige) */
  color: var(--text-light);
  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;
  /* Tipografía Expressiva */
  font-family: var(--font-family-expressive);
  line-height: 1.1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

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

/* ================================================= */
/* === SECCIÓN SERVICIOS (Ajustada para Brazzeiro) === */
/* ================================================= */
.services-section {
  padding: 100px 5%;
  /* Fondo Negro Mate para la sección de servicios */
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.services-section h2 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 60px;
  /* Titular en Beige (Secundario) */
  color: var(--text-light);
  font-family: var(--font-family-expressive);
  font-weight: 700;
  position: relative;
}

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

.service-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 80px;
  /* Fondo de cada bloque en Negro Profundo */
  background-color: #0B0B0B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* CAMBIO: Altura fija en Desktop para estandarizar las cards */
  height: 450px; 
}

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

/* Alternancia de filas (Zebra) */
.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* Columna de Texto */
.service-col.text-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-col.text-content h3 {
  font-size: 2.2em;
  /* Titulares de servicio en Rojo */
  color: var(--primary-color);
  margin-bottom: 20px;
  /* Tipografía Editorial */
  font-family: var(--font-family-editorial);
}

.service-col.text-content p {
  margin-bottom: 30px;
  font-size: 1.15em;
  /* Texto en Beige (Claro) */
  color: var(--text-light);
}

/* Columna de Imagen */
.service-col.image-content {
  flex: 1;
  /* CAMBIO: Aseguramos que ocupe el 100% de la altura de la fila */
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Estilo para las etiquetas <img> directas */
.service-col.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajuste perfecto sin zoom excesivo */
  display: block;
}

/* Capa de overlay sutil sobre la imagen */
.service-col.image-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* Overlay muy ligero */
}

/* Asignación de Imágenes de fondo (para las secciones originales de Brazzeiro) */
#service-steaks .image-content {
  background-image: url('https://images.unsplash.com/photo-1546833999-b9f581a1996d?w=600'); 
}

#service-pizza .image-content {
  background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=600');
}

#service-cafe .image-content {
  background-image: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=600');
}

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

.reinforce-content h2 {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-family: var(--font-family-expressive);
  /* Título en Beige (Secundario) */
  color: var(--secondary-color);
}

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

/* ================================================= */
/* === Footer (Diseño oscuro, elegante) === */
/* ================================================= */
.main-footer {
  display: flex;
  justify-content: space-between;
  padding: 60px 5%;
  /* Fondo en Negro Profundo */
  background-color: var(--text-secondary);
  color: var(--text-light);
  border-top: 5px solid var(--primary-color); /* Borde superior en Rojo */
}

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

.footer-column h4 {
  font-size: 1.5em;
  margin-bottom: 25px;
  /* Títulos en Beige (Secundario) */
  color: var(--secondary-color);
  font-family: var(--font-family-editorial);
  border-bottom: 1px solid rgba(255, 255, 204, 0.3);
  padding-bottom: 5px;
}

.footer-column li,
.footer-column p {
  margin-bottom: 12px;
  font-size: 0.95em;
  line-height: 1.8;
  color: rgba(255, 255, 204, 0.8); /* Beige con opacidad */
}

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

.footer-column a:hover {
  opacity: 1;
  /* Hover en Rojo */
  color: var(--primary-color);
}

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

/* ================================================= */
/* === Media Queries para Responsive Design === */
/* ================================================= */

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

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

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

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    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 var(--accent-color);
  }

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

  .hero-section {
    background-attachment: scroll; /* Desactivamos fixed en mobile para performance */
    min-height: 60vh;
  }

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

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

  .service-row:nth-child(even) {
    flex-direction: column;
  }

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

  .service-col.image-content {
    order: 1;
    /* CAMBIO: Altura controlada para smartphone (más pequeña) */
    height: 250px; 
    flex: none;
  }

  .main-footer {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .logo a {
      font-size: 1.8em;
  }

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

  .service-col.image-content {
    /* CAMBIO: Un poco más pequeña en pantallas mínimas */
    height: 200px; 
  }
}

/* ================================================= */
/* === MENÚ DE BRAZZEIRO — ESTILOS ESPECÍFICOS === */
/* ================================================= */

/* Ajuste para que el menú no se pegue al header */
main {
  padding-top: 80px;
}

/* Banner del menú */
.menu-banner {
  width: 100%;
  margin-bottom: 4rem; /* var(--spacing-xl) equivalent */
}

.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.6);
}

.menu-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Degradado sutil inspirado en el fuego (Rojo mate) */
  background: linear-gradient(to right, rgba(26, 26, 26, 0.1), rgba(255, 0, 0, 0.3), rgba(26, 26, 26, 0.1));
}

.menu-banner-text {
  font-family: var(--font-family-expressive);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* Contenedor Principal del Menú */
.menu-section {
  padding: 0 2rem 6rem 2rem;
  background-color: var(--bg-dark);
}

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

/* Botones de Navegación del Menú */
.menu-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 1rem;
}

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

.menu-btn:hover,
.menu-btn.active {
  color: var(--primary-color); /* Rojo */
  border-bottom: 3px solid var(--primary-color);
}

/* Estilos de las Categorías */
.menu-category-title {
  font-family: var(--font-family-editorial);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color); /* Rojo fuerte */
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--accent-color);
}

.menu-section-description {
  text-align: center;
  font-family: var(--font-family-body);
  font-size: 1.1rem;
  color: var(--text-primary);
  opacity: 0.8;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid del Menú */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Ítems del Menú */
.menu-item {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--accent-color);
}

.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-editorial);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.menu-item-price {
  font-family: var(--font-family-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color); /* Rojo mate */
  white-space: nowrap;
}

.menu-item-description {
  font-family: var(--font-family-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  opacity: 0.8;
  line-height: 1.6;
}

/* ================================================= */
/* === ESTILOS PARA LA SECCIÓN DE EVENTOS === */
/* ================================================= */

.events-hero-section {
  /* Imagen de eventos: montaje elegante de mesas */
  background-image: url('https://images.unsplash.com/photo-1577717903185-cecc00159427?w=800');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
}

.events-hero-overlay {
  background-color: rgba(0, 0, 0, 0.75); /* Overlay más oscuro para legibilidad */
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.events-hero-content h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-family: var(--font-family-expressive);
  /* Título en Beige */
  color: var(--secondary-color);
}

.events-hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Botón específico para eventos */
.events-cta {
  background-color: var(--primary-color); /* Rojo */
  color: var(--text-light) !important;
  padding: 15px 30px;
  font-size: 1.1em;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid var(--primary-color);
  display: inline-block;
  font-weight: 700;
  transition: all 0.3s ease;
}

.events-cta:hover {
  background-color: transparent;
  color: var(--primary-color) !important;
}

/* Galería de Eventos */
.events-gallery {
  padding: 80px 5%;
  background-color: var(--bg-dark);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ================================================= */
/* === CONTACTO Y FORMULARIO (Diseño Limpio) === */
/* ================================================= */

.contact-section {
  padding: 60px 20px;
  /* Fondo en Gris Muy Claro para contraste */
  background-color: var(--bg-light);
}

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

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

.contact-title {
  font-size: 2.5em;
  /* Texto en Negro Profundo */
  color: var(--text-dark);
  margin-bottom: 10px;
  border-bottom: 3px solid var(--primary-color); /* Subrayado Rojo */
  display: inline-block;
  font-family: var(--font-family-editorial);
}

.contact-description,
.contact-intro-text {
  font-size: 1.1em;
  /* Texto secundario en Negro Profundo */
  color: var(--text-dark);
  margin-bottom: 30px;
  opacity: 0.8;
}

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

.contact-label {
  font-size: 1.2em;
  /* Label en Rojo */
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.contact-text {
  font-size: 1em;
  /* Texto de detalle en Negro Profundo con opacidad */
  color: rgba(11, 11, 11, 0.7);
  line-height: 1.6;
}

.contact-text a {
  color: var(--primary-color); /* Rojo — contrasta bien sobre fondo claro */
}

.contact-send-mail {
  margin-top: 15px;
  /* Botón en Rojo */
  background-color: var(--primary-color);
  color: var(--bg-light) !important;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

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

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

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

.quotation-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff; /* Blanco puro para el formulario */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quotation-title {
  font-size: 2em;
  /* Título en Negro Profundo */
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
  font-family: var(--font-family-editorial);
}

.quotation-subtitle {
  text-align: center;
  /* Subtítulo en Negro Profundo con opacidad */
  color: rgba(11, 11, 11, 0.6);
  margin-bottom: 30px;
}

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

.form-group {
  width: 100%;
}

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

.quotation-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  /* Label en Negro Profundo */
  color: var(--text-dark);
}

.quotation-form input,
.quotation-form select,
.quotation-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  /* Texto de entrada en Negro Profundo */
  color: var(--text-dark);
}

.quotation-form textarea {
  resize: vertical;
}

.quotation-submit {
  /* Fondo en Rojo (Acento Fuerte) */
  background-color: var(--primary-color); 
  /* Texto en Beige (Claro) */
  color: var(--text-light);
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  font-size: 1.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* Media Queries para Contacto y Cotización (sin cambios de color/tipografía) */
@media (max-width: 800px) {
  .contact-container {
      flex-direction: column;
  }

  .contact-map {
      height: 350px;
  }

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

/* Bloque inicial (líneas 69-78 aprox.) */
.logo h1 {
  display: none; /* Ocultamos el H1 si hay imagen de logo, o ajustamos según HTML */
}