/* =====================================================
   ENCONTRO NACIONAL PRH-ANP — Stylesheet
   Paleta extraída do logotipo (4 peças do quebra-cabeça)
   ===================================================== */

:root {
  /* Brand */
  --c-blue:    #0B3D91;
  --c-blue-2:  #0A2A6B;
  --c-green:   #2E9B4E;
  --c-yellow:  #F5B400;
  --c-red:     #E63946;

  /* Surfaces */
  --bg:         #FFFFFF;
  --bg-soft:    #F6F8FC;
  --bg-alt:     #F1F4FA;
  --ink:        #0E1726;
  --ink-2:      #2A3346;
  --muted:      #5A6478;
  --line:       #E2E7F0;

  /* Type */
  --ff-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Effects */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-1: 0 1px 2px rgba(11, 23, 42, .04), 0 4px 14px rgba(11, 23, 42, .06);
  --shadow-2: 0 8px 30px rgba(11, 23, 42, .08), 0 2px 6px rgba(11, 23, 42, .04);

  --container-max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

a { color: var(--c-blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-blue-2); }

.container { max-width: var(--container-max); }

/* ============== NAV ============== */

.site-nav {
  background: rgba(255,255,255,.75);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  padding: .55rem 0;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-nav.is-scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(11, 23, 42, .04);
}
.site-nav .navbar-brand img { display: block; }

.site-nav .nav-link {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .9rem !important;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.site-nav .nav-link:hover, .site-nav .nav-link.active {
  color: var(--c-blue);
  background: rgba(11, 61, 145, .06);
}

/* ============== BUTTONS ============== */

.btn-cta {
  background: var(--c-blue);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: .7rem 1.4rem;
  border: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 6px 16px rgba(11, 61, 145, .25);
}
.btn-cta:hover {
  background: var(--c-blue-2); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 61, 145, .32);
}
.btn-cta.btn-lg { padding: .9rem 1.7rem; font-size: 1.02rem; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 600;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-ghost.btn-lg { padding: .9rem 1.7rem; font-size: 1.02rem; }

/* ============== HERO ============== */

.hero {
  position: relative;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(245, 180, 0, .18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(46, 155, 78, .25), transparent 60%),
    linear-gradient(135deg, #07266a 0%, #0B3D91 50%, #143b94 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.hero-bg .puzzle {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 28px;
  filter: blur(2px);
  opacity: .35;
}
.hero-bg .p1 { background: var(--c-yellow);  top: -60px; right: 18%; transform: rotate(12deg); }
.hero-bg .p2 { background: var(--c-green);   bottom: -80px; right: -40px; transform: rotate(-8deg); opacity: .45; }
.hero-bg .p3 { background: var(--c-red);     top: 20%; left: -100px; transform: rotate(20deg); opacity: .25; width: 280px; height: 280px; }
.hero-bg .p4 { background: #1F5BD9;          bottom: 8%; left: 30%; transform: rotate(-14deg); opacity: .25; }

.hero-inner { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: .45rem .85rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-yellow);
  box-shadow: 0 0 0 4px rgba(245,180,0,.25);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,180,0,.25); }
  50%      { box-shadow: 0 0 0 9px rgba(245,180,0,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.1rem;
}
.hero-title .hl {
  background: linear-gradient(120deg, var(--c-yellow) 0%, #ffd76a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.86);
  max-width: 56ch;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1rem 1.6rem;
  margin: 0 0 2rem;
  color: rgba(255,255,255,.92);
  font-size: .98rem;
}
.hero-meta li { display: inline-flex; align-items: center; gap: .55rem; }
.hero-meta i { color: var(--c-yellow); font-size: 1.1rem; }

.hero-ctas { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Countdown */
.countdown-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-xl);
  padding: 1.6rem 1.4rem 1.2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}
.countdown-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,180,0,.12), rgba(46,155,78,.10));
  pointer-events: none;
}
.cc-head { position: relative; display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; flex-wrap: wrap; gap: .4rem; }
.cc-label { font-weight: 600; color: #fff; font-size: .98rem; }
.cc-date {
  font-family: var(--ff-display); font-weight: 700;
  color: var(--c-yellow); font-size: .85rem; letter-spacing: .08em;
}
.cc-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: .25rem;
}
.cc-cell {
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: .85rem .4rem .65rem;
  display: flex; flex-direction: column; gap: .15rem;
}
.cc-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cc-unit {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.cc-sep {
  font-size: 1.6rem;
  color: rgba(255,255,255,.3);
  font-weight: 700;
  padding-bottom: .8rem;
}
.cc-foot { position: relative; display: flex; justify-content: center; margin-top: 1rem; }
.cc-cal {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .88rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: .45rem;
  transition: background .2s, transform .15s;
}
.cc-cal:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }

.hero-scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  color: #fff; font-size: 1.1rem;
  z-index: 3;
  animation: bob 2s ease-in-out infinite;
}
.hero-scroll:hover { background: rgba(255,255,255,.2); color: #fff; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 5px); } }

/* ============== STRIP ============== */

.strip {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 1rem 0;
  font-size: .88rem;
}
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem;
  justify-content: center;
  text-align: center;
}
.strip-label {
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; color: rgba(255,255,255,.55);
  font-weight: 600;
}
.strip-item { font-weight: 600; color: #fff; }
.strip-bullet { color: rgba(255,255,255,.3); }

/* ============== SECTIONS ============== */

.section { padding: 6rem 0; }
.section-alt { background: var(--bg-soft); }

.section-head {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: .9rem;
  position: relative;
}
.kicker.light { color: var(--c-yellow); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  margin: 0 0 1rem;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
  max-width: 64ch;
  margin-left: auto; margin-right: auto;
}

/* ============== STATS ============== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 64px; height: 4px;
  background: var(--accent, var(--c-blue));
  border-radius: 0 4px 4px 0;
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.stat-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
  margin-bottom: .35rem;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-weight: 600; color: var(--ink); font-size: 1rem; }
.stat-meta { color: var(--muted); font-size: .9rem; margin-top: .25rem; }

/* ============== AXIS CARDS ============== */

.axis-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  height: 100%;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.axis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.axis-bar {
  height: 6px; width: 56px; border-radius: 999px;
  background: var(--c-blue);
  margin-bottom: 1.4rem;
}
.axis-card[data-axis="empreendedor"] .axis-bar { background: var(--c-yellow); }
.axis-card[data-axis="profissional"] .axis-bar { background: var(--c-green); }
.axis-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--bg-alt);
  position: absolute;
  top: 1.3rem; right: 1.5rem;
  line-height: 1;
}
.axis-title { font-size: 1.4rem; margin: 0 0 .6rem; }
.axis-desc { color: var(--muted); margin: 0 0 1.1rem; }
.axis-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.axis-list li {
  font-size: .92rem; color: var(--ink-2);
  padding-left: 1.3rem; position: relative;
}
.axis-list li::before {
  content: ""; position: absolute;
  left: 0; top: .55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
}
.axis-card[data-axis="empreendedor"] .axis-list li::before { background: var(--c-yellow); }
.axis-card[data-axis="profissional"] .axis-list li::before { background: var(--c-green); }

/* ============== EVENT GRID ============== */

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.event-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem;
  display: flex; flex-direction: column; gap: .3rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.event-cell i { font-size: 1.5rem; color: var(--c-blue); margin-bottom: .4rem; }
.event-cell:nth-child(1) i { color: var(--c-blue); }
.event-cell:nth-child(2) i { color: var(--c-yellow); }
.event-cell:nth-child(3) i { color: var(--c-green); }
.event-cell:nth-child(4) i { color: var(--c-red); }
.ec-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink);
}
.ec-label { color: var(--muted); font-size: .92rem; }

/* ============== SPEAKERS ============== */

.speaker {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.4rem;
  border: 1px solid var(--line);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.speaker:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.speaker-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #0B3D91 0%, #143b94 50%, #2E9B4E 100%);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.speaker:nth-child(2n) .speaker-photo { background: linear-gradient(135deg, #0B3D91 0%, #F5B400 100%); }
.speaker:nth-child(3n) .speaker-photo { background: linear-gradient(135deg, #2E9B4E 0%, #0B3D91 100%); }
.speaker:nth-child(4n) .speaker-photo { background: linear-gradient(135deg, #E63946 0%, #0B3D91 100%); }
.speaker-photo::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18) 0%, transparent 40%);
}
.ph-init {
  font-family: var(--ff-display);
  font-weight: 800;
  color: rgba(255,255,255,.95);
  font-size: 2.6rem;
  letter-spacing: -.04em;
  z-index: 1;
}
.speaker-name {
  font-size: 1.05rem;
  margin: 0 0 .25rem;
  line-height: 1.25;
}
.speaker-org {
  color: var(--c-blue);
  font-weight: 600;
  font-size: .85rem;
  margin: 0 0 .55rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.speaker-bio { color: var(--muted); font-size: .92rem; margin: 0; }

.more-soon {
  text-align: center;
  margin: 2.5rem 0 0;
  color: var(--muted);
}
.more-soon a { font-weight: 600; }

/* ============== PROGRAMAÇÃO ============== */

.prog-tabs {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.prog-tab {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .85rem 1.2rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: .2rem;
  cursor: pointer;
  text-align: left;
  min-width: 160px;
  transition: all .2s ease;
}
.prog-tab .pt-day { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; }
.prog-tab .pt-date {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.prog-tab:hover { border-color: var(--c-blue); }
.prog-tab.active {
  background: var(--c-blue); border-color: var(--c-blue); color: #fff;
  box-shadow: 0 8px 22px rgba(11, 61, 145, .25);
}
.prog-tab.active .pt-date { color: rgba(255,255,255,.75); }

.prog-panels { position: relative; }
.prog-panel { display: none; animation: fadeIn .35s ease; }
.prog-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.prog-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.4rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: .7rem;
  align-items: center;
  transition: transform .2s ease, border-color .2s ease;
}
.prog-row:hover { border-color: var(--c-blue); transform: translateX(2px); }
.pr-time {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-blue);
  font-variant-numeric: tabular-nums;
  border-right: 2px solid var(--line);
  padding-right: 1rem;
}
.pr-body h4 { font-size: 1.02rem; margin: 0 0 .35rem; line-height: 1.3; }
.pr-tag {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-blue);
  background: rgba(11, 61, 145, .08);
  padding: .25rem .65rem;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .prog-row { grid-template-columns: 1fr; gap: .5rem; }
  .pr-time { border-right: none; padding-right: 0; padding-bottom: .3rem; border-bottom: 2px solid var(--line); }
}

/* ============== TOPICS ============== */

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .topic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .topic-grid { grid-template-columns: 1fr; } }

.topic {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.topic::after {
  content: "";
  position: absolute; right: -30px; top: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--c-blue);
  opacity: 0; transition: opacity .25s ease;
}
.topic:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: transparent; }
.topic:nth-child(1) i { color: var(--c-blue); }
.topic:nth-child(2) i { color: var(--c-green); }
.topic:nth-child(3) i { color: var(--c-yellow); }
.topic:nth-child(4) i { color: var(--c-red); }
.topic:nth-child(5) i { color: var(--c-blue); }
.topic:nth-child(6) i { color: var(--c-green); }

.topic i { font-size: 1.8rem; margin-bottom: .9rem; display: block; }
.topic h3 { font-size: 1.15rem; margin: 0 0 .35rem; }
.topic p { color: var(--muted); margin: 0; font-size: .94rem; }

/* ============== CTA SECTION ============== */

.section-cta { padding: 5rem 0; }

.cta-card {
  background: linear-gradient(135deg, #07266a 0%, #0B3D91 50%, #143b94 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(7, 38, 106, .25);
}
.cta-card::before {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-yellow) 0%, transparent 60%);
  opacity: .35;
}
.cta-card::after {
  content: "";
  position: absolute; left: -100px; bottom: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-green) 0%, transparent 60%);
  opacity: .25;
}
.cta-title {
  color: #fff;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  margin: 0 0 .8rem;
  position: relative;
}
.cta-sub { color: rgba(255,255,255,.85); margin: 0 0 1.4rem; position: relative; }
.cta-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
  position: relative;
}
.cta-list li {
  display: flex; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.95);
}
.cta-list i { color: var(--c-yellow); font-size: 1.15rem; }

.cta-form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
  position: relative;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.cf-title {
  font-size: 1.25rem;
  margin: 0 0 1.1rem;
}
.cta-form .form-label { font-weight: 600; font-size: .88rem; color: var(--ink-2); }
.cta-form .form-control,
.cta-form .form-select {
  border-radius: var(--r-md);
  border-color: var(--line);
  padding: .65rem .9rem;
  font-size: .95rem;
}
.cta-form .form-control:focus,
.cta-form .form-select:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 .2rem rgba(11, 61, 145, .15);
}
.cf-note { font-size: .8rem; color: var(--muted); margin: .8rem 0 0; text-align: center; }

/* ============== SOCIAL ============== */

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); color: var(--ink); border-color: var(--c-blue); }
.social-card > i {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border-radius: 12px;
  color: var(--c-blue);
  flex-shrink: 0;
}
.sc-body { display: flex; flex-direction: column; gap: .1rem; flex: 1; }
.sc-handle { font-weight: 700; font-size: 1.02rem; }
.sc-name { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.sc-cta {
  font-size: .85rem; font-weight: 600;
  color: var(--c-blue);
  display: inline-flex; align-items: center; gap: .3rem;
}

/* ============== FOOTER ============== */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 4rem 0 2rem;
}
.site-footer img { background: #fff; padding: 8px 12px; border-radius: 8px; }
.ft-text { color: rgba(255,255,255,.65); margin: 0; font-size: .94rem; max-width: 36ch; }
.ft-title {
  color: #fff; font-size: .88rem;
  text-transform: uppercase; letter-spacing: .14em;
  margin: 0 0 1rem;
  font-family: var(--ff-display);
}
.ft-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.ft-list a { color: rgba(255,255,255,.75); transition: color .2s; font-size: .92rem; }
.ft-list a:hover { color: var(--c-yellow); }
.ft-list li { color: rgba(255,255,255,.65); font-size: .92rem; }

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  justify-content: space-between; align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.ft-bottom a { color: rgba(255,255,255,.85); }
.ft-bottom a:hover { color: var(--c-yellow); }
.ft-bullet { color: rgba(255,255,255,.3); }

/* ============== RESPONSIVE TWEAKS ============== */

@media (max-width: 991px) {
  .site-nav .nav-link { padding: .75rem .5rem !important; }
  .site-nav .navbar-collapse {
    background: rgba(255,255,255,.96);
    border-radius: var(--r-md);
    margin-top: .6rem;
    padding: .8rem;
    box-shadow: var(--shadow-1);
  }
  .hero { padding: 7rem 0 3.5rem; }
  .countdown-card { margin-top: 1.5rem; }
  .section { padding: 4.5rem 0; }
  .section-head { margin-bottom: 2.5rem; }
  .cta-card { padding: 2.2rem 1.6rem; }
}

@media (max-width: 600px) {
  .cc-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .cc-sep { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
