/* ==========================================================================
   I Encontro de Práticas Jurídicas · FICV
   ========================================================================== */

:root {
  --navy-950: #050c17;
  --navy-900: #0b1829;
  --navy-850: #0e2035;
  --navy-800: #122840;
  --navy-700: #17324f;
  --navy-600: #1e3d5e;
  --border-soft: rgba(242, 194, 112, 0.16);
  --border-strong: rgba(242, 194, 112, 0.34);

  --gold-300: #f6d494;
  --gold-400: #f2c270;
  --gold-500: #e0ab52;
  --gold-600: #c2903f;

  --cream: #f3ede0;
  --slate-300: #b7c1d1;
  --slate-500: #8393a9;
  --slate-600: #66788f;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-gold: 0 20px 60px -20px rgba(242, 194, 112, 0.25);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--navy-950);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* Texture: faint grain/vignette applied globally via body background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(242, 194, 112, 0.06), transparent 60%);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em; color: var(--cream); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.18; }
.section-head p { margin-top: 16px; color: var(--slate-300); font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.section-pad { padding: 108px 0; }
@media (max-width: 720px) { .section-pad { padding: 76px 0; } }

.divider-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--border-soft), transparent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #1a1206;
  box-shadow: 0 14px 40px -10px rgba(242, 194, 112, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 50px -12px rgba(242, 194, 112, 0.7); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  border: 1px solid rgba(243, 237, 224, 0.28);
  color: var(--cream);
  background: rgba(243, 237, 224, 0.03);
}
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-300); background: rgba(242, 194, 112, 0.06); }

.btn-sm { padding: 11px 22px; font-size: 13.5px; }

.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(5, 12, 23, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; }
.brand img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-300);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-400);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn-primary { display: none; }
@media (min-width: 860px) { .nav-cta .btn-primary { display: inline-flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: 10px;
}
.nav-toggle span {
  width: 20px; height: 1.5px;
  background: var(--cream);
  margin: 0 auto;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), width 0.3s;
}
@media (min-width: 860px) { .nav-toggle { display: none; } }
@media (max-width: 859px) { .nav-links { display: none; } }

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 10, 20, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 26px; color: var(--cream); }
.mobile-menu a:hover { color: var(--gold-400); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute;
  inset: -8% -4%;
  background-image: url("../../images/bg.jpg");
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  z-index: -2;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,10,19,0.55) 0%, rgba(5,10,19,0.55) 30%, rgba(5,10,19,0.86) 88%, #05090f 100%),
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(5,10,19,0.05), rgba(5,10,19,0.55) 75%);
}

.hero-content { text-align: center; margin: 0 auto; max-width: 880px; }

.hero-logo { width: min(560px, 82vw); margin: 0 auto 30px; }
.hero-logo img { width: 100%; height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45)); }

.hero-subtitle {
  font-size: clamp(16px, 2.1vw, 19px);
  color: var(--slate-300);
  max-width: 620px;
  margin: 0 auto 34px;
  font-weight: 400;
}
.hero-subtitle strong { color: var(--cream); font-weight: 600; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(11, 24, 41, 0.55);
  backdrop-filter: blur(6px);
  font-size: 13.5px;
  color: var(--slate-300);
}
.hero-meta svg { width: 15px; height: 15px; color: var(--gold-400); flex-shrink: 0; }

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 54px; }

/* Countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 84px));
  gap: 14px;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}
.countdown .unit {
  width: auto;
  min-width: 0;
  padding: 14px 0 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(20, 35, 56, 0.55), rgba(11, 24, 41, 0.55));
  backdrop-filter: blur(6px);
}
.countdown .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}
.countdown .label {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
}

@media (max-width: 400px) {
  .countdown { gap: 8px; }
  .countdown .num { font-size: 22px; }
  .countdown .label { font-size: 9px; margin-top: 4px; }
  .countdown .unit { padding: 10px 0 9px; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(180deg, var(--gold-400), transparent); animation: cueMove 2.2s ease-in-out infinite; }
@keyframes cueMove { 0%, 100% { transform: scaleY(0.6); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ==========================================================================
   Sobre
   ========================================================================== */
.sobre { background: var(--navy-950); }
.sobre-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start; }
@media (max-width: 860px) { .sobre-grid { grid-template-columns: 1fr; gap: 40px; } }

.sobre-text p { color: var(--slate-300); font-size: 16.5px; }
.sobre-text p + p { margin-top: 18px; }

.audience-strip {
  margin-top: 32px;
  padding: 18px 22px;
  border-left: 2px solid var(--gold-500);
  background: rgba(242, 194, 112, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px;
  color: var(--slate-300);
}
.audience-strip strong { color: var(--gold-300); font-family: var(--font-display); font-weight: 600; }

.eixo-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: linear-gradient(160deg, rgba(20, 35, 56, 0.45), rgba(11, 24, 41, 0.2));
}
.eixo-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-400); font-family: var(--font-body); font-weight: 600; margin-bottom: 20px; }
.eixo-list { display: flex; flex-direction: column; gap: 12px; }
.eixo-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(5, 12, 23, 0.4);
  border: 1px solid rgba(243, 237, 224, 0.06);
  font-size: 15px;
  color: var(--cream);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.eixo-list li:hover { border-color: var(--border-strong); transform: translateX(4px); }
.eixo-list .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); flex-shrink: 0; }

/* ==========================================================================
   Objetivos
   ========================================================================== */
.objetivos { background: var(--navy-900); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.obj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .obj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .obj-grid { grid-template-columns: 1fr; } }

.obj-card {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: rgba(11, 24, 41, 0.5);
  border: 1px solid var(--border-soft);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.obj-card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: rgba(20, 35, 56, 0.6); }
.obj-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(242, 194, 112, 0.1);
  color: var(--gold-400);
  margin-bottom: 20px;
}
.obj-icon svg { width: 22px; height: 22px; }
.obj-card h3 { font-size: 18px; margin-bottom: 10px; }
.obj-card p { font-size: 14.5px; color: var(--slate-300); }
.obj-num { font-family: var(--font-display); font-size: 13px; color: var(--gold-600); margin-bottom: 8px; letter-spacing: 0.05em; }

/* ==========================================================================
   Programação (timeline)
   ========================================================================== */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-500), var(--border-soft) 90%);
}
@media (min-width: 720px) { .timeline::before { left: 50%; transform: translateX(-50%); } }

.tl-item { position: relative; padding-left: 68px; margin-bottom: 44px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: 18px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 2px solid var(--gold-400);
  box-shadow: 0 0 0 6px rgba(242, 194, 112, 0.1);
}
.tl-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold-400); }

@media (min-width: 720px) {
  .tl-item { width: 50%; padding-left: 0; padding-right: 56px; text-align: right; }
  .tl-item .tl-dot { left: auto; right: -9px; }
  .tl-item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 56px; text-align: left; }
  .tl-item:nth-child(even) .tl-dot { right: auto; left: -9px; }
}

.tl-time {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-300);
  margin-bottom: 8px;
}
.tl-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  background: linear-gradient(160deg, rgba(20, 35, 56, 0.4), rgba(11, 24, 41, 0.15));
}
.tl-card h3 { font-size: 19px; margin-bottom: 6px; }
.tl-card .tl-loc { font-size: 12.5px; color: var(--gold-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
.tl-card p { font-size: 14.5px; color: var(--slate-300); }
.tl-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
@media (min-width: 720px) { .tl-item:nth-child(odd) .tl-tags { justify-content: flex-end; } }
.tl-tag {
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: var(--slate-300);
  white-space: nowrap;
}

.prog-note { text-align: center; margin-top: 48px; font-size: 13px; color: var(--slate-600); font-style: italic; }

/* ==========================================================================
   TPI section
   ========================================================================== */
.tpi { background: var(--navy-900); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.tpi-features-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 980px; margin: 0 auto 56px;
}
@media (max-width: 780px) { .tpi-features-row { grid-template-columns: 1fr; gap: 22px; max-width: 480px; } }
.tpi-feature { display: flex; gap: 14px; align-items: flex-start; }
.tpi-feature .ic {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(242, 194, 112, 0.1);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
}
.tpi-feature .ic svg { width: 17px; height: 17px; }
.tpi-feature h4 { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 3px; }
.tpi-feature p { font-size: 13.5px; color: var(--slate-500); }

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

.tpi-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  background: linear-gradient(160deg, rgba(20, 35, 56, 0.4), rgba(11, 24, 41, 0.15));
}
.tpi-card-num { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 10px; }
.tpi-card h3 { font-size: 19.5px; line-height: 1.32; margin-bottom: 16px; }
.tpi-card-instructors { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 22px; }
.tpi-card-instructor { font-size: 13.5px; font-weight: 600; color: var(--gold-300); }
.tpi-card-instructor .oab { font-weight: 400; color: var(--slate-500); }
.tpi-card-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--slate-500); margin: 18px 0 7px;
}
.tpi-card-label:first-of-type { margin-top: 0; }
.tpi-card-text { font-size: 14px; color: var(--slate-300); line-height: 1.68; }

/* ==========================================================================
   Palestrantes
   ========================================================================== */
.palestrantes { background: var(--navy-950); }
.pal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 780px) { .pal-grid { grid-template-columns: 1fr; } }

.pal-card {
  display: flex;
  gap: 22px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(160deg, rgba(20, 35, 56, 0.4), rgba(11, 24, 41, 0.15));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.pal-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }

.pal-photo {
  width: 108px;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.pal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }

.pal-body { min-width: 0; }
.pal-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 4px 11px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  margin-bottom: 10px;
}
.pal-body h3 { font-size: 21px; margin-bottom: 8px; }
.pal-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--slate-300);
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--gold-500);
}
.pal-title.pending { color: var(--slate-600); }

.pal-bio { font-size: 13.5px; color: var(--slate-500); line-height: 1.7; }
.pal-bio.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pal-more {
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pal-more svg { width: 11px; height: 11px; transition: transform 0.3s var(--ease); }
.pal-more.open svg { transform: rotate(180deg); }

@media (max-width: 480px) {
  .pal-card { flex-direction: column; }
  .pal-photo { width: 100%; aspect-ratio: 3 / 4; }
}

/* ==========================================================================
   Certificação
   ========================================================================== */
.certificacao { background: var(--navy-900); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 720px) { .cert-grid { grid-template-columns: 1fr; } }

.cert-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: rgba(11, 24, 41, 0.5);
  position: relative;
  overflow: hidden;
}
.cert-card::before {
  content: "";
  position: absolute; top: -40%; right: -20%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(242,194,112,0.12), transparent 70%);
}
.cert-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-400); font-weight: 600; margin-bottom: 14px; }
.cert-card h3 { font-size: 24px; margin-bottom: 16px; }
.cert-list { display: flex; flex-direction: column; gap: 12px; }
.cert-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--slate-300); align-items: flex-start; }
.cert-list svg { width: 17px; height: 17px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Inscrição CTA
   ========================================================================== */
.inscricao { padding: 120px 0; background: var(--navy-950); }
.insc-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 76px) clamp(24px, 6vw, 60px);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(242,194,112,0.14), transparent 65%),
    linear-gradient(160deg, var(--navy-850), var(--navy-950));
  box-shadow: var(--shadow-gold);
}
.insc-emblem { width: 56px; margin: 0 auto 24px; opacity: 0.9; }
.insc-panel h2 { font-size: clamp(28px, 4.2vw, 46px); max-width: 680px; margin: 0 auto 18px; line-height: 1.2; }
.insc-panel > p { color: var(--slate-300); font-size: 16px; max-width: 520px; margin: 0 auto 34px; }
.insc-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 38px; }
.insc-fine { margin-top: 22px; font-size: 12.5px; color: var(--slate-600); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 56px 0 34px; border-top: 1px solid var(--border-soft); }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 34px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { height: 30px; width: auto; }
.footer-brand .divider { width: 1px; height: 26px; background: var(--border-soft); }
.footer-brand span { font-size: 13px; color: var(--slate-500); max-width: 220px; line-height: 1.4; }

.back-to-top {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.back-to-top:hover { border-color: var(--gold-400); transform: translateY(-3px); }
.back-to-top svg { width: 16px; height: 16px; }

.footer-bottom { font-size: 12.5px; color: var(--slate-600); text-align: center; padding-top: 24px; border-top: 1px solid rgba(243, 237, 224, 0.05); }

/* Utility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
