/* ======= Ajustes generales ======= */
body {
  padding-top: 180px; /* ajustable según altura del header */
}

@media (max-width: 768px) {
  body {
    padding-top: 180px;
  }
}

/* ======= Sección de locales ======= */
.locales-section {
  margin-bottom: 60px;
  background-image: url('images/fondo-souvenir.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  padding: 60px 20px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
}

.locales-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.locales-section * {
  position: relative;
  z-index: 1;
}

/* ======= Títulos y textos ======= */
.locales-section h2 {
  font-size: 1.8em;
  color: var(--color-naranja);
  text-align: center;
  margin-bottom: 10px;
}

.locales-section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #fff;
}

/* ======= Tarjetas de locales ======= */
.local {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: var(--sombra-suave);
  padding: 30px;
  margin: 25px auto;
  max-width: 900px;
  transition: transform 0.3s ease;
  backdrop-filter: blur(6px);
}

.local:hover {
  transform: translateY(-4px);
}

.local h3 {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.local p {
  margin: 6px 0;
  line-height: 1.6em;
}

.local ul {
  margin: 10px 0 10px 20px;
  color: #fff;
}

.local strong {
  color: var(--color-naranja);
}

.btn {
  margin-top: 15px;
  display: inline-block;
  background-color: var(--color-naranja);
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e56e00;
}
