.swiper-button-prev,
.swiper-button-next {
  background: #131313c2;
  color: var(--white);

  width: 36px;
  height: 36px;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1rem;
}

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: #d9d9d9;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #273c97;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
  & > span {
    margin: 0 5px !important;
  }
}

.bombonas_wrapper {
  position: relative;
}

.bombonas-pagination {
  bottom: -60px !important;
}

.bombonas-button-prev {
  left: -50px;
}

.bombonas-button-next {
  right: -50px;
}

/* FORMULÁRIO */

.box_form {
  background-color: #f5f3f3;
  border-radius: 8px;
  padding: 1.5rem;
}

.box_form .form {
  gap: 1rem;
}

.form > div > label {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--primary-hover);
}

.form > div > span > input,
.form > div > span > select,
.form > div > span > textarea {
  background-color: #e4e2e2 !important;
  border-radius: 4px !important;
  line-height: 1.3 !important;
  color: var(--primary-hover) !important;
}

.form > div > span > input,
.form > div > span > select {
  height: 3rem;
}

.form > div > span > input::placeholder,
.form > div > span > textarea::placeholder {
  color: #6b7280;
}

.form > div > span > select::placeholder {
  color: var(--primary-hover);
}

.form > div > button {
  width: 100%;
  height: 3.75rem;
  border-radius: 5px;
  background-color: var(--primary);
  color: var(--white);

  border: none;

  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.4px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  transition: all 0.5s ease;
}

.form > div > button i {
  font-size: 1.25rem;
}

.form > div > button:hover {
  background-color: var(--primary-hover);
}

@media (min-width: 992px) {
  .box_form {
    padding: 3rem;
  }

  .box_form .form {
    gap: 2rem 0;
  }
}

@media (min-width: 1366px) {
  form > div > label {
    font-size: 1.25rem;
  }
}

@media (min-width: 1400px) {
  form > div > label {
    font-size: 1.5rem;
  }
}
