.doubts-title-container {
  width: 43.1512rem;
  height: 4.5625rem;
  margin-top: 4.5rem;
}

.doubts-title {
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 1.875rem;
  line-height: 2.25rem;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--Preto-Azul, #102E3B);
}

.line-3 {
  width: 60rem;
  height: 0rem;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #C7475D;
}

.doubts-content-container {
  width: 60rem;
  height: auto;
  gap: 0.625rem;
  margin: 2.5rem 0 6.75rem 0;
}

.doubts-content-box {
  width: 60rem;
  height: auto;
  opacity: 1;
  border-radius: 0.3125rem;
  background: var(--Branco, #FFFFFF);
  box-shadow: 0rem 0rem 0.25rem 0rem #00000040;
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.doubts-header {
  width: auto;
  height: 100%;
  cursor: pointer;
}

.doubts-subtitle {
  width: 55.125rem;
  height: 1.875rem;
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 1.25rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--Preto-Azul, #102E3B);
  margin-bottom: 0;
}

.doubts-toggle-box {
  width: 2rem;
  height: 2rem;
  position: relative;
  cursor: pointer;
}

.lineH, .lineV {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: #C7475D;
  border-radius: 0.1875rem;
  transform: translate(-50%, -50%);
}

.lineV {
  transition: transform 0.3s ease-in-out;
  transform: translate(-50%, -50%) rotate(90deg); 
}

.doubts-toggle-box.active .lineV {
  transform: translate(-50%, -50%) rotate(180deg);
}

@media (max-width: 768px) {
  .doubts-title-container {
    width: 15.0625rem;
    height: 2.1875rem;
    margin: 3.25rem 0 1.5rem 0;
  }

  .doubts-title {
    font-size: 1.25rem;
  }

  .line-3 {
    width: 20.9375rem;
  }

  .doubts-content-container {
    width: 20.9375rem;
    gap: 0.625rem;
    margin: 2rem 0 3.25rem 0;
  }

  .doubts-content-box {
    width: 100%;
  }

  .doubts-subtitle {
    width: 215px;
    height: 36px;
    font-size: 12px;
    line-height: 15px;
  }
}