/* Benefits Section */
.benefits-section {
  position: relative;
  background: #070c16;
  padding: 80px 20px;
  color: #0582FF;
}

a.benefits-section__button {
  color: #FFFFFF;
}
/* Container */
.benefits-section__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
a.features-section__button {
  color: white;
}
/* Header */
.benefits-section__header {
  margin-bottom: 60px;
}

.benefits-section__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  margin: 0 0 24px 0;
}

.benefits-section__title-normal {
  color: #FFFFFF;
}

.benefits-section__title-highlight {
  color: #5CE4FF;
}

.benefits-section__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #B0BEC5;
  max-width: 600px;
  margin: 0 auto;
}

/* Benefits Grid */
.benefits-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

/* Benefit Card */
.benefits-section__card {
  background: linear-gradient(110.08deg, #0C1322 0%, #0F1729 100%);
  border: 1px solid rgba(92, 228, 255, 0.2);
  border-radius: 16px;
  padding: 40px 25px;
  text-align: left;
  display: flex;
  transition: all 0.3s ease;
  gap: 24px;
}

.benefits-section__card:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 228, 255, 0.4);
  box-shadow: 0 8px 32px rgba(92, 228, 255, 0.1);
}

/* Icon */
.benefits-section__icon {
  width: 48px;
  height: 48px;
  background: hsl(215.22deg 67.65% 13.33%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefits-section__icon i {
  width: 24px;
  height: 24px;
  color: #0582FF;
  stroke-width: 2;
}

/* Card Content */
.benefits-section__content {
  flex: 1;
}

h3.benefits-section__card-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #F8FAFC;
  margin: 0 0 8px 0;
}

.benefits-section__card-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #B0BEC5;
  margin: 0;
}

/* CTA Section */
.benefits-section__cta {
  text-align: center;
}

.benefits-section__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  background: linear-gradient(90deg, #155DFC 0%, #1447E6 100%);
  width: 306px;
  height: 48px;
  opacity: 1;
  padding-left: 48px;
  padding-right: 48px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 10px -6px #5CE4FF40, 0px 8px 25px -5px #00D0F94D;
  margin-bottom: 32px;
  justify-content: center;
}

.benefits-section__button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 15px -6px #5CE4FF40, 0px 12px 35px -5px #00D0F94D;
  text-decoration: none;
  color: #FFFFFF;
}

.benefits-section__button i {
  width: 20px;
  height: 20px;
}

/* Footer */
.benefits-section__footer {
  background: #151923;
  border: 1px solid #292b34;
  border-radius: 12px;
  padding: 20px;
  max-width: 500px;
  margin: 0 auto; 
}

.benefits-section__footer-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #B0BEC5;
  margin: 0 0 8px 0;
}

.benefits-section__footer-highlight {
  color: #5CE4FF;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.benefits-section__cupos {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  color: #5CE4FF;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.benefits-section__cupos-icon {
  color: #5CE4FF;
  font-size: 16px;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
  .benefits-section {
    padding: 60px 16px;
  }

  .benefits-section__title {
    font-size: 36px;
  }

  .benefits-section__subtitle {
    font-size: 18px;
  }

  .benefits-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits-section__card {
    padding: 20px;
  }

  .benefits-section__header {
    margin-bottom: 40px;
  }

  .benefits-section__cta {
    margin-top: 40px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .benefits-section {
    padding: 40px 12px;
  }

  .benefits-section__title {
    font-size: 28px;
    line-height: 115%;
  }

  .benefits-section__subtitle {
    font-size: 16px;
  }

  .benefits-section__card {
    padding: 16px;
  }

  .benefits-section__icon {
    width: 40px;
    height: 40px;
  }

  .benefits-section__icon i {
    width: 20px;
    height: 20px;
  }

  .benefits-section__card-title {
    font-size: 15px;
  }

  .benefits-section__card-description {
    font-size: 13px;
  }

  .benefits-section__button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .benefits-section__footer {
    padding: 16px;
  }
}
