

/** proposito-section **/

.proposito-section{
  position: relative;
  overflow: hidden;
  padding: 170px 0px;
  background: var(--secondary-color);
  text-align: center;
}

.proposito-section:before{
  content: '';
  position: absolute;
  top: -260px;
  left: 50%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  transform: translateX(-50%) scale(1);
  background: radial-gradient(circle, rgba(241, 135, 7, 0.28) 0%, rgba(241, 135, 7, 0) 68%);
  animation: proposito-pulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes proposito-pulse{
  0%, 100%{
    transform: translateX(-50%) scale(1);
    opacity: 0.75;
  }
  50%{
    transform: translateX(-50%) scale(1.18);
    opacity: 1;
  }
}

.proposito-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
}

.proposito-section .shape .shape-1{
  position: absolute;
  left: 10%;
  top: 20%;
  width: 88px;
  height: 97px;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.proposito-section .shape .shape-2{
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 79px;
  height: 87px;
  background-repeat: no-repeat;
  opacity: 0.45;
}

.proposito-inner{
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.proposito-inner .mini-kicker{
  margin-bottom: 26px;
}

.proposito-title{
  font-family: var(--title-font);
  font-size: clamp(28px, 4vw, 52px);
  line-height: clamp(38px, 4.6vw, 64px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 26px;
}

.proposito-text{
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.60);
  max-width: 680px;
  margin: 0 auto 46px auto;
}

.proposito-cta{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 34px;
}

.proposito-email{
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
  padding-bottom: 3px;
  transition: all 300ms ease;
}

.proposito-email:hover{
  color: var(--theme-color);
  border-color: var(--theme-color);
}

.proposito-signature{
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

@media only screen and (max-width: 767px){
  .proposito-section{
    padding: 100px 0px;
  }

  .proposito-section:before{
    width: 460px;
    height: 460px;
    top: -160px;
  }

  .proposito-text{
    margin-bottom: 36px;
  }
}
