/*
 * Pop Punk Website Stylesheet
 *
 * Este archivo define la apariencia general del sitio web. Utiliza una
 * paleta basada en negro, gris, rojo y amarillo saturado para reflejar
 * la estética callejera e industrial de la marca. Las variables CSS
 * permiten ajustar fácilmente los colores de la marca en todo el sitio.
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  --color-bg: #0b0b0b;
  --color-dark: #161616;
  --color-gray: #888888;
  --color-light: #eaeaea;
  --color-yellow: #f4b400;
  --color-red: #c42021;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-light);
  line-height: 1.5;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header and Navigation */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.site-header nav {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 48px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  margin-left: 1rem;
}

.nav-links li a {
  color: var(--color-light);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
  display: block;
}

.nav-links li a:hover {
  color: var(--color-yellow);
}

/* Search bar */
#search-input {
  background-color: var(--color-dark);
  border: 1px solid var(--color-red);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  color: var(--color-light);
  font-size: 0.9rem;
  flex-grow: 1;
  max-width: 280px;
  margin-left: 1rem;
}

#search-input::placeholder {
  color: var(--color-gray);
}

.search-results {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  border: 1px solid var(--color-red);
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 999;
}

.search-results li {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--color-dark);
  cursor: pointer;
  color: var(--color-light);
}

.search-results li:hover {
  background-color: var(--color-dark);
}

.search-results .highlight {
  color: var(--color-yellow);
  font-weight: 700;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.button-order {
  background-color: var(--color-yellow);
  color: var(--color-bg);
  margin-left: auto;
}

.button-order:hover {
  background-color: var(--color-red);
  color: #fff;
}

.button-primary {
  background-color: var(--color-yellow);
  color: var(--color-bg);
}

.button-primary:hover {
  background-color: var(--color-red);
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 1rem;
}

.hero-logo {
  max-width: 350px;
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.hero h1 {
  margin: 1.5rem 0 0.5rem;
  color: var(--color-yellow);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero p {
  margin: 0 0 1.5rem;
  color: var(--color-light);
  font-size: 1.1rem;
  font-weight: 400;
}

/* Top Picks Section */
.top-picks {
  background-color: var(--color-dark);
  padding: 2rem 0 3rem;
}

.top-picks h2 {
  text-align: center;
  color: var(--color-yellow);
  margin: 0 0 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  background-color: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 1rem;
  flex: 1;
}

.badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: var(--color-red);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card h3 {
  margin: 0.75rem 0 0.25rem;
  color: var(--color-yellow);
  font-size: 1.5rem;
  font-weight: 700;
}

.card p {
  margin: 0.25rem 0;
  color: var(--color-gray);
  font-size: 0.95rem;
}

.card .price {
  margin-top: 0.5rem;
  color: var(--color-red);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background-color: var(--color-bg);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray);
  border-top: 1px solid #222;
}

/* Chatbot */
.chatbot-toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.chatbot-toggle img {
  width: 40px;
  height: 40px;
}

.chatbot {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 320px;
  max-height: 70vh;
  background-color: var(--color-dark);
  border: 2px solid var(--color-red);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.chat-header {
  background-color: var(--color-red);
  color: #fff;
  padding: 0.5rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  margin: 0;
  font-size: 1rem;
}

.chat-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.chat-messages {
  flex: 1;
  padding: 0.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.chat-message {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  max-width: 90%;
  word-wrap: break-word;
}

.message-bot {
  background-color: #262626;
  color: #fff;
  align-self: flex-start;
}

.message-user {
  background-color: var(--color-yellow);
  color: var(--color-bg);
  align-self: flex-end;
}

.chat-input {
  display: flex;
  border-top: 1px solid #333;
}

.chat-input input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  background-color: #111;
  color: var(--color-light);
  font-size: 0.9rem;
}

.chat-input input:focus {
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  #search-input {
    max-width: 160px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .cards {
    gap: 1rem;
  }
  .card {
    width: 90%;
  }
  .button-order {
    margin-left: 0;
  }
}

/* Galería tipo mosaico */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 1.2rem;
}

.gallery-item {
  background: var(--color-bg);
  border: 1px solid #222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .6);
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-item--wide .gallery-media {
  aspect-ratio: 16 / 9;
}

.gallery-item figcaption {
  padding: 10px 12px;
  color: var(--color-gray);
  font-size: .9rem;
  border-top: 1px solid #222;
}

@media (max-width: 768px) {
  .gallery-item--wide { grid-column: span 1; }
}

/* --------- NUEVOS ESTILOS PARA VERSIÓN ACTUALIZADA --------- */

/* Bottom navigation for mobile */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background-color: var(--color-dark);
  border-top: 1px solid #333;
  z-index: 1000;
}
.bottom-nav a {
  flex: 1;
  padding: 0.75rem 0;
  text-align: center;
  color: var(--color-gray);
  font-size: 0.85rem;
  text-decoration: none;
  border-right: 1px solid #333;
}
.bottom-nav a:last-child {
  border-right: none;
}
.bottom-nav a:hover {
  color: var(--color-yellow);
}
@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }

/* Contact page collage hero */
.contact-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
}

.collage-cell {
  background-size: cover;
  background-position: center;
}

.collage-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.5rem;
  z-index: 1;
  width: 90%;
  max-width: 600px;
}

.collage-overlay h1 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  color: var(--color-yellow);
}

.collage-overlay p {
  margin: 0 0 1rem;
  color: var(--color-light);
}

.collage-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-details {
  padding: 3rem 0;
}

.contact-details h2 {
  text-align: center;
  margin-top: 0;
}

.contact-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--color-gray);
}

.social-icon {
  color: var(--color-yellow);
  text-decoration: none;
}

.social-icon:hover {
  text-decoration: underline;
}
}

/* Order modal and overlay */
.order-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.order-modal {
  background: var(--color-dark);
  border: 2px solid var(--color-red);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 90%;
  width: 400px;
  color: white;
  z-index: 1000;
}
.order-modal h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-yellow);
  font-size: 1.3rem;
  text-align: center;
}
.order-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.order-options button {
  background: var(--color-red);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.order-options button:hover {
  background: var(--color-yellow);
  color: #000;
}
.order-subcontainer {
  margin-top: 1rem;
}
.order-store-btn {
  display: block;
  background: var(--color-yellow);
  color: #000;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.order-store-btn:hover {
  background: var(--color-red);
  color: white;
}
.order-wa-form div {
  margin-bottom: 0.75rem;
}
.order-wa-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.order-wa-form select,
.order-wa-form input {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--color-gray);
  background: var(--color-dark);
  color: #fff;
  font-size: 0.95rem;
}
.order-wa-form button[type="submit"] {
  width: 100%;
}
.order-overlay[hidden],
.order-modal[hidden] {
  display: none;
}

/* Menu filters chips */
.menu-filters {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* --------------------------------------------- */
/* Hero collage                                */
/* Esta sección combina un collage de imágenes  */
/* de palomitas con un overlay oscuro que      */
/* contiene el logotipo, título y botones.     */
/* --------------------------------------------- */

.hero-collage {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background-color: var(--color-bg);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.collage-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.collage-img {
  position: absolute;
  object-fit: cover;
  opacity: 0.8;
}

.collage-img-1 {
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
}
.collage-img-2 {
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
}
.collage-img-3 {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
}
.collage-img-4 {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
}

.hero-logo-large {
  width: 500px;
  margin-bottom: 1rem;
}

.hero-overlay h1 {
  margin: 0.5rem 0;
  font-size: 2.5rem;
  color: var(--color-yellow);
}

.hero-overlay p {
  margin: 0.5rem 0 1.5rem;
  font-size: 1rem;
  color: var(--color-light);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .button {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Secondary button style */
.button.button-secondary {
  background-color: transparent;
  border: 2px solid var(--color-yellow);
  color: var(--color-yellow);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}
.button.button-secondary:hover {
  background-color: var(--color-yellow);
  color: var(--color-bg);
}

/* --------------------------------------------- */
/* Categorías destacadas                        */
/* Sección con tarjetas que muestran las        */
/* distintas categorías del menú: saladas,      */
/* dulces, picantes y especiales.               */
/* --------------------------------------------- */

.categories {
  padding: 4rem 0;
  background-color: var(--color-dark);
}

.categories h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--color-yellow);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-red);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.category-card h3 {
  margin: 0.25rem 0;
  color: var(--color-yellow);
}

.category-card p {
  font-size: 0.9rem;
  color: var(--color-light);
  margin-bottom: 1rem;
}

.category-card a.button {
  align-self: center;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
  border-color: var(--color-yellow);
}
.filter-chip {
  background: var(--color-dark);
  border: 1px solid var(--color-gray);
  color: var(--color-gray);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-chip.active,
.filter-chip:hover {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}

/* Highlight nearest store */
.highlight-store {
  border: 2px solid var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow);
}

/* --------------------------------------------- */
/* Feature highlights                            */
/* Grid and card styles for la sección de por    */
/* qué elegir Pop Punk.                          */
/* --------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-red);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-dark);
  border: 2px solid var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.feature-card h3 {
  margin: 0.5rem 0;
  color: var(--color-yellow);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-light);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  border-color: var(--color-yellow);
}

/* --------------------------------------------- */
/* Menú interactivo y lightbox                   */
/* --------------------------------------------- */

/* Tarjetas del menú clicables */
.menu-card {
  cursor: pointer;
}

/* Lightbox (modal) */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.lightbox.hidden {
  display: none;
}
.lightbox-content {
  background-color: var(--color-dark);
  padding: 2rem;
  border-radius: 8px;
  max-width: 90%;
  width: 400px;
  max-height: 90%;
  overflow-y: auto;
  text-align: center;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-yellow);
  cursor: pointer;
  line-height: 1;
}
.lightbox-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.lightbox-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox-info h3 {
  margin: 0.5rem 0;
  color: var(--color-yellow);
}
.lightbox-info p {
  color: var(--color-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.lightbox-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.lightbox-nav button {
  background-color: var(--color-dark);
  border: 1px solid var(--color-yellow);
  color: var(--color-yellow);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
.lightbox-nav button:hover {
  background-color: var(--color-yellow);
  color: var(--color-bg);
}

/* --------------------------------------------- */
/* Split Intro Section                           */
/* Dos bloques a pantalla dividida con imagen    */
/* a un lado y texto al otro. Animaciones suaves */
/* y responsivo para móviles.                   */
/* --------------------------------------------- */

.intro-split {
  display: flex;
  flex-direction: column;
  margin: 3rem 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 300px;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.split-image {
  flex: 1;
  min-width: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.4s ease;
}

.split-content {
  flex: 1;
  min-width: 50%;
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  transition: background 0.4s ease;
}

.split-content h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--color-yellow);
}

.split-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.split-content a.button {
  margin-top: 1rem;
  align-self: flex-start;
}

.split:hover .split-image {
  transform: scale(1.05);
}

.split:hover .split-content {
  background-color: var(--color-red);
}

@media (max-width: 768px) {
  .split {
    flex-direction: column;
  }
  .split-image,
  .split-content {
    min-width: 100%;
  }
  .split-content h2 {
    font-size: 1.6rem;
  }
}

/* --------------------------------------------- */
/* About callout                                */
/* Sección final en el inicio que invita a      */
/* conocer más acerca de Pop Punk.              */
/* --------------------------------------------- */

.about-callout {
  background-color: var(--color-dark);
  padding: 3rem 0;
  text-align: center;
}
.about-callout h2 {
  margin: 0 0 1rem;
  color: var(--color-yellow);
  font-size: 2rem;
}
.about-callout p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  color: var(--color-light);
  line-height: 1.6;
}
.about-callout .button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* --------------------------------------------- */
/* Contact Page Styles                           */
/* Estilos para la sección de contacto con       */
/* información, redes sociales y formulario      */
/* --------------------------------------------- */

.contact-info {
  background-color: var(--color-dark);
  padding: 3rem 0;
}
.contact-info h2 {
  text-align: center;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.contact-info p {
  text-align: center;
  font-size: 1rem;
  color: var(--color-gray);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.contact-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-red);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--color-yellow);
  font-size: 1.4rem;
}
.contact-card p {
  margin: 0.25rem 0;
  color: var(--color-light);
  font-size: 0.95rem;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.6);
  border-color: var(--color-yellow);
}
.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-form h3 {
  margin: 0;
  margin-bottom: 0.5rem;
  color: var(--color-yellow);
  font-size: 1.6rem;
  text-align: center;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  color: var(--color-light);
  font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-yellow);
  outline: none;
}
.contact-form button {
  align-self: center;
  margin-top: 0.5rem;
}
.lightbox-action {
  margin-top: 1rem;
}
.lightbox-action .button {
  padding: 0.5rem 1rem;
}

/* ============================== */
/*      Promos/Ofertas Styles     */
/* ============================== */

/* Hero section for promos */
.promo-hero {
  background-color: var(--color-red);
  color: var(--color-light);
  padding: 4rem 0;
  text-align: center;
}
.promo-hero .promo-title {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 700;
}
.promo-hero .promo-subtitle {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.2rem;
  color: var(--color-light);
}

/* Combos grid */
.promo-combos {
  background-color: var(--color-bg);
  padding: 3rem 0;
}
.promo-combos .section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.promo-combos .section-desc {
  text-align: center;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.promo-card {
  background: var(--color-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}
.promo-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.promo-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-red);
  color: var(--color-light);
  padding: 0.4rem 0.6rem;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.promo-card-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.promo-card-body h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--color-yellow);
}
.promo-card-body p {
  margin: 0;
  color: var(--color-light);
  font-size: 0.95rem;
}
.promo-card-body .button {
  margin-top: auto;
  align-self: flex-start;
}

/* Ofertas especiales */
.promo-special {
  background-color: var(--color-dark);
  padding: 3rem 0;
  color: var(--color-light);
}
.special-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .special-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.special-item {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
}
.special-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: var(--color-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.special-tag {
  background: var(--color-yellow);
  color: var(--color-dark);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
}
.special-price {
  background: var(--color-red);
  color: var(--color-light);
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  text-align: center;
  line-height: 1.1;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.special-overlay h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: var(--color-yellow);
}
.special-overlay p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.special-overlay .button {
  margin-top: auto;
}

/* Sección de revendedores */
.promo-resellers {
  background-color: var(--color-bg);
  padding: 3rem 0;
  color: var(--color-light);
}
.reseller-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .reseller-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.reseller-left, .reseller-right {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reseller-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: var(--color-light);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.reseller-tag {
  background: var(--color-yellow);
  color: var(--color-dark);
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 0.8rem;
  line-height: 1;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.reseller-overlay h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: var(--color-yellow);
}
.reseller-overlay p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.reseller-overlay .button {
  margin-top: auto;
}

/* ============================== */
/*      Ubicación Styles         */
/* ============================== */

/* Hero de sucursales */
.location-hero {
  background-color: var(--color-red);
  color: var(--color-light);
  padding: 4rem 0;
  text-align: center;
}
.location-hero .location-title {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 700;
}
.location-hero .location-subtitle {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.2rem;
  color: var(--color-light);
}

/* Lista de sucursales */
.location-list {
  background-color: var(--color-bg);
  padding: 3rem 0;
  color: var(--color-light);
}
.location-item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-dark);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .location-item {
    flex-direction: row;
  }
}
.location-map {
  flex: 1;
  min-height: 250px;
}
.location-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
.location-info {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.location-info h3 {
  margin-top: 0;
  color: var(--color-yellow);
  font-size: 1.6rem;
}
.location-info p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}
.location-info a:not(.button) {
  color: var(--color-yellow);
  text-decoration: none;
}

/* ============================== */
/*         Menú Styles          */
/* ============================== */

/* Hero del menú */
.menu-hero {
  background-image: url('images/butter-popcorn.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 4rem 0;
  color: var(--color-light);
}
.menu-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
}
.menu-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.menu-hero .menu-title {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 700;
}
.menu-hero .menu-subtitle {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.2rem;
  color: var(--color-light);
}

/* -----------------------------
   Visual polish: Lightbox layout
------------------------------ */
@media (min-width: 900px) {
  .lightbox-content {
    width: min(980px, 92vw);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.4rem;
    text-align: left;
    padding: 1.2rem 1.4rem;
  }
  .lightbox-image-wrapper {
    height: 520px;
    margin: 0;
  }
  .lightbox-info {
    margin-top: 0;
    padding-right: 0.4rem;
  }
  .lightbox-title { font-size: 1.45rem; }
}

.lightbox-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* -----------------------------
   Scroll reveal
------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* -----------------------------
   Page hero base
------------------------------ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.4rem, 4vw, 4.2rem) 0;
  min-height: 520px;
  display: grid;
  align-items: center;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 15% 20%, rgba(0,0,0,0), transparent 0%),
              linear-gradient(110deg, rgba(0,0,0,0.72), rgba(0,0,0,0.35));
  pointer-events: none;
}
.page-hero .hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.86rem;
  opacity: 0.9;
  margin-bottom: 0.55rem;
}
.hero-title {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-subtitle {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 1.4rem;
}
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.accent { color: var(--accent); }

/* -----------------------------
   Gallery hero + art grid
------------------------------ */
.gallery-hero {
  color: #fff;
}
.gallery-hero .hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}
.gallery-hero .hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.gallery-hero .hero-collage img:nth-child(1) { grid-row: 1 / span 2; border-radius: 22px; }
.gallery-art {
  padding: 3.2rem 0;
}
.section-head h2 { margin-bottom: 0.4rem; }
.section-head p { opacity: 0.82; max-width: 70ch; }

.art-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 88px;
  gap: 14px;
}
.art-tile {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.art-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 340ms ease;
}
.art-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
  opacity: 0.9;
}
.art-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,0.28); }
.art-tile:hover img { transform: scale(1.08); }

/* Mosaic placements */
.t1  { grid-column: 1 / span 7;  grid-row: 1 / span 5; }
.t2  { grid-column: 8 / span 5;  grid-row: 1 / span 3; }
.t3  { grid-column: 8 / span 5;  grid-row: 4 / span 2; }
.t4  { grid-column: 1 / span 4;  grid-row: 6 / span 3; }
.t5  { grid-column: 5 / span 4;  grid-row: 6 / span 3; }
.t6  { grid-column: 9 / span 4;  grid-row: 6 / span 4; }
.t7  { grid-column: 1 / span 6;  grid-row: 9 / span 4; }
.t8  { grid-column: 7 / span 2;  grid-row: 9 / span 2; }
.t9  { grid-column: 7 / span 2;  grid-row: 11 / span 2; }
.t10 { grid-column: 9 / span 4;  grid-row: 10 / span 3; }
.t11 { grid-column: 1 / span 4;  grid-row: 13 / span 3; }
.t12 { grid-column: 5 / span 4;  grid-row: 13 / span 3; }
.t13 { grid-column: 9 / span 4;  grid-row: 13 / span 2; }
.t14 { grid-column: 9 / span 2;  grid-row: 15 / span 1; }
.t15 { grid-column: 11 / span 2; grid-row: 15 / span 1; }

@media (max-width: 980px) {
  .art-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 92px; }
  .t1  { grid-column: 1 / span 6; grid-row: 1 / span 4; }
  .t2  { grid-column: 1 / span 3; grid-row: 5 / span 2; }
  .t3  { grid-column: 4 / span 3; grid-row: 5 / span 2; }
  .t4  { grid-column: 1 / span 3; grid-row: 7 / span 2; }
  .t5  { grid-column: 4 / span 3; grid-row: 7 / span 2; }
  .t6  { grid-column: 1 / span 6; grid-row: 9 / span 3; }
  .t7  { grid-column: 1 / span 3; grid-row: 12 / span 2; }
  .t8  { grid-column: 4 / span 3; grid-row: 12 / span 2; }
  .t9  { grid-column: 1 / span 3; grid-row: 14 / span 2; }
  .t10 { grid-column: 4 / span 3; grid-row: 14 / span 2; }
  .t11 { grid-column: 1 / span 2; grid-row: 16 / span 2; }
  .t12 { grid-column: 3 / span 2; grid-row: 16 / span 2; }
  .t13 { grid-column: 5 / span 2; grid-row: 16 / span 2; }
  .t14 { grid-column: 1 / span 3; grid-row: 18 / span 2; }
  .t15 { grid-column: 4 / span 3; grid-row: 18 / span 2; }
  .page-hero { min-height: 560px; }
  .gallery-hero .hero-collage { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr 1fr; }
  .gallery-hero .hero-collage img:nth-child(1) { grid-row: 1 / span 2; }
}

/* Lightbox for gallery */
#galleryLightbox.lightbox { display: none; }
#galleryLightbox.lightbox.open { display: flex; }
#galleryLightbox .lightbox-panel {
  position: relative;
  width: min(1040px, 94vw);
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.5);
  padding: 16px;
}
#galleryLightbox .lightbox-content {
  width: auto;
  background: transparent;
  box-shadow: none;
  border: 0;
}
#galleryLightbox .lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
#galleryLightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 34px;
  line-height: 40px;
  cursor: pointer;
}
#galleryLightbox .lightbox-nav.prev { left: 10px; }
#galleryLightbox .lightbox-nav.next { right: 10px; }

/* -----------------------------
   Events page
------------------------------ */
.events-hero { color: #fff; }
.events-hero .hero-media {
  position: absolute; inset: 0;
}
.events-hero .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
}
.events-types { padding: 3.2rem 0; }
.cards-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.event-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 38px rgba(0,0,0,0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 18px 46px rgba(0,0,0,0.12); }
.event-card img { width: 100%; height: 220px; object-fit: cover; }
.event-card .card-body { padding: 1.2rem 1.2rem 1.35rem; }
.event-card h3 { margin-bottom: 0.45rem; }
.event-card p { opacity: 0.88; line-height: 1.55; }
.event-card ul { margin: 0.85rem 0 0; padding-left: 1.1rem; }
.event-card li { margin: 0.3rem 0; opacity: 0.9; }

.events-promo { padding: 3.2rem 0; background: rgba(0,0,0,0.03); }
.promo-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}
.promo-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}
.promo-copy h2 { margin-bottom: 0.6rem; }
.promo-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.1rem 0 1.2rem; }
.promo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 600;
}

.events-resellers { padding: 3.2rem 0; }
.resellers-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 44px rgba(0,0,0,0.09);
  align-items: center;
}
.resellers-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
}
.checklist { padding-left: 1.1rem; margin: 1rem 0 1.2rem; }
.checklist li { margin: 0.35rem 0; }

.events-cta { padding: 3.2rem 0; background: rgba(0,0,0,0.03); }
.cta-panel {
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(110deg, rgba(0,0,0,0.76), rgba(0,0,0,0.38));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 52px rgba(0,0,0,0.28);
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1rem; }

@media (max-width: 980px) {
  .cards-grid { grid-template-columns: 1fr; }
  .promo-split { grid-template-columns: 1fr; }
  .resellers-box { grid-template-columns: 1fr; }
  .resellers-media img { height: 260px; }
}

body.no-scroll { overflow: hidden; }



/* FIX: texto claro sobre tarjeta blanca */
.event-card{
  background: #fff;
  color: #111; /* texto base oscuro */
}

.event-card .card-body{
  padding: 1.2rem 1.2rem 1.35rem;
  color: inherit;
}

.event-card h3{
  color: #111;
}

.event-card p,
.event-card li{
  color: #222;
  opacity: 1; /* quita el “lavado” */
}


/* Footer emails (estético y limpio) */
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-emails {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-gray);
}

.footer-email {
  color: var(--color-yellow);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-email:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-sep {
  color: var(--color-gray);
  opacity: 0.9;
}

/* En pantallas grandes, puedes poner copyright y correos en una sola línea */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
  }
}

/* ============================== */
/* Hero de sucursales con imagen  */
/* ============================== */

.location-hero {
  position: relative;
  padding: 4.5rem 0;
  text-align: center;
  color: #fff;

  /* Imagen de fondo */
  background-image: url('images/galeria/Suc_Progresista.png'); /* cambia por la que quieras */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Capa oscura + roja para proteger texto */
.location-hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(196, 32, 33, 0.65),   /* rojo más transparente */
      rgba(196, 32, 33, 0.65)
    ),
    linear-gradient(
      rgba(0, 0, 0, 0.25),       /* menos negro arriba */
      rgba(0, 0, 0, 0.45)        /* un poco más abajo */
    );

  z-index: 0;
}


/* ============================== */
/* Ubicación hero estilo "Menú"   */
/* ============================== */

.location-hero{
  position: relative;
  padding: 4.5rem 0;
  color: #fff;
  text-align: center;

  /* IMAGEN DE FONDO */
  background-image: url("images/galeria/Suc_Progresista.png"); /* <-- cambia aquí */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay oscuro uniforme como el ejemplo */
.location-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58); /* <-- ajusta: 0.50 (más imagen) / 0.65 (más lectura) */
}

/* Texto arriba del overlay */
.location-hero .container{
  position: relative;
  z-index: 1;
}

/* Tipografía similar al ejemplo */
.location-title{
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.location-subtitle{
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/* ============================== */
/* WhatsApp Floating Button       */
/* ============================== */

.whatsapp-float {
  position: fixed;
  bottom: 5.5rem; /* sube el botón */
  right: 1.25rem;
  width: 62px;
  height: 62px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 1100;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

/* En móvil, evita chocar con bottom-nav */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 5rem; /* sube el botón para no tapar la barra inferior */
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-buttons .button {
  min-width: 160px;
  padding: 14px 24px;
  text-align: center;
}

.collage-images .collage-img {
  display: none;
}

.collage-images .collage-img-1 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home .hero-overlay {
  background-color: #000000; /* negro sólido */
  opacity: 1;                /* sin transparencia */
}

