/* ===== PÁGINA: TERMOS DE SERVIÇO ===== */

.termsContent {
  padding: 100px 24px 80px; /* Padding superior um pouco maior devido ao header */
  background-color: var(--bg-1);
}

.contentTerms {
  max-width: 800px;
  margin: 0 auto;
}

.termsText {
  color: var(--verde-texto);
  font-family: "Unbounded", sans-serif;
  line-height: 1.8;
  font-size: var(--text-p, 1rem); /* Fallback caso não tenha a variável */
}

/* Cabeçalho da Página */
.titleTerms {
  font-size: var(--f-size-h1);
  color: var(--verde-escuro);
  font-family: "Epilogue", sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 100px;
}

.subtitleTerms {
  font-size: 1.1rem;
  color: var(--verde-principal);
  font-weight: 600;
  margin-bottom: 6px;
}

.dateTerms {
  font-size: 0.9rem;
  color: var(--verde-texto);
  opacity: 0.7;
  font-style: italic;
  margin-bottom: 40px;
}

.introText {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--verde-escuro);
}

/* Títulos das Seções (H2) */
.termsText h2 {
  font-size: var(--f-size-h2, 1.8rem);
  color: var(--verde-escuro);
  font-family: "Epilogue", sans-serif;
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
  border-left: 4px solid var(--verde-claro);
  padding-left: 12px;
}

/* Parágrafos gerais */
.termsText p {
  margin-bottom: 24px;
  text-align: justify;
}

.termsText strong {
  color: var(--verde-escuro);
  font-weight: 700;
}

/* Lista de Contato */
.contactList {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  margin-bottom: 40px;
}

.contactList li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.termsText a {
  color: var(--verde-principal);
  text-decoration: none;
  font-weight: 600;
  transition:
    color var(--transition, 0.3s ease),
    border-color var(--transition, 0.3s ease);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.termsText a:hover {
  color: var(--verde-principal-hover);
  border-bottom-color: var(--verde-principal-hover);
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 768px) {
  .termsContent {
    padding: 80px 20px 50px;
  }

  .titleTerms {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .termsText h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-top: 32px;
  }

  .termsText p {
    text-align: left;
    margin-bottom: 18px;
  }
}
