.bloco-personalizacao {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: fit-content;
  overflow: hidden;
  border-radius: 10px;
  clear: both;
}

.bloco-personalizacao::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, rgba(15, 15, 15, 0.92) 42%, rgba(15, 15, 15, 0.35) 100%);
  z-index: 0;
}

.bloco-personalizacao__inner {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 30px;
  max-width: 720px;
  z-index: 1;
}

.bloco-personalizacao__tag {
  display: inline-block;
  width: fit-content;
  background: #d10069;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.bloco-personalizacao h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #00b3f4 !important;
  margin-bottom: 12px;
}

.bloco-personalizacao p {
  color: #e4e4e4 !important;
  text-align: left !important;
  margin-bottom: 12px;
}

.bloco-personalizacao__apoio {
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
}

.bloco-personalizacao .btn-one {
  margin-top: 8px;
  text-align: center;
  white-space: normal;
  max-width: 100%;
  height: auto;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .bloco-personalizacao::before {
    background-image: linear-gradient(to bottom, rgba(15, 15, 15, 0.92) 45%, rgba(15, 15, 15, 0.55) 100%);
  }

  .bloco-personalizacao__inner {
    min-height: 280px;
    padding: 28px 20px;
    max-width: 100%;
  }

  .bloco-personalizacao h3 {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }

  .bloco-personalizacao .btn-one {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
  }
}

.faq-prod {
  clear: both;
}

.faq-prod h2 {
  font-size: 1.8rem;
  color: #00526f;
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #00526f;
  list-style: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: "";
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00b3f4;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary {
  background: #00526f;
  color: #fff;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item__body {
  padding: 16px 20px 20px;
  background: #f8f9fa;
}

.faq-item__body p {
  margin-bottom: 0;
  color: #333;
}

@media (max-width: 575px) {
  .faq-prod h2 {
    font-size: 1.4rem;
  }

  .faq-item summary {
    padding: 14px 16px;
    font-size: 15px;
  }
}
