/* ===================== COMERCIAL ===================== */
.comercial {
  position: relative;
  background-image: url('../../img/fondo-comercial.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.comercial__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.comercial__contenido {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comercial__titulo {
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

.comercial__subtitulo {
  font-size: 3.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.comercial__datos p {
  margin: 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.comercial__datos strong {
  font-weight: 700;
}

.comercial__botones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}



.btn.btn--claro:hover {
  text-decoration: none;

  background-color: #e0e0e0;
}

@media (max-width: 768px) {
  .comercial__titulo {
    font-size: 1.75rem;
  }

  .comercial__subtitulo {
    font-size: 2.25rem;
  }

  .comercial__datos p {
    font-size: 1.125rem;
  }

  
}

/* === Botones Comercial: estilo unificado para <a> y <button> === */
.comercial__botones a.btn.btn--claro,
.comercial__botones button.btn.btn--claro {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;

  background-color: #fff;
  color: #121212;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s ease, transform .12s ease;
}
.comercial__botones a.btn.btn--claro:hover,
.comercial__botones button.btn.btn--claro:hover {
  text-decoration: none;
  background-color: #e0e0e0;
}
.comercial__botones a.btn.btn--claro:active,
.comercial__botones button.btn.btn--claro:active {
  transform: translateY(1px);
}
/* Iconos dentro del botón (si los hay) */
.comercial__botones .btn.btn--claro svg,
.comercial__botones .btn.btn--claro img { width: 1.1em; height: 1.1em; }

/* === Forzar igualdad de estilo entre botones del bloque Comercial === */
.comercial__botones a.btn.btn--claro,
.comercial__botones button.btn.btn--claro,
.comercial__botones .btn.btn--claro[href*="wa.me"],
.comercial__botones .btn.btn--claro[aria-label*="WhatsApp"] {
  background-color: #fff !important;
  color: #121212 !important;
  border: none !important;
  box-shadow: none;
}

/* === Comercial: forzar que ambos botones sean idénticos === */
.comercial__botones a.btn.btn--claro,
.comercial__botones button.btn.btn--claro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  color: #121212 !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  box-shadow: none !important;
  width: auto !important;
  margin-inline: auto !important;
  white-space: nowrap;
  text-decoration: none;
}
/* Si alguno apunta a WhatsApp, mantener MISMO estilo (sin verde, sin tamaño extra) */
.comercial__botones a.btn.btn--claro[href*="wa.me"],
.comercial__botones a.btn.btn--claro[aria-label*="WhatsApp"] {
  background: #fff !important;
  color: #121212 !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
}

/* === Comercial: Botón unificado (btn--pill) === */
.comercial__botones a.btn.btn--claro.btn--pill,
.comercial__botones button.btn.btn--claro.btn--pill {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff !important;
  color: #121212 !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  box-shadow: none !important;
  width: auto !important;
  margin-inline: auto !important;
  white-space: nowrap;
}
/* Nunca cambiar estilo por ser WhatsApp */
.comercial__botones a.btn--pill[href*="wa.me"],
.comercial__botones a.btn--pill[aria-label*="WhatsApp"] {
  background: #fff !important;
  color: #121212 !important;
}
