/* ═══════════════════════════════════════════════════
   CONTATO E FAQ — estilos específicos
═══════════════════════════════════════════════════ */

/* ── Hero ── */
.faq-hero {
  min-height: clamp(380px, 48vh, 560px);
}

.faq-hero .hero-bg-img {
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.faq-hero .hero-overlay {
  background:
    radial-gradient(ellipse at center, rgba(13, 27, 40, 0.25) 0%, rgba(13, 27, 40, 0.78) 100%),
    linear-gradient(to bottom, rgba(13, 27, 40, 0.7) 0%, rgba(13, 27, 40, 0.3) 40%, rgba(13, 27, 40, 0.3) 60%, rgba(13, 27, 40, 0.7) 100%);
}

.faq-hero .hero-content {
  max-width: 1400px;
  align-items: center;
  text-align: center;
}

.faq-hero-headline {
  font-size: clamp(32px, 4vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

/* ── FAQ Main ── */
.faq-main {
  background: var(--dark-navy);
  padding-block: clamp(60px, 8vw, 120px);
}

.faq-group {
  margin-bottom: clamp(48px, 6vw, 96px);
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  font-size: clamp(22px, 2.7vw, 52px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

/* ── FAQ List ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── FAQ Item ── */
.faq-item {
  position: relative;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(16px, 1.8vw, 28px) clamp(20px, 2.5vw, 40px);
  background: var(--green-lime);
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.2s ease;
}

.faq-item.is-open .faq-btn {
  background: var(--blue);
}

.faq-btn-text {
  font-size: clamp(15px, 1.35vw, 26px);
  font-weight: 700;
  color: var(--dark-navy);
  font-family: 'Syne', sans-serif;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faq-item.is-open .faq-btn-text {
  color: #fff;
}

.faq-chevron {
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 400;
  color: var(--dark-navy);
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.25s ease, color 0.2s ease;
  user-select: none;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(90deg);
  color: #fff;
}

/* ── FAQ Body (answer) ── */
.faq-body {
  display: none;
  background: var(--blue);
  border-radius: 0 0 20px 20px;
  margin-top: -20px;
  padding-top: calc(20px + clamp(16px, 1.8vw, 28px));
  padding-bottom: clamp(28px, 3vw, 48px);
  padding-inline: clamp(20px, 2.5vw, 40px);
  position: relative;
  z-index: 0;
}

.faq-item.is-open .faq-body {
  display: block;
}

.faq-body-sep {
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: clamp(16px, 1.8vw, 28px);
}

.faq-body p {
  font-size: clamp(16px, 1.35vw, 26px);
  color: #fff;
  line-height: 1.75;
  text-align: justify;
  margin: 0;
}

.faq-body p em {
  font-style: italic;
}

.faq-body p strong {
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq-group-title {
    text-align: left;
  }
}
