/* =========================================================
   Página: Contrate Palestras — Gustavo Lima
   ========================================================= */

:root {
  --bg: #0b0b0c;
  --panel: #131316;
  --white: #ffffff;
  --muted: #9a9aa2;
  --line: rgba(255,255,255,.1);
  --accent: #f26522;
  --field: #1b1b1f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Rótulos existem para leitor de tela, mas não aparecem na tela (o visual usa
   placeholder). Sem isso, quem usa leitor de tela não sabe o que preencher. */
.sr-only-label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Foco visível para navegação por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ===== TOPO ===== */
.pl-top {
  position: relative;
  padding: 28px 6vw 60px;
  background:
    radial-gradient(ellipse 60% 90% at 15% 20%, rgba(242,101,34,.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.pl-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 30px;
  transition: color .2s ease;
}
.pl-back:hover { color: var(--white); }

.pl-top-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 460px) 1fr;
  gap: 56px;
  align-items: center;
}

/* Card-imagem do topo */
.pl-hero-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.pl-hero-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.pl-hero-word {
  position: absolute;
  left: 26px; bottom: 20px;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,.7);
}

/* Intro */
.pl-intro h1 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 22px;
}
.pl-intro > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
}

.pl-duvida {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.pl-duvida-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
}
.pl-duvida-icon svg { width: 24px; height: 24px; }
.pl-duvida strong {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.pl-duvida p { color: var(--muted); font-size: 14px; }
.pl-duvida a { color: var(--accent); text-decoration: none; }
.pl-duvida a:hover { text-decoration: underline; }

/* ===== FORMULÁRIO ===== */
.pl-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 6vw 40px;
}

.pl-form-title {
  text-align: center;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: .5px;
  padding-bottom: 20px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pl-field { display: block; }
.pl-field-full { margin-top: 16px; }
.pl-grid .pl-field:nth-child(odd):last-child { grid-column: 1 / -1; }

.pl-field input,
.pl-field select,
.pl-field textarea {
  width: 100%;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  padding: 16px 18px;
  transition: border-color .2s ease, background .2s ease;
}
.pl-field textarea { resize: vertical; }

.pl-field input::placeholder,
.pl-field textarea::placeholder { color: var(--muted); }

.pl-field select { color: var(--muted); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239a9aa2' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px;
}
.pl-field select:valid { color: var(--white); }
.pl-field select option { color: #111; }

.pl-field input:focus,
.pl-field select:focus,
.pl-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #202024;
}

.pl-sep { border: none; border-top: 1px solid var(--line); margin: 24px 0; }

/* Honeypot anti-spam: invisível para humanos, robô preenche e é descartado */
.pl-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Consentimento (LGPD) */
.pl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}
.pl-consent input {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.pl-consent a { color: var(--accent); text-decoration: underline; }

.pl-submit {
  width: 100%;
  margin-top: 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter .2s ease, transform .2s ease;
}
.pl-submit:hover { filter: brightness(1.08); transform: translateY(-2px); }

.pl-note {
  margin-top: 16px;
  text-align: center;
  color: var(--accent);
  font-size: 14px;
}

/* ===== PÁGINAS DE TEXTO (política de privacidade) ===== */
.pl-doc { max-width: 1180px; margin: 0 auto; }
.pl-doc h1 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.01em;
}
.pl-doc-data { color: var(--muted); font-size: 13px; margin-top: 14px; }

.pl-doc-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 6vw 60px;
}
.pl-doc-wrap p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.pl-doc-wrap strong { color: var(--white); font-weight: 600; }
.pl-doc-wrap a { color: var(--accent); }
.pl-doc-wrap h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin: 34px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pl-doc-wrap ul { margin: 0 0 16px 20px; }
.pl-doc-wrap li { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 6px; }

.pl-doc-nota {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.pl-doc-nota p { margin: 0; }

/* ===== RODAPÉ ===== */
.pl-footer {
  border-top: 1px solid var(--line);
  padding: 26px 6vw;
  text-align: center;
}
.pl-footer p { color: var(--muted); font-size: 12px; }
.pl-footer strong { color: var(--white); font-weight: 600; }

/* ===== MOBILE ===== */
@media (max-width: 780px) {
  .pl-top-inner { grid-template-columns: 1fr; gap: 30px; }
  .pl-hero-card { aspect-ratio: 16 / 10; }
  .pl-grid { grid-template-columns: 1fr; }
}
