.paws-faq {
  padding: 0;
  border-radius: 32px;
}


.paws-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.paws-faq-tab {
  border-radius: 999px;
  border: 2px solid #00b9d4;
  background: transparent;
  padding: 10px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #0c2533;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  text-transform: none;
}

.paws-faq-tab:hover {
  background-color: #44c2cc;
}

.paws-faq-tab.is-active {
  background: #00b9d4;
  color: #ffffff;
}


.paws-faq-panels {
  max-width: 960px;
  margin: 0 auto;
}

.paws-faq-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paws-faq-panel[hidden] {
  display: none;
}


.paws-faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 7px 13px 41.6px 0px #00000012;
}

.paws-faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.paws-faq-question:hover {
  background: transparent;
}

.paws-faq-question-text {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  color: #000;
  text-transform: none !important;
}

.paws-faq-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #00b9d4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paws-faq-icon-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #00b9d4;
  border-bottom: 2px solid #00b9d4;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.paws-faq-answer {
  margin-top: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.paws-faq-answer p {
  color: #000;
  font-size: 16px;
  text-align: left;
}

.paws-faq-answer[hidden] {
  display: none;
}

.paws-faq-item.is-open .paws-faq-icon-chevron {
  transform: rotate(-135deg);
}

/* mobile */

@media (max-width: 768px) {
  .paws-faq {
    padding: 32px 16px;
    border-radius: 24px;
  }

  .paws-faq-question-text {
    font-size: 16px;
  }

  /* ====== SLIDER DAS TABS NO MOBILE ====== */
  .paws-faq-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 0 16px 8px;
    justify-content: flex-start;
    /* scroll-snap-type: x mandatory; */
    flex-direction: column;
  }

  .paws-faq-tab {
    flex: 0 0 auto;
    min-width: 260px;
    width: auto;
    text-align: left;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .paws-faq-tabs::-webkit-scrollbar {
    display: none;
  }
  .paws-faq-tabs {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .paws-section-top::before {
    content: "";
    position: absolute;
    top: -40px !important;
    left: 0;
    width: 100%;
    height: 60px !important;
    background-image: url('../images/bg-mobile-faq.svg') !important;
    background-repeat: no-repeat;
    background-position: top !important;
    pointer-events: none;
    z-index: 2;
    background-size: cover;
  }

  .paws-faq-read-more {
    width: 100% !important;
  }
}

.paws-faq-item--hidden {
  display: none;
}

.paws-faq-read-more-wrapper {
  margin-top: 32px;
  text-align: center;
}

.paws-faq-read-more {
  display: inline-flex;
  width: 400px;
  align-items: center;
  justify-content: center;
  padding: 14px 72px;
  border-radius: 999px;
  border: 2px solid #46c3cd;
  background: transparent;
  color: #44c2cc;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-transform: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.paws-faq-read-more:hover {
  background: #00b9d4;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 185, 212, 0.35);
}
.paws-section-top {
  position: relative;
  background-color: #E9F8FB; 
  overflow: visible;
}


.paws-section-top::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url('../images/curve-bg.svg');
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
  z-index: 2;
}

.paws-section-top > .elementor-container,
.paws-section-top > .elementor-container > .elementor-column,
.paws-section-top > .elementor-container > .elementor-column > .elementor-widget-wrap {
  position: relative;
  z-index: 2;
}