{% scope_css %}
/* =========================================
   SECCIÓN FINAL 
========================================= */
.cima-cta-section {
  position: relative;
  background: #132B3F; 
  padding: 140px 20px 100px; 
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}


.cima-cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(19, 43, 63, 0) 0%, #A2B1BC 100%); 
  z-index: 1;
  pointer-events: none;
}

.cima-cta-wave-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1440px;
  line-height: 0;
  z-index: 3;
}

.cima-cta-wave-top img {
  width: 100%;
  height: auto;
  display: block;
}

/* Vector de fondo */
.cima-cta-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1510px;
  height: 712.5px;
  background-image: url('https://8585816.fs1.hubspotusercontent-na1.net/hubfs/8585816/Cordillera%20LATAM%202025%20(PG%20web)/SVG/vector_huila.svg'); 
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right; 
  opacity: 0.15; 
  pointer-events: none;
  z-index: 0;
}

.cima-cta-container {
  position: relative;
  z-index: 2; 
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px; 
}

.cima-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 650px;
}

.cima-cta-title {
  margin: 0 0 24px;
  color: #E8EAEC;
  font-size: 40px;
  font-weight: 700;
  line-height: 47px; 
  text-transform: uppercase;
}

.cima-cta-text {
  margin: 0 0 24px;
  color: #E8EAEC;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}


.cima-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.cima-cta-btn {
  display: inline-flex;
  height: 31px;
  padding: 10px 14px 10px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #E8EAEC;
  background: transparent;
  color: #E8EAEC;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: content-box;
}

.cima-cta-btn:hover {
  background: #E8EAEC;
  color: #132B3F;
}

/* Botón de WhatsApp  */
.cima-cta-btn-whatsapp {
  display: inline-flex;
  height: 31px;
  padding: 10px 24px 10px 12px;
  align-items: center;
  gap: 10px; 
  border-radius: 100px;
  border: 1px solid #D1D1D1;
  background: transparent;
  color: #E8EAEC;
  font-size: 16px;
  font-weight: 400;
  text-transform: lowercase; 
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: content-box;
}

.cima-cta-btn-whatsapp:hover {
  background: #25D366; 
  border-color: #25D366;
  color: #FFF;
}

.cima-cta-btn-whatsapp:hover svg path {
  fill: #FFF; 
}

/* =========================================
   RESPONSIVE 
========================================= */
@media (max-width: 991px) {
  .cima-cta-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .cima-cta-bg {
    width: 1000px;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .cima-cta-section {
    padding: 100px 20px 80px;
  }
  
  .cima-cta-title {
    font-size: 28px;
    line-height: 34px;
  }
  
  .cima-cta-container {
    gap: 40px;
  }
  
  .cima-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cima-cta-btn, .cima-cta-btn-whatsapp {
    width: 100%;
    justify-content: center;
    box-sizing: border-box; 
  }
}
{% end_scope_css %}