/* ============================================================
   SOBRE + CONTATO — "Obsidian Elite"
   Escopo: sobre.html e contato.html.
   ============================================================ */

.pg {
  --obsidian: #0A0A0A;
  --neon:     #39FF14;
  --glass:    rgba(255,255,255,0.05);
  --hair:     rgba(255,255,255,0.10);
  --zinc-400: #A1A1AA;
  --zinc-500: #71717A;
  --zinc-600: #52525B;
}

.pg-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad-x, 1.25rem);
}

/* Amplo espaco negativo, como pedido na direcao de arte */
.pg-sec { padding: 7rem 0; }
.pg-sec--first { padding-top: calc(var(--nav-h) + 6rem); }

.pg-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.5rem;
}
.pg-h {
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
  max-width: 18ch;
}
.pg-lead {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--zinc-400);
  max-width: 52ch;
}
.pg-lead strong { color: #fff; font-weight: 600; }

/* ═══════════════════════════════════════════════
   SOBRE — cards da dupla
   ═══════════════════════════════════════════════ */
.who {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 4rem;
}
.who__card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.75rem;
  border-radius: 26px;
  border: 1px solid var(--hair);
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.5s cubic-bezier(0.19,1,0.22,1),
              border-color 0.5s ease, box-shadow 0.5s ease;
}
.who__card:hover {
  transform: translateY(-5px);
  border-color: rgba(57,255,20,0.26);
  box-shadow: 0 26px 70px rgba(0,0,0,0.55), 0 0 48px rgba(57,255,20,0.05);
}
.who__card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 50% at 85% 0%, rgba(57,255,20,0.08) 0%, rgba(57,255,20,0) 70%);
}
.who__body { position: relative; z-index: 2; }
.who__name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.who__role {
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
}
.who__bio {
  margin-top: 1.15rem;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--zinc-400);
}

/* Numeros de autoridade */
.creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 20px;
  overflow: hidden;
}
.creds__item { background: var(--obsidian); padding: 1.75rem 1.25rem; }
.creds__n {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--neon);
  line-height: 1;
}
.creds__l {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--zinc-500);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   CONTATO — filtro high-ticket
   ═══════════════════════════════════════════════ */
.apply {
  position: relative;
  padding: 2.5rem 1.5rem;
  border-radius: 30px;
  border: 1px solid var(--hair);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  margin-top: 3.5rem;
}
.apply::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 30px;
  background: radial-gradient(60% 45% at 50% 0%, rgba(57,255,20,0.10) 0%, rgba(57,255,20,0) 70%);
}
.apply__inner { position: relative; z-index: 2; }

.apply__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.apply__field { display: flex; flex-direction: column; gap: 0.5rem; }
.apply__field--full { grid-column: 1 / -1; }

.apply__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zinc-500);
}
.apply__input,
.apply__select {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--hair);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.apply__input::placeholder { color: var(--zinc-600); }
.apply__input:focus,
.apply__select:focus {
  outline: none;
  border-color: var(--neon);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.14);
}
.apply__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}
.apply__select option { background: #0E0E0E; color: #fff; }

/* Botao final massivo */
.apply__submit {
  width: 100%;
  margin-top: 2rem;
  padding: 1.4rem 2rem;
  border: none;
  border-radius: 100px;
  background: var(--neon);
  color: #000;
  font-family: inherit;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.apply__submit svg { width: 19px; height: 19px; }
.apply__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(57,255,20,0.4);
}
.apply__submit:disabled { opacity: 0.55; pointer-events: none; }
.apply__note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--zinc-600);
}
.apply__err {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: #ff6b6b;
}

/* Bloco copiavel do modo Workana */
.apply__copy { margin-top: 2rem; }
.apply__copy[hidden] { display: none; }
.apply__copy-box {
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(57,255,20,0.28);
  background: rgba(0,0,0,0.45);
  color: var(--zinc-400);
  font-size: 0.88rem;
  line-height: 1.7;
  white-space: pre-wrap;
  max-height: 260px;
  overflow-y: auto;
}
.apply__copy-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid var(--neon);
  background: transparent;
  color: var(--neon);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.apply__copy-btn:hover { background: var(--neon); color: #000; }
.apply__copy-btn.is-copied { background: var(--neon); color: #000; }

/* ═══════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════ */
@media (min-width: 700px) {
  .who { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .creds { grid-template-columns: repeat(4, 1fr); }
  .apply { padding: 3.5rem 3rem; }
  .apply__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .apply__submit { width: auto; min-width: 340px; display: flex; margin-left: auto; margin-right: auto; }
}

@media (min-width: 1024px) {
  .pg-sec { padding: 9rem 0; }
  .who__card { padding: 2.75rem 2.25rem; }
}

@media (max-width: 699px) {
  .pg-sec { padding: 4.5rem 0; }
  .pg-sec--first { padding-top: calc(var(--nav-h) + 3.5rem); }
}
