@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --navy-dark: #0D1B2A;
  --navy: #142C4E;
  --gold: #D4AF37;
  --gold-light: #E8C766;
  --white: #FFFFFF;
  --gray-light: #F2F4F8;
  --gray-mid: #A8B3C4;
  --text-dark: #1A2433;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(13, 27, 42, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3, h4, .display {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.navbar {
  background: var(--navy-dark);
  padding: 18px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  white-space: nowrap;
}
.logo .bubble {
  width: 34px; height: 34px;
  border-radius: 10px 10px 10px 2px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark);
  font-weight: 800;
  flex-shrink: 0;
}
.logo .pro { color: var(--white); }
.logo .palestrante { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--gray-mid);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { box-shadow: 0 6px 18px rgba(212,175,55,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-block { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 72px 0 90px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 .gold { color: var(--gold); }
.hero p.lead {
  color: var(--gray-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.search-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  max-width: 720px;
}
@media (max-width: 720px) {
  .search-card { grid-template-columns: 1fr; }
}
.search-card select, .search-card input {
  padding: 13px 14px;
  border: 1.5px solid #E3E7EE;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
}
.search-card select:focus, .search-card input:focus {
  outline: none;
  border-color: var(--gold);
}

.badges-row {
  margin-top: 36px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--gray-mid);
  font-size: 0.85rem;
}
.badges-row span { display: flex; align-items: center; gap: 8px; }
.badges-row .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- SECTIONS ---------- */
section { padding: 70px 0; }
.section-light { background: var(--gray-light); }
.section-navy { background: var(--navy-dark); color: var(--white); }

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: 1.9rem; margin-bottom: 14px; }
.section-head p { color: #5A6B85; }
.section-navy .section-head p { color: var(--gray-mid); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { color: #5A6B85; font-size: 0.92rem; margin: 0; }

/* ---------- SPEAKER CARDS (diretório) ---------- */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.speaker-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .15s;
}
.speaker-card:hover { transform: translateY(-3px); }
.speaker-photo {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
}
.speaker-body { padding: 18px; }
.speaker-body h3 { font-size: 1rem; margin-bottom: 4px; }
.speaker-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 10px 0;
}
.tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--gray-light);
  color: var(--navy);
  font-weight: 600;
}
.tag-gold { background: rgba(212,175,55,0.15); color: #9A7A1E; }
.rating { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: #5A6B85; }
.rating .stars { color: var(--gold); font-weight: 700; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #8A97AC;
}
.empty-state .icon-lg { font-size: 2.5rem; margin-bottom: 12px; }

/* ---------- FORMS ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}
.form-row .hint { font-size: 0.78rem; color: #8A97AC; margin-top: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E3E7EE;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: #5A6B85; }
.checkbox-row input { width: auto; margin-top: 3px; }

.chip-select { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid #E3E7EE;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--text-dark);
  transition: all .15s;
}
.chip.selected {
  background: var(--navy-dark);
  color: var(--gold);
  border-color: var(--navy-dark);
}

.notice {
  background: rgba(212,175,55,0.1);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #6B5A1E;
  margin-bottom: 24px;
}

/* ---------- PROFILE ---------- */
.profile-hero {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 48px 0;
}
.profile-header { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.profile-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.profile-name { font-size: 1.7rem; margin-bottom: 6px; }
.profile-meta { color: var(--gray-mid); font-size: 0.9rem; }

.contact-locked {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: #5A6B85;
  font-size: 0.88rem;
}
.contact-locked .icon-lg { font-size: 1.8rem; margin-bottom: 10px; display: block; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-dark);
  color: var(--gray-mid);
  padding: 40px 0;
  font-size: 0.85rem;
  text-align: center;
}
footer .logo { justify-content: center; margin-bottom: 12px; }
