/* Contenedor general */
#sucursales {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Título principal */
#sucursales h2 {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #222;
}

/* Tarjeta */
.sucursal-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sucursal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Título de sucursal */
.sucursal-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #c00; /* rojo fuerte */
  font-size: 1.3em;
  font-weight: bold;
}

/* Texto */
.sucursal-card p {
  margin: 0;
  line-height: 1.6;
  color: #444;
  font-size: 0.95em;
}

/* WhatsApp */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  text-decoration: none;
  color: #25D366; /* verde WhatsApp */
  font-weight: bold;
  font-size: 1em;
}

.whatsapp-link img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

/* Botón Google Maps */
.btn-maps {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background-color: #2b7de9;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.btn-maps:hover {
  background-color: #1a5bb8;
}
