/* ── Design Tokens ── */
:root {
  /* Brand colours */
  --navy:          #1D2F5E;
  --navy-2:        #253A72;
  --navy-3:        #0c1628;
  --purple:        #6B3FA8;
  --purple-2:      #8254C2;
  --orange:        #E8602A;
  --orange-2:      #F07A40;
  --green:         #1A9E6E;

  /* Neutrals */
  --lavender:      #F2EEF9;
  --lavender-2:    #E8DFF5;
  --lavender-3:    #F8F5FC;
  --off-white:     #F7F8FC;
  --white:         #FFFFFF;
  --border:        #E8EAF2;
  --muted:         #6B7A99;

  /* Status BGs */
  --success-bg:    #E6F7F1;
  --warning-bg:    #FEF3C7;
  --danger-bg:     #FDECEA;
  --orange-bg:     #FEF0E7;

  /* Shadows */
  --shadow:        0 2px 20px rgba(29,47,94,.08);
  --shadow-md:     0 4px 24px rgba(29,47,94,.10);
  --shadow-lg:     0 16px 48px rgba(29,47,94,.13);
  --shadow-purple: 0 6px 24px rgba(107,63,168,.38);

  /* Gradients */
  --grad-brand:    linear-gradient(90deg, #6B3FA8, #E8602A);
  --grad-cta:      linear-gradient(135deg, #6B3FA8 0%, #9B4FD4 50%, #E8602A 100%);
  --grad-hero:     linear-gradient(145deg, #faf8ff 0%, #fff8f5 45%, #f4f0ff 100%);
  --grad-stats:    linear-gradient(135deg, #1D2F5E 0%, #3D1A7A 40%, #6B3FA8 70%, #E8602A 100%);
  --grad-footer:   linear-gradient(135deg, #6B3FA8, #E8602A);

  /* Radii */
  --r-btn:   9px;
  --r-sm:    10px;
  --r-card:  12px;
  --r-lg:    16px;
  --r-pill:  100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1.06; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
.body-text { font-size: 1.02rem; color: var(--muted); line-height: 1.8; }
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: rgba(255,255,255,.6); }

/* ── Arc Signature ── */
.arc-sig {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.arc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.arc-dot-purple { background: var(--purple); }
.arc-dot-orange { background: var(--orange); }
.arc-line {
  flex: 1;
  min-width: 32px;
  height: 1.5px;
  background: var(--grad-brand);
}

/* ── Logo ── */
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.18em;
}
.logo-text em {
  font-style: italic;
  font-weight: 300;
}
.logo-text strong {
  font-weight: 700;
  font-style: normal;
}
.logo-period {
  color: var(--orange);
  font-weight: 700;
}

/* ── Pill (hero badge) ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ── Buttons ── */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: var(--grad-cta);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-btn);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-purple);
  transition: filter .2s, transform .15s, box-shadow .2s;
}
.btn-main:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,63,168,.45);
}
.btn-main--lg { padding: 18px 40px; font-size: 1rem; }

.hero-demo-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.hero-demo-link:hover { color: var(--navy); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 4px;
  background: none;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color .2s;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}
.btn-ghost:hover { color: var(--purple); }
.btn-ghost:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  background: var(--grad-cta);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-btn);
  text-decoration: none;
  box-shadow: var(--shadow-purple);
  transition: filter .2s, transform .15s;
  cursor: pointer;
  outline: none;
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-white {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--grad-cta);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-purple); }

/* ── Badges ── */
.badge-green, .badge-amber {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.badge-green { background: var(--success-bg); color: var(--green); }
.badge-amber { background: var(--warning-bg); color: #92400e; }

/* ── Section Headers ── */
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header h2 { margin-top: 0; }

/* ── Announcement Bar ── */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--purple), #c04090, var(--orange));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0 1rem;
  text-align: center;
}
.announce-star {
  opacity: 0.8;
  flex-shrink: 0;
}
.announce-cta {
  flex-shrink: 0;
  margin-left: 0.75rem;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.announce-cta:hover { opacity: 0.88; }
.announce-text-mobile { display: none; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 200;
  height: 66px;
  transition: background .3s, border-color .3s, box-shadow .3s;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
}
#nav.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }

/* Owla orbital dot animation — dot rotates around the ring center */
@keyframes owla-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.owla-logo-svg .owla-dot {
  transform-box: fill-box;
  transform-origin: -14px 0px;
  animation: owla-orbit 8s linear infinite;
}
.owla-logo-svg:hover .owla-dot {
  animation: owla-orbit 0.7s linear 1 forwards;
}

/* ── HERO ── */
.hero {
  padding: 11.5rem 0 6rem;
  background: var(--grad-hero);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-copy h1 { margin-bottom: 1.25rem; }
.hero-copy .body-text { margin-bottom: 2.25rem; max-width: 440px; }
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

/* Hero Visual Wrap + Floating Cards */
.hero-visual { display: flex; justify-content: center; padding: 24px; }
.hero-visual-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 440px;
}

@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes float-down-up {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.hf-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: 0 8px 32px rgba(29,47,94,.13);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  z-index: 2;
}
.hf-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hf-card-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.hf-card-icon {
  flex-shrink: 0;
}
.hf-card-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.hf-card-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 2px;
}

.hf-card--top-left {
  top: -18px;
  left: -20px;
  animation: float-up-down 3.6s ease-in-out infinite;
}
.hf-card--bottom-right {
  bottom: -18px;
  right: -20px;
  animation: float-down-up 4.2s ease-in-out infinite;
}

/* Hero Mockup */
.hero-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}
.mockup-bar {
  padding: 12px 16px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 6px;
  align-items: center;
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup-body { padding: 1.4rem; }
.mockup-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.mockup-kpi {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 10px;
  text-align: center;
}
.kpi-val {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.kpi-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-top: 2px;
}
.mockup-list { display: flex; flex-direction: column; gap: 0.6rem; }
.mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.mockup-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.mockup-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── PAIN ── */
.pain {
  padding: 6rem 0;
  background: var(--off-white);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top-width: 3px;
  border-radius: var(--r-card);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pain-card--purple { border-top-color: var(--purple); }
.pain-card--orange { border-top-color: var(--orange); }
.pain-card--green  { border-top-color: var(--green); }
.pain-icon { margin-bottom: 1rem; display: block; }
.pain-icon svg { width: 28px; height: 28px; }
.pain-card--purple .pain-icon svg { stroke: var(--purple); }
.pain-card--orange .pain-icon svg { stroke: var(--orange); }
.pain-card--green  .pain-icon svg { stroke: var(--green); }
.pain-card h3 { font-size: 1rem; font-style: italic; font-weight: 300; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.4; }
.pain-card p  { font-size: 0.875rem; color: var(--muted); }

/* ── BENEFITS ── */
.benefits { padding: 6rem 0; background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.benefit-card {
  background: var(--lavender-3);
  border: 1px solid var(--lavender-2);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.benefit-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-purple);
}
.benefit-card h3 { margin-bottom: 0.625rem; }
.benefit-card .body-text { font-size: 0.9375rem; }

/* Benefit card interactive peek */
.benefit-card {
  overflow: hidden;
}
.benefit-peek {
  margin-top: 1.25rem;
  border-top: 1px solid var(--lavender-2);
  padding-top: 1.125rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease;
  margin-top: 0;
  padding-top: 0;
  border-top-color: transparent;
}
.benefit-card:hover .benefit-peek {
  max-height: 160px;
  opacity: 1;
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top-color: var(--lavender-2);
}

/* Peek: student list */
.bp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.bp-row + .bp-row { border-top: 1px solid var(--lavender-2); }
.bp-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.bp-info { flex: 1; display: flex; flex-direction: column; }
.bp-name { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.bp-sub  { font-size: 0.68rem; color: var(--muted); }
.bp-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}
.bp-badge--ok   { background: var(--success-bg); color: var(--green); }
.bp-badge--warn { background: var(--warning-bg); color: #92400e; }

/* Peek: family portal */
.bp-portal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.875rem;
}
.bp-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.bp-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 6px;
  text-align: center;
}
.bp-stat-val   { display: block; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1rem; color: var(--navy); letter-spacing: -0.03em; }
.bp-stat-label { display: block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-top: 2px; }

/* Peek: teacher schedule */
.bp-schedule { display: flex; flex-direction: column; gap: 5px; }
.bp-sched-row { display: grid; grid-template-columns: 28px 1fr; gap: 6px; align-items: center; }
.bp-sched-day { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.bp-sched-event { font-size: 0.72rem; font-weight: 600; color: var(--navy); padding: 5px 8px; border-radius: 6px; }

/* Peek: setup steps */
.bp-steps { display: flex; flex-direction: column; gap: 7px; }
.bp-step { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.bp-step-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
  background: var(--grad-cta);
  color: var(--white);
}
.bp-step-icon--active { background: var(--purple); }
.bp-step-icon--empty  { background: transparent; border: 2px solid var(--border); }
.bp-step--done   { color: var(--navy); }
.bp-step--active { color: var(--purple); }
.bp-step--next   { color: var(--muted); }

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 0;
  background: var(--off-white);
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 260px;
  padding: 0 0.5rem;
}
.step-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-purple);
  flex-shrink: 0;
}
.step-dot--orange { background: var(--orange); box-shadow: 0 4px 14px rgba(232,96,42,.35); }
.step-dot--green  { background: var(--green);  box-shadow: 0 4px 14px rgba(26,158,110,.35); }
.step h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.step .body-text { font-size: 0.875rem; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  align-self: flex-start;
  margin-top: 14px;
  padding: 0 4px;
}

/* ── PROFILES ── */
.profiles { padding: 6rem 0; background: var(--off-white); }
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.profile-card--featured {
  background: linear-gradient(145deg, var(--purple) 0%, #9B4FD4 60%, var(--orange) 100%);
  border-color: transparent;
}
.profile-card--featured h3 { color: var(--white); }

.profile-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.profile-tag--purple { background: var(--lavender-2); color: var(--purple); }
.profile-tag--orange { background: var(--orange-bg); color: var(--orange); }
.profile-tag--green  { background: var(--success-bg); color: var(--green); }
.profile-card h3 { margin-bottom: 1.25rem; }

/* Check list */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 400;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}
.check-list--dark li { color: rgba(255,255,255,.65); }
.check-list--dark li::before { color: var(--orange-2); }

/* ── CASO DE ESTUDO BANNER ── */
.case-study-banner {
  padding: 5rem 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.csb-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.csb-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--purple);
  margin-bottom: 1.25rem;
}
.csb-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  letter-spacing: -0.01em;
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
  quotes: none;
}
.csb-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.csb-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6fa896;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.csb-logo {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.csb-meta strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.csb-meta span {
  font-size: 0.78rem;
  color: var(--muted);
}
.csb-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  min-width: 180px;
}
.csb-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.csb-stat-val {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--purple);
  letter-spacing: -0.04em;
  line-height: 1;
}
.csb-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}
.csb-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--grad-cta);
  padding: 10px 20px;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: filter .2s, transform .2s;
  white-space: nowrap;
}
.csb-link:hover { filter: brightness(1.1); transform: translateY(-1px); }

@media (max-width: 900px) {
  .csb-inner { grid-template-columns: 1fr; gap: 2rem; }
  .csb-right { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; text-align: left; }
}

/* ── PORTUGAL ── */
.portugal {
  padding: 5rem 0;
  background: var(--grad-stats);
}
.portugal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.portugal-text { flex: 1; min-width: 260px; }
.portugal h2 { color: var(--white); margin-bottom: 0.75rem; }
.portugal-sub { color: rgba(255,255,255,.6); font-size: 1rem; }
.eyebrow--light { color: rgba(255,255,255,.6); }

.pt-badges-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  min-width: 340px;
}
.pt-soon-block {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pt-soon-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
}
.pt-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.pt-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-card);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pt-badge-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.pt-badge-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}
.pt-badge--soon { opacity: .65; }
.pt-soon {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 4px;
  vertical-align: middle;
  color: rgba(255,255,255,.7);
}

/* ── FOUNDER ── */
.founder {
  padding: 6rem 0;
  background: var(--white);
}
.founder-lead {
  max-width: 540px;
  margin: 1rem auto 3rem;
  text-align: center;
}

.founder-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  perspective: 1000px;
}

/* Card base */
.founder-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 2.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;
  will-change: transform;
}
.founder-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 64px rgba(29,47,94,.18);
}

.founder-card--joana { background: linear-gradient(145deg, #2d1060 0%, var(--purple) 55%, #8c52d4 100%); }
.founder-card--ana   { background: linear-gradient(145deg, #7a1f00 0%, var(--orange) 55%, #f09050 100%); }

/* Animated orbs inside each card */
@keyframes orb-drift {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .12; }
  40%       { transform: translate(22px,-28px) scale(1.1); opacity: .18; }
  70%       { transform: translate(-14px,18px) scale(.92); opacity: .08; }
}
.fc-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,1);
  pointer-events: none;
  animation: orb-drift ease-in-out infinite;
}
.fc-orb--1 { width: 220px; height: 220px; top: -70px; right: -55px; animation-duration: 8s; }
.fc-orb--2 { width: 120px; height: 120px; bottom: -30px; left: -30px; animation-duration: 12s; animation-delay: -3s; }
.fc-orb--3 { width: 200px; height: 200px; top: -60px; left: -50px; animation-duration: 10s; animation-delay: -1s; }
.fc-orb--4 { width: 130px; height: 130px; bottom: -25px; right: -25px; animation-duration: 7s; animation-delay: -5s; }

.fc-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fc-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.fc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.32);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.founder-card:hover .fc-avatar { transform: scale(1.08) rotate(3deg); }
.fc-avatar svg { width: 100%; height: 100%; }

.fc-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.fc-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.58);
  margin-top: 0.2rem;
}

.fc-bio {
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.fc-bio strong { color: var(--white); }

.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.75rem;
}
.fc-tags span {
  font-size: 0.67rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.18);
}

/* Animated stat at bottom of card */
.fc-stat {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}
.fc-stat-val {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.fc-stat-plus {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(255,255,255,.5);
  line-height: 1;
}
.fc-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* Quote */
.founder-quote {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--lavender-3);
  border-radius: var(--r-lg);
  border: 1px solid var(--lavender-2);
}
.fq-mark {
  width: 26px;
  height: auto;
  margin-bottom: 1rem;
  opacity: .4;
}
.founder-quote p {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  letter-spacing: -0.01em;
}
.fq-sig {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
}

@media (max-width: 900px) {
  .founder-cards { grid-template-columns: 1fr; }
  .founder-card { min-height: auto; }
}

/* ── DEMO MODAL ── */
.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(13,20,40,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.demo-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.demo-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
  max-width: 740px;
  height: min(680px, 90vh);
  box-shadow: 0 32px 80px rgba(13,20,40,.3);
  transform: translateY(16px) scale(.98);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
}
.demo-overlay.is-open .demo-modal {
  transform: translateY(0) scale(1);
}
.demo-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(29,47,94,.08);
  color: var(--navy);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.demo-close:hover { background: rgba(29,47,94,.15); }

@media (max-width: 600px) {
  .demo-overlay { padding: 0; align-items: flex-end; }
  .demo-modal { border-radius: var(--r-lg) var(--r-lg) 0 0; height: 85vh; max-width: 100%; }
}

/* ── CTA FINAL ── */
.cta-final {
  padding: 6rem 0;
  background: linear-gradient(160deg, #f4f0ff 0%, #fff5f0 100%);
  border-top: 1px solid var(--lavender-2);
}
.cta-box {
  background: var(--white);
  border: 1px solid var(--lavender-2);
  border-radius: var(--r-lg);
  padding: 5rem 4rem;
  text-align: center;
  box-shadow: 0 2px 40px rgba(107,63,168,.07);
}
.cta-box h2 { margin-bottom: 0.75rem; }
.cta-sub { color: var(--muted) !important; margin-bottom: 2rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-demo-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.cta-demo-link:hover { color: var(--navy); }

/* ── FOOTER ── */
.footer-main {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; margin-bottom: 1rem; }
.footer-tagline {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--purple); border-color: var(--purple); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: .4rem;
}
.footer-col a {
  font-size: .875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--navy); }
.footer-email {
  font-size: .875rem;
  font-weight: 600;
  color: var(--purple) !important;
  margin-bottom: .5rem;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .25rem;
}
.footer-input {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .55rem .85rem;
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.footer-input::placeholder { color: var(--muted); }
.footer-input:focus { border-color: var(--purple); }
.footer-textarea { min-height: 80px; }
.footer-submit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  background: var(--grad-cta);
  color: var(--white);
  border: none;
  border-radius: var(--r-btn);
  padding: .6rem 1.25rem;
  cursor: pointer;
  align-self: flex-start;
  transition: filter .2s;
}
.footer-submit:hover { filter: brightness(1.1); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-copy { font-size: 0.84rem; color: var(--muted); }

.footer-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.footer-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Layout */
  .container  { padding: 0 2rem; }
  .nav-inner  { padding: 0 2rem; }

  /* Nav */
  .nav-inner > div { gap: 1rem; }

  /* Hero */
  .hero          { padding: 8rem 0 5rem; }
  .hero-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual   { display: none; }
  .hero-copy     { align-items: center; text-align: center; gap: 0; }
  .hero-copy h1  { text-align: center; margin-bottom: 1.5rem; }
  .hero-copy .body-text { max-width: 100%; margin-bottom: 2.5rem; }
  .hero-actions  { justify-content: center; flex-direction: column; align-items: center; gap: 1.25rem; }
  .hero-demo-link { text-align: center; margin-top: 0.25rem; }

  /* Pill */
  .pill { margin: 0 auto 2rem; }

  /* Pain */
  .pain { padding: 5rem 0; }
  .pain-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-grid  { grid-template-columns: 1fr; }
  .benefit-peek {
    transition: none !important;
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 1.25rem !important;
    padding-top: 1.125rem !important;
    border-top-color: var(--lavender-2) !important;
    overflow: visible !important;
  }

  /* Profiles */
  .profiles-grid  { grid-template-columns: 1fr; }
  .profile-card--featured { order: -1; } /* card principal primeiro */

  /* How it works */
  .steps      { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }

  /* Portugal */
  .portugal-inner { flex-direction: column; text-align: center; gap: 2rem; }
  .pt-badges      { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .portugal-text  { display: flex; flex-direction: column; align-items: center; }

  /* Founder */
  .founder-cards { grid-template-columns: 1fr; }
  .founder-card  { min-height: auto; }
  .fc-stat       { padding-top: 1rem; }

  /* CTA */
  .cta-box { padding: 3rem 1.75rem; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline     { max-width: 100%; }
  .footer-strip-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 600px) {
  /* Typography */
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  /* Layout */
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }

  /* Announcement bar — mobile */
  .announce-bar { font-size: 0.78rem; padding: 0 1rem; height: 44px; }
  .announce-star { display: none; }
  .announce-cta { display: none; }
  .announce-text-full { display: none; }
  .announce-text-mobile { display: inline; }

  /* Nav — esconder link blog, mostrar só botão */
  .nav-blog-link { display: none; }

  /* Hero */
  .hero { padding: 8.5rem 0 3rem; }
  .hero-copy .body-text { font-size: 1rem; line-height: 1.75; }
  .hero-actions { width: 100%; }
  .btn-main { width: 100%; text-align: center; }

  /* Sections padding */
  .pain, .benefits, .profiles, .founder, .cta-final { padding: 4rem 0; }

  /* Pain cards */
  .pain-card { padding: 1.5rem; }

  /* Benefits */
  .benefit-card { padding: 1.5rem; }

  /* Profiles */
  .profile-card { padding: 1.75rem; }
  .check-list   { font-size: 0.875rem; }

  /* Portugal badges */
  .pt-badges { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .pt-badge  { padding: 0.6rem 0.75rem; font-size: 0.78rem; }

  /* Founder */
  .founder-card  { padding: 1.75rem; }
  .fc-name       { font-size: 1.1rem; }
  .fc-stat-val   { font-size: 2rem; }
  .founder-quote { padding: 1.75rem 1.25rem; }
  .founder-quote p { font-size: 1rem; }

  /* CTA */
  .cta-box     { padding: 2.5rem 1.25rem; }
  .cta-box h2  { font-size: 1.75rem; }
  .btn-main--lg { width: 100%; }

  /* Modal */
  .modal-overlay { padding: 1rem; align-items: flex-end; }
  .modal { padding: 2rem 1.25rem; border-radius: var(--r-lg) var(--r-lg) 0 0; max-width: 100%; }

  /* Footer */
  .footer-main { padding: 3rem 0 0; }
  .footer-grid { gap: 1.5rem; }
}

/* ── Pain footnote ── */
.pain-footnote {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ── Mockup sub-label ── */
.mockup-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.mockup-sub  { font-size: 0.62rem; color: var(--muted); font-weight: 400; margin-top: 1px; }

/* ── Profile description ── */
.profile-desc { font-size: 0.9rem; margin-bottom: 1.25rem; }
.profile-desc--dark { color: rgba(255,255,255,.5); }

/* ── Roadmap strip ── */
.roadmap {
  padding: 1.5rem 0;
  background: var(--lavender-3);
  border-top: 1px solid var(--lavender-2);
  border-bottom: 1px solid var(--lavender-2);
}
.roadmap-inner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.roadmap-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  background: var(--lavender-2);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.roadmap-inner p { font-size: 0.9375rem; color: var(--muted); }
.roadmap-inner strong { color: var(--navy); font-weight: 600; }
.roadmap-link {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}
.roadmap-link:hover { text-decoration: underline; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(13,20,40,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 24px 64px rgba(13,20,40,.25);
  transform: translateY(12px);
  transition: transform .25s;
}
.modal-overlay.is-open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, background .2s;
}
.modal-close:hover { color: var(--navy); background: var(--off-white); }
.modal-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.modal-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.75rem; }
.beta-form .form-field { margin-bottom: 1rem; }
.input-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}
.field-required { color: var(--orange); }
.field-optional { font-weight: 400; color: var(--muted); }
.input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.input::placeholder { color: var(--muted); opacity: .65; }
.input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,63,168,.1);
}
.btn-block { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: var(--success-bg);
  border-radius: var(--r-btn);
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
}
.form-success[hidden] { display: none; }
.roadmap-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: var(--purple);
  font-weight: 600;
  padding: 0;
  text-decoration: none;
}
.roadmap-link:hover { text-decoration: underline; }

/* ── Brevo form overrides ── */
.brevo-wrap {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  text-align: left !important;
}
.brevo-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  margin-bottom: 0.375rem !important;
  letter-spacing: 0 !important;
}
.brevo-input {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.9rem !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-btn) !important;
  padding: 11px 14px !important;
  width: 100% !important;
  background: var(--white) !important;
  box-shadow: none !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.brevo-input:focus {
  border-color: var(--purple) !important;
  box-shadow: 0 0 0 3px rgba(107,63,168,.1) !important;
  outline: none !important;
}
.brevo-input::placeholder { color: var(--muted) !important; opacity: .65 !important; }
.brevo-error {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.75rem !important;
  color: #dc2626 !important;
  background: none !important;
  border: none !important;
  padding: 4px 0 0 !important;
}
.brevo-msg {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  padding: 0.875rem 1rem !important;
  border-radius: var(--r-btn) !important;
  margin-top: 1rem !important;
  border: none !important;
  max-width: 100% !important;
}
.brevo-msg--success {
  background: var(--success-bg) !important;
  color: var(--green) !important;
}
.brevo-msg--error {
  background: #fdecea !important;
  color: #dc2626 !important;
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

/* ── Inline Email Form ── */
.inline-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.inline-form-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.inline-email-input {
  flex: 1;
  padding: 0 1.25rem;
  height: 56px;
  border: 2px solid var(--border);
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.inline-email-input::placeholder { color: var(--muted); }
.inline-email-input:focus { border-color: var(--purple); }
.inline-form .btn-main {
  white-space: nowrap;
  height: 52px;
  padding: 0 1.5rem;
}
.inline-form-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.inline-form-note strong { color: var(--navy); }
.inline-form-star { color: var(--orange); }

@media (max-width: 600px) {
  .inline-form { padding: 0; max-width: 100%; }
  .inline-form-row {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .inline-email-input {
    width: 100% !important;
    height: 60px !important;
    min-height: 60px !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    border: 2px solid var(--border) !important;
    border-radius: 9px !important;
    padding: 0 1.25rem !important;
    background: var(--white) !important;
    display: block !important;
    margin-bottom: 0.75rem !important;
    flex: none !important;
  }
  .inline-form .btn-main { width: 100% !important; height: 60px !important; font-size: 1rem !important; flex: none !important; }
}

/* Hero inline form — alinha à esquerda */
.hero-inline-form { margin: 0; }
.hero-inline-form .inline-form-note { justify-content: flex-start; text-align: left; }

/* Announcement bar — hide on scroll */
.announce-bar {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.announce-bar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
#nav {
  transition: top 0.3s ease, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.announce-bar--hidden ~ #nav,
body:has(.announce-bar--hidden) #nav {
  top: 0;
}
