/* ── CtaSection ──────────────────────────────────────── */
.cta-section {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 130px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;

  
  margin-top:80px ;
  margin-bottom: 80px;
}

/* Overlay degradado verde oscuro */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 32, 13, 0.90) 0%,
    rgba(44, 74, 40, 0.82) 100%
  );
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .row {
  display: flex;
  justify-content: center;
}

/* Espaciador */
.cta-section hr.hc-cmp-space {
  border: none;
  margin: 18px 0;
}

/* Columna centrada */
.cta-section .hc-cmp-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Línea decorativa verde claro sobre el título */
.cta-section h2::before {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background-color: #a8d080;
  margin: 0 auto 22px;
  border-radius: 2px;
}

/* Título — fuerza blanco por encima del tema */
.cta-section h2,
.cta-section h2.hc-cmp-title-tag,
.cta-section .hc-cmp-title-tag {
  color: #ffffff !important;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 740px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-section h2,
  .cta-section h2.hc-cmp-title-tag,
  .cta-section .hc-cmp-title-tag {
    font-size: 28px;
  }
}

/* Botón outline blanco */
.cta-section .rts-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: transparent;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 44px;
  border: 2px solid rgba(255, 255, 255, 0.80);
  transition: background-color 0.3s ease, color 0.3s ease,
              border-color 0.3s ease, gap 0.25s ease;
}

.cta-section .rts-btn i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.cta-section .rts-btn:hover {
  background-color: #ffffff;
  color: #2C4A28 !important;
  border-color: #ffffff;
  gap: 20px;
}

.cta-section .rts-btn:hover i {
  transform: translateX(5px);
}