:root {
  -green: #146135;
  -green-soft: #eaf5ee;
  -white: #ffffff;
}

/* ANCLA PARA EL MENÚ */

.contacto-ancla {
  height: 80px;
  margin-top: -80px;
  background: transparent;
  pointer-events: none;
}

/* SECCIÓN */

.cta-section {
  padding: 64px 0;
  background: var(--green);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.cta-section,
.cta-section * {
  box-sizing: border-box;
}

/* CONTENEDOR */

.cta-section .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TÍTULO */

.cta-section h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.2;
}

/* TEXTO */

.cta-section p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.5;
}

/* BOTÓN */

.btn-cta {
  display: inline-block;
  padding: 14px 32px;

  color: var(--green);
  background: var(--white);

  border-radius: 2px;

  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.btn-cta:hover {
  background: var(--green-soft);
  transform: translateY(-1px);
}