.five-reasons-section {
  margin: 100px 0px;
  color: white;
}

.five-reasons-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;

}

.five-reasons-header {
  max-width: 440px;
  padding: 40px 32px
}

.five-reasons-header h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2
}

.five-reasons-header p {
  margin: 0;
  margin-top: 16px;
  color: rgba(227, 229, 235, 1);
  font-size: 20px;
  font-weight: 400;
}

.reason-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: transparent;
  color: white;
  max-width: 440px;
  min-height: 383px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1; /* para que el contenido esté por encima del borde */
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* grosor del borde */
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(86, 77, 247, 1), rgba(73, 239, 219, 1));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
}


.reason-number {
  font-size: 64px;
  margin: 0;
  font-weight: 700;
  color: rgba(73, 239, 219, 1);
}

.reason-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.reason-content p {
  margin: 0.5rem 0 0;
  color: rgba(227, 229, 235, 1);
  font-size: 20px;
  font-weight: 400
}

.five-reasons-cta {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 62px;

}

.cta-button-info {
  background-color: white;
  color: black;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 24px;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-button-info:hover {
  background-color: rgba(86, 77, 247, 1);
  color: white;
  font-weight: 700;
  text-decoration: none;
}





@media screen and (max-width: 939px) {
  .five-reasons-section {
    margin: 50px 0px
  }
  
  .five-reasons-cta {
    margin-top: 48px
  }
  
  .cta-button-info{
    font-size: 14px;
  }
  
  .five-reasons-header p {
    font-size: 16px;
  }
  
  .reason-card{
   margin: 0 24px;
   min-height: 326px
  }
  
  .reason-number {
    font-size: 48px
  }
  
  .reason-content h3 {
    font-size: 20px;
  }

  .reason-content p {
    font-size: 16px;
  }
} 
