/*--------------------------------------------------------------
# Sección Publicidad
--------------------------------------------------------------*/
.promo-section {
  background: url(../img/promo_fondo.png);
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  width: 100%;
  height: auto;
  position: relative;
}

.promo-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.promo-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
}

.promo-subtitle {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 34px;
}

.promo-btn {
  background-color: #e9729b; /* color principal */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.promo-btn:hover {
  background-color: #f4a8c2; /* hover */
  color: #ffffff;
}
