/* ======= Ajustes generales ======= */
body {
  padding-top: 200px; /* 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-restaurantes.jpg'); /* ⚡ tu imagen de fondo */
  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;
}


.comercio-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  margin-bottom: 30px;
  scroll-margin-top: 200px; /* altura del header */
}

.comercio-img {
  width: 50%;          /* ← acá achicás */
  height: 580px;
  object-fit: cover;
  display: block;
  margin: 0 auto;      /* ← la centra horizontalmente */
  border-radius: 12px; /* opcional, queda prolijo */
}


.comercio-info {
  padding: 20px;
  text-align: center;
}

.comercio-logo {
  width: 120px;
  margin: 0 auto 12px;
  display: block;
  filter: invert(1); /* si querés que mantenga el blanco */
}

.btn-mapa {
  display: inline-block;
  margin-top: 12px;
  background: #ff7a00;
  padding: 10px 20px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}




@media (max-width: 768px) {
  .comercio-img {
    height: 220px;
  }
}

  /* Texto más compacto */
  .comercio-info {
    width: 90%;
    padding: 10px 18px;
  }

  .comercio-info h3 {
    font-size: 1.1rem;   /* más chico */
    margin-bottom: 6px;
  }

  .comercio-info p {
    font-size: 0.9rem;   /* más compacto */
    line-height: 1.3;
  }


/* ----------------------------------------------------------
   BOTÓN DESTACADO RED TIGER
   ---------------------------------------------------------- */
.boton-redtiger {
  background: linear-gradient(90deg, #ff6600, #ff9444);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255,102,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.boton-redtiger:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255,102,0,0.45);
}

/* Versión móvil: botón centrado y más ancho */
@media (max-width: 768px) {
  .boton-redtiger {
    display: block;
    margin: 8px auto;
    text-align: center;
    width: 80%;
  }
}