/* ============================================================
   PURPLEIT — terms.css
   ============================================================ */

/* CANVAS partículas de fundo */
.terms-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ── HERO DA PÁGINA DE TERMOS ─────────────────────────────── */
.terms-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.terms-hero-fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(123,44,255,0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(123,44,255,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.terms-hero-content {
  position: relative;
  z-index: 2;
}

.terms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.terms-hero .eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--purple-light);
  opacity: 0.5;
}

.terms-hero .eyebrow-text {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--purple-pale);
}

.terms-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.terms-title-accent {
  color: var(--purple-light);
}

.terms-subtitle {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── MAIN CONTENT ─────────────────────────────────────────── */
.terms-main {
  position: relative;
  z-index: 1;
  padding: 0 2rem 10vh;
}

.terms-container {
  max-width: 780px;
  margin: 0 auto;
}

/* Intro */
.terms-intro {
  margin-bottom: 3rem;
}

.terms-intro p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--white-60);
}

/* Divider */
.terms-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,44,255,0.3), transparent);
  margin: 3rem 0;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.terms-section {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s;
}

.terms-section:last-of-type {
  border-bottom: none;
}

.terms-section:hover {
  border-color: rgba(123,44,255,0.15);
}

.terms-section-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(123,44,255,0.2);
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
  user-select: none;
}

.terms-section:hover .terms-section-number {
  color: rgba(123,44,255,0.45);
}

.terms-section-body h2 {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.terms-section-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--white-60);
  margin-bottom: 0.8rem;
}

.terms-section-body p:last-child {
  margin-bottom: 0;
}

.terms-section-body ul {
  list-style: none;
  margin: 0.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-section-body ul li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--white-60);
  padding-left: 1.2rem;
  position: relative;
}

.terms-section-body ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.35rem;
  color: var(--purple-core);
  top: 0.55em;
}

/* Footer note */
.terms-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(123,44,255,0.12);
  background: rgba(123,44,255,0.04);
}

.terms-footer-note .logo-diamond {
  font-size: 0.9rem;
  color: var(--purple-core);
  flex-shrink: 0;
  padding-top: 2px;
  filter: drop-shadow(0 0 6px var(--purple-core));
}

.terms-footer-note p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .terms-hero { padding: 130px 1.5rem 60px; }
  .terms-section { grid-template-columns: 1fr; gap: 0.5rem; }
  .terms-section-number { font-size: 1.4rem; }
  .terms-footer-note { flex-direction: column; gap: 0.75rem; }
}
