/* ============================================================
   Medigrow — Property Investment Pathways
   Paleta e fontes extraídas de medigrow.com.au
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Cores da marca (medigrow.com.au) */
  --navy:        #040C26;
  --navy-800:    #081234;
  --navy-700:    #0d1a45;
  --cyan:        #00B8F1;
  --blue:        #0458E9;
  --blue-deep:   #0046A0;
  --orange:      #F68749;
  --yellow:      #FFCF20;
  --red:         #F51B2A;
  --red-dark:    #C60F1D;

  /* Neutros */
  --white:       #ffffff;
  --light:       #F3F7FD;
  --light-2:     #E2ECF7;
  --grey:        #7D7D7D;

  /* Texto */
  --ink:         #040C26;
  --ink-soft:    rgba(4, 12, 38, 0.72);
  --paper:       rgba(255, 255, 255, 0.92);
  --paper-soft:  rgba(255, 255, 255, 0.62);

  /* Tipografia */
  --font-display: "Nunito Sans", sans-serif;
  --font-body:    "Noto Sans", sans-serif;
  --font-mono:    "JetBrains Mono", monospace;

  /* Layout */
  --container:   1180px;
  --radius:      18px;
  --radius-sm:   12px;
  --topbar-h:    72px;

  /* Efeitos */
  --glow-cyan:   0 0 24px rgba(0, 184, 241, 0.35);
  --glow-red:    0 0 24px rgba(245, 27, 42, 0.4);
  --shadow-card: 0 18px 50px rgba(4, 12, 38, 0.12);
  --grad-cta:    linear-gradient(100deg, #00B8F1 0%, #0458E9 100%);
  --grad-red:    linear-gradient(100deg, #F51B2A 0%, #C60F1D 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select { font: inherit; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

::selection { background: var(--cyan); color: var(--navy); }

/* Grids: impede que imagens intrínsecas (Pexels 900px+) inflem o
   min-content da coluna e estourem o layout no mobile */
.hero__grid > *,
.burn > *,
.method__grid > *,
.nicholas__grid > *,
.about__grid > *,
.register__grid > * { min-width: 0; }

/* ---------- Tipografia base ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--blue); }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--light { background: var(--light); }

.section__head { max-width: 780px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section__title em {
  font-style: normal;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__title--ondark { color: var(--white); }

.section__lead {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--ink-soft);
  max-width: 62ch;
}
.section__lead--ondark { color: var(--paper-soft); }

.br-desk { display: none; }
@media (min-width: 900px) { .br-desk { display: block; } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.9rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform;
}
.btn i { transition: transform 0.25s ease; }
.btn:hover i { transform: translateX(4px); }

.btn--primary {
  background: var(--grad-red);
  color: var(--white);
  box-shadow: var(--glow-red);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(245, 27, 42, 0.6);
}

.btn--dark {
  background: var(--red);
  color: var(--white);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245, 27, 42, 0.35); }

.btn--lg { padding: 1.15rem 2.4rem; font-size: 1.06rem; }
.btn--sm { padding: 0.62rem 1.3rem; font-size: 0.88rem; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.topbar.is-scrolled {
  background: rgba(4, 12, 38, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 184, 241, 0.18);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logotipo preto → branco via filtro (logo é monocromático) */
.topbar__logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

.topbar__countdown {
  display: none;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
}
@media (min-width: 820px) { .topbar__countdown { display: flex; } }

.countdown__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-soft);
}
.countdown__timer { display: flex; gap: 0.55rem; }
.countdown__unit {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--white);
}
.countdown__unit b {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--cyan);
  min-width: 2ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.countdown__unit i { font-style: normal; font-size: 0.72rem; color: var(--paper-soft); }

/* Mobile: logo + CTA precisam caber lado a lado em 360–430px */
@media (max-width: 640px) {
  .topbar__inner { gap: 0.8rem; }
  .topbar__logo { height: 20px; }
  .topbar__cta { padding: 0.5rem 0.95rem; font-size: 0.78rem; white-space: nowrap; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--topbar-h) + 3rem) 0 6.5rem;
  background:
    radial-gradient(1000px 600px at 85% 10%, rgba(4, 88, 233, 0.22), transparent 60%),
    radial-gradient(800px 500px at 5% 90%, rgba(0, 184, 241, 0.12), transparent 55%),
    var(--navy);
  overflow: hidden;
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 560px; height: 560px;
  right: -140px; top: -140px;
  background: radial-gradient(circle, rgba(0, 184, 241, 0.16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; gap: 3.5rem; }
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.6rem;
}

/* keyframe usado pelos badges (vitals/nicholas) */
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(0, 184, 241, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(0, 184, 241, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 184, 241, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(95deg, var(--cyan), #7fd8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--paper-soft);
  max-width: 56ch;
  margin-bottom: 2rem;
}

/* Formulário compacto no hero — 3 campos + botão em grade 2x2 */
.hero-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 580px;
  margin-bottom: 1.1rem;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hero-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.hero-form input:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(0, 184, 241, 0.18);
}

.hero-form .form-submit {
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.hero-form .form-feedback {
  grid-column: 1 / -1;
  text-align: left;
  min-height: 0;
}
.hero-form .form-feedback.is-error { color: #ff7b74; }

@media (max-width: 560px) {
  .hero-form { grid-template-columns: 1fr; }
}

.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--paper-soft);
  margin-bottom: 1rem;
}
.hero__note i { color: var(--cyan); }

/* Event details — cartão estilo monitor */
.event-card {
  border: 1px solid rgba(0, 184, 241, 0.28);
  background: rgba(8, 18, 52, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--grad-cta);
}

.event-card__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.6rem;
}
@media (min-width: 640px) {
  .event-card__row { grid-template-columns: repeat(4, auto); justify-content: space-between; }
}

.event-card__key {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}
.event-card__val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.35;
}

/* Hero media */
.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 184, 241, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(1.5deg);
}
.hero__frame img {
  width: 100%;
  height: clamp(380px, 54vw, 640px);
  object-fit: cover;
  object-position: center 20%;
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(4, 12, 38, 0) 40%, rgba(4, 12, 38, 0.75) 100%);
}

.hero__frame-vitals {
  position: absolute;
  z-index: 2;
  left: 1.1rem; bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white);
  background: rgba(4, 12, 38, 0.72);
  border: 1px solid rgba(0, 184, 241, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(8px);
}
.vitals__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 1.6s ease-out infinite;
}
.vitals__label { color: var(--paper-soft); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.66rem; }
.vitals__value { color: var(--cyan); font-weight: 600; }

/* ECG line na base do hero */
.hero__ecg {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}
.hero__ecg svg { width: 100%; height: 100%; }
#ecg-path {
  stroke: var(--cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(0, 184, 241, 0.8));
  stroke-dasharray: 3200;
  stroke-dashoffset: 3200;
  animation: ecg-draw 6s linear infinite;
}
@keyframes ecg-draw {
  0%   { stroke-dashoffset: 3200; opacity: 1; }
  70%  { stroke-dashoffset: 0;    opacity: 1; }
  85%  { opacity: 0.25; }
  100% { stroke-dashoffset: 0;    opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  #ecg-path { animation: none; stroke-dashoffset: 0; }
  .pulse-dot, .vitals__dot { animation: none; }
}

/* ============================================================
   SECTION 2 — PROBLEM / BURN FACTOR
   ============================================================ */
.problem__head { max-width: none; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.problem__head .section__lead { max-width: none; }

.burn {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .burn { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
}

.burn__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.burn__media img {
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  object-fit: cover;
  object-position: center 30%;
}
.burn__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 12, 38, 0.55));
}

.burn__tag {
  position: absolute;
  z-index: 2;
  left: 1.1rem; bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(246, 135, 73, 0.92);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
}

.burn__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 1rem;
  color: var(--ink);
}
.burn__title::before {
  content: "";
  display: block;
  width: 54px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  margin-bottom: 1rem;
}
.burn__content p { color: var(--ink-soft); margin-bottom: 1rem; }
.burn__content strong { color: var(--ink); }

.burn__list { margin: 1.4rem 0 1.8rem; display: grid; gap: 0.7rem; }
.burn__list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.burn__list i.fa-circle-xmark { color: var(--orange); }
.burn__list i.fa-circle-check { color: var(--blue); }

/* ============================================================
   SECTION 3 — PILLARS
   ============================================================ */
.pillars {
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(4, 88, 233, 0.16), transparent 60%),
    var(--navy);
}

.pillars__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars__grid { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border-radius: var(--radius);
  padding: 2rem 1.7rem 1.9rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 241, 0.45);
  background: linear-gradient(160deg, rgba(0, 184, 241, 0.09), rgba(255, 255, 255, 0.02));
}

@media (min-width: 1024px) {
  .pillar--wide { grid-column: span 2; }
}

.pillar__num {
  position: absolute;
  top: 0.9rem; right: 1.2rem;
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(0, 184, 241, 0.16);
  line-height: 1;
}

.pillar__icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 184, 241, 0.12);
  border: 1px solid rgba(0, 184, 241, 0.3);
  color: var(--cyan);
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.pillar__text { font-size: 0.94rem; color: var(--paper-soft); }

/* ============================================================
   SECTION 4 — METHODOLOGY
   ============================================================ */
.method__grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 960px) {
  .method__grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.method__check .section__head { margin-bottom: 2.2rem; }

.check-panel {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-2);
  box-shadow: var(--shadow-card);
  padding: 2.2rem 2rem;
}

.check-panel__head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}
.check-panel__badge {
  flex: 0 0 auto;
  width: 74px; height: 74px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--grad-cta);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  box-shadow: var(--glow-cyan);
}
.check-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.2;
}
.check-panel__sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 0.25rem;
}
.check-panel__text { color: var(--ink-soft); margin-bottom: 1.4rem; }

.check-panel__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1.2rem;
}
.check-panel__list li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink);
}
.check-panel__list i { color: var(--cyan); font-size: 0.8rem; }
.check-panel__more {
  font-family: var(--font-mono);
  font-size: 0.8rem !important;
  color: var(--blue) !important;
  grid-column: 1 / -1;
  margin-top: 0.4rem;
}

.method__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
}
.method__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.method__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(4, 12, 38, 0.05) 30%, rgba(4, 12, 38, 0.88) 78%);
}

.method__where {
  position: relative;
  z-index: 2;
  padding: 1.8rem;
  color: var(--white);
}
.method__where h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.method__where h4 i { color: var(--cyan); }
.method__where p { font-size: 0.95rem; color: var(--paper); max-width: 52ch; }

.method__states {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.method__states li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cyan);
  border: 1px solid rgba(0, 184, 241, 0.5);
  background: rgba(0, 184, 241, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

/* ============================================================
   SECTION 5 — NICHOLAS (AI)
   ============================================================ */
.nicholas {
  background:
    radial-gradient(800px 460px at 90% 15%, rgba(0, 184, 241, 0.13), transparent 60%),
    var(--navy);
}

.nicholas__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .nicholas__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}
.nicholas__content .btn { margin-top: 1.6rem; }
.nicholas__content .section__lead { margin-top: 1rem; }

/* Retrato do Nicholas */
.nicholas__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 184, 241, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  max-width: 480px;
  justify-self: center;
}
.nicholas__media img {
  width: 100%;
  height: auto;
  display: block;
}
.nicholas__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(4, 12, 38, 0) 55%, rgba(4, 12, 38, 0.72) 100%);
  pointer-events: none;
}

.nicholas__badge {
  position: absolute;
  z-index: 2;
  left: 1.1rem;
  bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white);
  background: rgba(4, 12, 38, 0.72);
  border: 1px solid rgba(0, 184, 241, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nicholas__badge-label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.nicholas__badge-role { color: var(--cyan); }

/* ============================================================
   SECTION 6 — TESTIMONIALS
   ============================================================ */
.testimonials__swiper { padding-bottom: 5rem; }

/* Setas de navegação do carrossel — centralizadas abaixo dos cards */
.testimonials__swiper .swiper-button-prev,
.testimonials__swiper .swiper-button-next {
  top: auto;
  bottom: 6px;
  margin-top: 0;
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s ease;
}
.testimonials__swiper .swiper-button-prev { left: calc(50% - 60px); right: auto; }
.testimonials__swiper .swiper-button-next { right: calc(50% - 60px); left: auto; }
.testimonials__swiper .swiper-button-prev::after,
.testimonials__swiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}
.testimonials__swiper .swiper-button-prev:hover,
.testimonials__swiper .swiper-button-next:hover {
  background: var(--red);
}
.testimonials__swiper .swiper-button-prev:focus,
.testimonials__swiper .swiper-button-next:focus { outline: none; }

/* Card de vídeo — thumbnail do YouTube + play + nome/frase */
.vcard {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--navy);
  text-align: left;
}

.vcard__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.vcard:hover .vcard__thumb { transform: scale(1.06); }

.vcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(4, 12, 38, 0) 40%, rgba(4, 12, 38, 0.88) 92%);
}

.vcard__play {
  position: absolute;
  z-index: 2;
  left: 1.1rem;
  bottom: 1.1rem;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-red);
  color: var(--white);
  font-size: 1rem;
  box-shadow: var(--glow-red);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vcard__play i { margin-left: 3px; }
.vcard:hover .vcard__play {
  transform: scale(1.12);
  box-shadow: 0 0 34px rgba(245, 27, 42, 0.6);
}

.vcard__info {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1.15rem;
  left: 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0.15rem;
}
.vcard__info b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
  line-height: 1.25;
}
.vcard__info em {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
}

/* Modal de vídeo */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.video-modal.is-open { display: flex; }

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 25, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 184, 241, 0.35);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), var(--glow-cyan);
  background: #000;
}
.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal__close {
  position: absolute;
  top: -3.2rem;
  right: 0;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.video-modal__close:hover { background: var(--red); transform: rotate(90deg); }

body.modal-open { overflow: hidden; }

/* ============================================================
   SECTION 7 — ABOUT
   ============================================================ */
.about {
  background:
    radial-gradient(700px 480px at 8% 20%, rgba(4, 88, 233, 0.15), transparent 60%),
    var(--navy);
}

.about__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .about__grid { grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; }
}

.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 184, 241, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.about__media img {
  width: 100%;
  height: clamp(360px, 44vw, 520px);
  object-fit: cover;
}

.about__badge {
  position: absolute;
  right: 1.1rem; bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(4, 12, 38, 0.82);
  border: 1px solid rgba(0, 184, 241, 0.4);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem;
  backdrop-filter: blur(8px);
  color: var(--white);
}
.about__badge b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__badge span {
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--paper-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__points { margin-top: 1.6rem; display: grid; gap: 0.75rem; }
.about__points li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--paper);
  font-size: 0.98rem;
}
.about__points i { color: var(--cyan); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(6rem, 11vw, 9.5rem) 0 clamp(7rem, 13vw, 11rem);
  /* Casa australiana (Pexels) sob overlay escuro neutro para leitura do texto */
  background:
    linear-gradient(rgba(5, 8, 15, 0.75), rgba(5, 8, 15, 0.75)),
    url("https://images.pexels.com/photos/1396122/pexels-photo-1396122.jpeg?auto=compress&cs=tinysrgb&w=1600") center 65% / cover no-repeat;
  overflow: hidden;
}

.cta-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.015em;
}
.cta-banner__title em {
  font-style: normal;
  background: linear-gradient(95deg, var(--cyan), #8fdcff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   SECTION 8 — REGISTER
   ============================================================ */
.register__grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 960px) {
  .register__grid { grid-template-columns: 0.95fr 1.05fr; gap: 4.5rem; }
}

.register__meta {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.8rem;
}
.register__meta p {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.register__meta i { color: var(--blue); width: 1.1rem; text-align: center; }
.register__meta strong { color: var(--ink); }

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.2rem 2rem;
  display: grid;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}
.form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-cta);
}

.form__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius-sm);
  background: var(--light);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  appearance: none;
}
.form input::placeholder { color: rgba(4, 12, 38, 0.35); }
.form input:focus,
.form select:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 184, 241, 0.15);
}

.form__select-wrap { position: relative; }
.form__select-wrap i {
  position: absolute;
  right: 1.1rem; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--blue);
  font-size: 0.8rem;
}
.form select:invalid { color: rgba(4, 12, 38, 0.35); }
.form select option { color: var(--ink); }

.form-submit { justify-content: center; width: 100%; margin-top: 0.4rem; }

.form-feedback {
  min-height: 1.2rem;
  font-size: 0.9rem;
  text-align: center;
}
.form-feedback.is-error   { color: #d0342c; }
.form-feedback.is-success { color: #17803d; }

.form__note {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.5;
}
.form__note i { color: var(--blue); }

/* ============================================================
   EVENT BAR — barra fixa que segue o scroll
   ============================================================ */
.event-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  background: var(--navy);
  border-top: 1px solid rgba(0, 184, 241, 0.3);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.4);
  padding: 0.8rem 0;
}

.event-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2.4rem;
}

.event-bar .event-card__key { margin-bottom: 0.15rem; }
.event-bar .event-card__val { font-size: 0.9rem; }

.event-bar__cta { margin-left: auto; white-space: nowrap; }

/* Telas menores: esconde Format/Host e compacta */
@media (max-width: 860px) {
  .event-bar__optional { display: none; }
}
@media (max-width: 560px) {
  .event-bar { padding: 0.65rem 0; }
  .event-bar__inner { gap: 0.8rem 1.2rem; }
  .event-bar .event-card__val { font-size: 0.8rem; }
  .event-bar__cta { padding: 0.5rem 0.95rem; font-size: 0.76rem; }
}

/* Compensa a altura da barra fixa no fim da página (só onde ela existe) */
body:has(.event-bar) { padding-bottom: 76px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--light-2);
  padding: 3.2rem 0 2.6rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

/* Logotipo preto original sobre fundo claro */
.footer__logo {
  height: 34px;
  width: auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.8rem;
}
.footer__nav a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}
.footer__nav a:hover { color: var(--blue); }

.footer__copy {
  font-size: 0.82rem;
  color: var(--grey);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
  background:
    radial-gradient(800px 500px at 80% 10%, rgba(4, 88, 233, 0.2), transparent 60%),
    radial-gradient(700px 450px at 10% 90%, rgba(0, 184, 241, 0.1), transparent 55%),
    var(--navy);
}

.thanks__inner {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.thanks__logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}

.thanks__icon {
  width: 84px; height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-cta);
  color: var(--white);
  font-size: 2rem;
  box-shadow: var(--glow-cyan);
}

.thanks__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.thanks__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
}
.thanks__title em {
  font-style: normal;
  background: linear-gradient(95deg, var(--cyan), #8fdcff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks__text { color: var(--paper-soft); max-width: 48ch; }
.thanks__text strong { color: var(--white); }

.thanks__tip {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  text-align: left;
  background: rgba(0, 184, 241, 0.07);
  border: 1px solid rgba(0, 184, 241, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  font-size: 0.9rem;
  color: var(--paper);
}
.thanks__tip i { color: var(--cyan); }

/* ---------- AOS: respeitar reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1 !important; transform: none !important; }
}
