/* ===============================
   BLOQUE CAFETERÍAS – BOSTON CAFÉ
   Archivo: assets/css/components/cafeterias.css
   =============================== */

/* SIN FONDO MARRÓN DETRÁS */
.bostoncafe-sucursales-destacadas {
  background: transparent;
  padding: 0;
  margin: 40px 0; /* separación del bloque con el resto del home */
}

/* BLOQUE PRINCIPAL (LA TARJETA) */
.bostoncafe-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #F5E8DC; /* beige cálido */
  border-radius: 22px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
}

/* TÍTULO */
.bostoncafe-titulo {
  text-align: center;
  color: #2E2A28;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* INTRO */
.bostoncafe-intro {
  text-align: center;
  color: #2E2A28;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* GRID (2 COLUMNAS EN DESKTOP) */
.bostoncafe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

/* CARD */
.bostoncafe-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}

/* IMAGEN */
.bostoncafe-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* CUERPO DE LA CARD */
.bostoncafe-card-body {
  padding: 22px;
}

/* TÍTULO DE CADA CAFETERÍA */
.bostoncafe-card-body h3 {
  color: #815C48; /* marrón medio */
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXTOS */
.bostoncafe-card-body p {
  color: #2E2A28;
  font-size: 16px;
  margin-bottom: 12px;
}

/* RATING */
.bostoncafe-card-body .rating {
  font-size: 14px;
  opacity: 0.85;
}

/* BOTÓN */
.bostoncafe-card-body a {
  color: #C57A5C; /* terracota */
  font-weight: 600;
  text-decoration: none;
}

.bostoncafe-card-body a:hover {
  opacity: 0.8;
}

/* RESPONSIVE: 1 COLUMNA EN MOBILE */
@media (max-width: 768px) {
  .bostoncafe-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bostoncafe-wrapper {
    padding: 30px 15px;
  }

  .bostoncafe-titulo {
    font-size: 26px;
  }

  .bostoncafe-intro {
    font-size: 16px;
  }
}