/**
 * Text CTA Section Block Styles
 * 
 * @package TerapiadoStress
 */

.text-cta-section {
  position: relative;
  width: 100vw;
  min-height: 400px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Image */
.text-cta-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Container */
.text-cta-section__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Text Content */
.text-cta-section__text {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-green);
  text-align: center;
}

.text-cta-section__text p {
  margin: 0 0 20px;
}

.text-cta-section__text p:last-child {
  margin-bottom: 0;
}

.text-cta-section__text strong,
.text-cta-section__text b {
  font-weight: 700;
}

/* CTA Button */
.text-cta-section__cta {
  margin-top: 50px;
}

.text-cta-section__cta-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--color-green-light);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-cta-section__cta-button:hover {
  background-color: var(--color-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
  .text-cta-section__text {
    font-size: 60px;
  }
}

@media (max-width: 1024px) {
  .text-cta-section__text {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .text-cta-section {
    padding: 60px 0;
    min-height: 400px;
  }

  .text-cta-section__text {
    font-size: 40px;
  }

  .text-cta-section__cta-button {
    padding: 16px 35px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .text-cta-section {
    padding: 50px 0;
  }

  .text-cta-section__text {
    font-size: 32px;
  }

  .text-cta-section__cta-button {
    padding: 14px 30px;
    font-size: 14px;
  }
}
