* {
  box-sizing: border-box;
}

.business-section {
  text-align: center;
  margin-top: 2rem;
  padding: 5rem 0;
}
.section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ff62ea;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-section h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: #fafafa;
}

.business-section > p {
  max-width: 660px;
  margin: 22px auto 0;
  color: #f5f5f5;
  font-size: 1.05rem;
  line-height: 1.7;
}
/* TARJETAS - CSS */
* {
  box-sizing: border-box;
}
.cards-section {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 60px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: #0f1722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 179, 71, 0.45);
}

.card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffb347;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #ffffff;
}

.card-content p {
  margin: 0 0 14px;
  color: #cfd6df;
  line-height: 1.5;
  font-size: 0.98rem;
}

.card-location {
  display: inline-block;
  color: #ffb347;
  font-size: 0.92rem;
  font-weight: 500;
}

/* En móvil queda una sola tarjeta */
@media (max-width: 599px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 230px;
  }
}

/* TARJETAS - CSS */
* {
  box-sizing: border-box;
}

.cards-section {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 60px 0;
}

.cards-title {
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: #0f1722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffb347;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #ffffff;
}

.card-content p {
  margin: 0 0 14px;
  color: #cfd6df;
  line-height: 1.5;
  font-size: 0.98rem;
}

.card-location {
  display: inline-block;
  color: #ffb347;
  font-size: 0.92rem;
  font-weight: 500;
}

/* Móvil: una sola tarjeta */
@media (max-width: 599px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 230px;
  }
}
