* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(140, 214, 221, 0.45), transparent 28%),
    linear-gradient(180deg, #f8fdfe 0%, #e7f5f7 44%, #f9fcfc 100%);
  color: #18424c;
}

.faq-page {
  position: relative;
  overflow: hidden;
}

.faq-page .container {
  max-width: calc(100% - 80px);
  padding-left: 0;
  padding-right: 0;
}

.faq-section {
  padding: 64px 0;
}

.faq-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hairline {
  flex: 1;
  height: 1px;
  background-color: rgba(0, 97, 118, 0.4);
}

.faq-title {
  margin: 0;
  color: #006176;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.faq-row {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: 24px;
  margin-top: 48px;
}

.faq-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2eaee;
  background-color: #f0f6f8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 97, 118, 0.3);
  background-color: #ffffff;
  box-shadow: 0 18px 45px -22px rgba(0, 97, 118, 0.55);
}

.faq-question {
  margin: 0;
  color: #3a4a55;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.625;
  text-align: left;
}

.faq-more {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: none;
  border-radius: 999px;
  background-color: #006176;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-more:hover {
  background-color: #3c2168;
  transform: none;
}

.faq-modal-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #006176;
}

.faq-modal-body {
  color: #3a4a55;
  font-size: 0.95rem;
  line-height: 1.625;
}

.faq-modal-body ul,
.faq-modal-body ol {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.faq-modal-body li {
  margin-bottom: 0.25rem;
}

.faq-modal-subtitle {
  margin-top: 1.25rem;
  font-weight: 700;
  color: #006176;
}

.faq-modal-body a {
  color: #006176;
  text-decoration: none;
}

.faq-modal-body a:hover {
  text-decoration: underline;
}

.modal-footer .btnQs {
  background-color: #006176;
  border-radius: 13px;
  padding: 12px 24px;
  color: white;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 18px 45px -22px rgba(0, 97, 118, 0.55);
}

.modal-footer .btnQs:hover {
  background-color: #0087a5;
  transform: translateY(-2px);
}

.modal-footer .btn-especialistas {
  background: linear-gradient(135deg, #2a8a9a, #43b6c9);
  border-radius: 13px;
  padding: 12px 24px;
  color: white;
  border: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 18px 45px -22px rgba(0, 97, 118, 0.55);
}

.modal-footer .btn-especialistas:hover {
  background: linear-gradient(135deg, #43b6c9, #5fd3e6);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .faq-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .faq-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .faq-page .container {
    max-width: calc(100% - 40px);
  }

  .faq-card {
    width: 100%;
    max-width: 100%;
  }
}