/* ==========================================================================
   PONTO PESSOAS — Design tokens (identidade visual oficial)
   ========================================================================== */
:root {
  --navy: #0A2540;
  --navy-light: #123a5e;
  --teal: #5DCFB2;
  --teal-dark: #3ba98e;
  --white: #FFFFFF;
  --gray: #E0E0E0;
  --gray-dark: #8a9199;
  --gold: #F1C40F;
  --ink: #1c2b36;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --radius: 10px;
  --shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.2;
}
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
p { margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

section { padding: 88px 0; }
.bg-light { background: #F7F9FA; }
.bg-navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(241, 196, 15, 0.35); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { box-shadow: 0 8px 20px rgba(10, 37, 64, 0.25); }
.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand img { height: 44px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 14.5px; font-weight: 600; color: var(--navy);
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.main-nav a:hover { border-bottom-color: var(--teal); }
.main-nav a.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 10px 20px; border-radius: 999px; border-bottom: none;
}
.main-nav a.nav-cta:hover { background: var(--navy-light); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ==========================================================================
   Hero — elemento de assinatura: a seta ascendente da marca, ampliada
   e projetada em diagonal sobre o fundo navy
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -18%;
  width: 900px;
  height: 900px;
  background: conic-gradient(from 220deg at 30% 30%, rgba(93,207,178,0.35), rgba(93,207,178,0) 55%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -30%;
  width: 60%;
  height: 240px;
  background: linear-gradient(115deg, transparent 46%, rgba(241,196,15,0.16) 47%, rgba(241,196,15,0.16) 49%, transparent 50%),
              linear-gradient(115deg, transparent 56%, rgba(93,207,178,0.18) 57%, rgba(93,207,178,0.18) 59%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero .eyebrow { color: var(--teal); }
.hero .eyebrow::after { background: var(--gold); }
.hero h1 { font-size: clamp(32px, 5vw, 52px); color: var(--white); }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 560px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* ==========================================================================
   Grids / Cards
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  height: 100%;
}
.card .card-num {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: var(--gold); letter-spacing: 1px; margin-bottom: 10px; display: block;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: #4a5560; font-size: 15px; margin-bottom: 0; }

/* Blocos do método (linha do diagnóstico) */
.metodo-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; margin-top: 40px; }
.metodo-step { padding: 0 24px; position: relative; }
.metodo-step:not(:last-child)::after {
  content: "";
  position: absolute; right: 0; top: 10px; bottom: 10px; width: 1px;
  background: var(--gray);
}
.metodo-step .step-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: var(--white); background: var(--navy); padding: 4px 10px; border-radius: 999px;
  margin-bottom: 14px;
}
.metodo-step h3 { font-size: 18px; }
.metodo-step p { font-size: 14.5px; color: #4a5560; }

/* ==========================================================================
   Formulários
   ========================================================================== */
.form-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 36px;
}
label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
input, textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 18px;
  border: 1.5px solid var(--gray); border-radius: 8px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  transition: border-color .15s ease;
}
input:focus, textarea:focus { outline: none; border-color: var(--teal); }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--gray-dark); margin-top: -6px; }
.form-required-note { font-size: 12.5px; color: #5b6470; margin: 0 0 16px; }
.label-optional { font-weight: 500; color: #5b6470; }
.form-response-note { font-size: 12.5px; color: #5b6470; line-height: 1.55; margin: 12px 0 0; }
.alert {
  padding: 14px 18px; border-radius: 8px; margin-bottom: 24px; font-size: 14.5px; font-weight: 600;
}
.alert-success { background: rgba(93,207,178,0.15); color: var(--teal-dark); border: 1px solid var(--teal); }
.alert-error { background: rgba(220,53,69,0.08); color: #b02a37; border: 1px solid rgba(220,53,69,0.35); }

/* ==========================================================================
   Materiais (cards de download)
   ========================================================================== */
.material-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; margin-bottom: 22px;
}
.material-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 10px;
  background: var(--navy); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.material-body h3 { margin-bottom: 6px; font-size: 18px; }
.material-body p { font-size: 14.5px; color: #4a5560; margin-bottom: 12px; }
.material-toggle { font-size: 14px; font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--gold); cursor: pointer; display: inline-block; }
.material-form { display: none; margin-top: 18px; max-width: 420px; }
.material-form.open { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-brand img { height: 40px; margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.footer-links a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: var(--teal); }
.footer-contato { display: flex; flex-direction: column; gap: 8px; }
.footer-contato a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.footer-contato a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.5);
}

/* Páginas legais */
.legal-page { padding: 72px 0 88px; background: #F7F9FA; }
.legal-content { max-width: 820px; }
.legal-content h1 { font-size: clamp(30px, 5vw, 46px); }
.legal-content h2 { margin-top: 34px; font-size: 21px; }
.legal-content p, .legal-content li { color: #44515d; }
.legal-content ul { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-updated { font-size: 13px; color: #6b7480 !important; margin-bottom: 34px; }
.text-link { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: var(--teal); text-underline-offset: 3px; }

/* ==========================================================================
   Teste DISC — opções de resposta (usado em teste.php e no formulário de
   envio por e-mail/WhatsApp em disc/index.php)
   ========================================================================== */
.disc-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.disc-option {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--gray); border-radius: 8px; padding: 12px 14px;
  cursor: pointer; font-size: 14.5px; font-weight: 400; color: var(--ink);
  margin-bottom: 0; transition: border-color .15s ease, background .15s ease;
}
.disc-option:hover { border-color: var(--teal); background: #F7FEFC; }
.disc-option input { accent-color: var(--teal); width: 16px; height: 16px; margin: 0; }
.disc-voltar {
  display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600;
  color: var(--gray-dark); cursor: pointer; border-bottom: 1px dashed var(--gray-dark);
}
.disc-voltar:hover { color: var(--navy); border-color: var(--navy); }

/* Linha única com as 4 letras D-I-S-C, usada como indicador visual sem revelar
   o significado de cada perfil antes do teste (pra não induzir a resposta) */
.disc-letras { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 20px 0; }
.disc-letra {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  background: var(--navy); color: var(--teal); border: 2px solid var(--teal);
}

@media (max-width: 600px) {
  .disc-options { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .metodo-steps { grid-template-columns: 1fr; gap: 32px; }
  .metodo-step:not(:last-child)::after { display: none; }
}
@media (max-width: 760px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 14px; border-bottom: 1px solid var(--gray);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a.nav-cta { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  section { padding: 64px 0; }
  .hero { padding: 80px 0 100px; }
  .form-card { padding: 24px; }
  .material-card { flex-direction: column; }
}

/* Acessibilidade: foco visível sempre */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
