/* ============================================================
   Karppa — Site institucional (v2)
   Design: Claude Design handoff "site-institucional-grupo-karppa".
   Built static for Cloudflare Pages. Tokens + visual system below.
   Orange #E63905 = spotlight only; backgrounds = deep blue / black.
   ============================================================ */

/* ============================================================
   Karppa Design System — Colors & Type
   The orange #E63905 is the brand spotlight: NEVER use it as a
   background. Backgrounds = blue / white / black. Orange = symbol,
   accents, CTAs, headlines accent words only.
   ============================================================ */

/* ---------- Fonts ----------
   Primary brand "karppa" wordmark = custom (logo only, never body).
   Body / UI = Archopada Rounded (loaded from /fonts).
   Accepted web fallbacks: Nunito, Rubik, Manrope.
*/

@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRounded-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRounded-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRounded-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRounded-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRounded-ExtraBold.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRounded-Black.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}
/* Oblique cuts */
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRoundedOblique-Regular.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRoundedOblique-Medium.woff2") format("woff2");
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRoundedOblique-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRoundedOblique-Bold.woff2") format("woff2");
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRoundedOblique-ExtraBold.woff2") format("woff2");
  font-weight: 800; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Archopada Rounded";
  src: url("../fonts/ArchopadaRoundedOblique-Black.woff2") format("woff2");
  font-weight: 900; font-style: italic; font-display: swap;
}

:root {
  /* Dominant page background (deep blue) — baked from the design default */
  --bg-dominant: #0C1322;

  /* ---------- Brand colors ---------- */
  --karppa-blue:        #1C229C;  /* primary institutional */
  --karppa-orange:      #E63905;  /* action / accent — NEVER as bg */
  --karppa-white:       #FFFFFF;
  --karppa-black:       #0A0A12;

  /* Blue scale */
  --blue-950: #0C1322;  /* deepest, near-black blue */
  --blue-900: #191B5D;
  --blue-700: #1C229C;  /* = brand blue */
  --blue-600: #2738BF;
  --blue-500: #3A4AAB;
  --blue-400: #4E63B4;
  --blue-300: #8798C7;
  --blue-200: #A9B6D7;
  --blue-100: #B6C0E5;
  --blue-50:  #E7EAF6;

  /* Orange / red scale (use sparingly; never as page bg) */
  --orange-50:  #FFD1C5;
  --orange-200: #FDA37E;
  --orange-300: #FE7959;
  --orange-500: #E63905;  /* = brand orange */
  --orange-600: #C42E1F;
  --orange-700: #942921;
  --orange-800: #6D1F14;
  --orange-900: #4F150B;
  --orange-950: #401907;

  /* Neutral scale */
  --gray-1000: #000000;
  --gray-950:  #0A0A12;   /* = brand black */
  --gray-900:  #1A1A22;
  --gray-800:  #383838;
  --gray-700:  #4A4A55;
  --gray-600:  #737373;
  --gray-500:  #8A8A96;
  --gray-400:  #A7A7A7;
  --gray-300:  #D8D8DE;
  --gray-200:  #E7E7EC;
  --gray-100:  #F2F2F5;
  --gray-50:   #FAF8F3;   /* warm cream */

  /* ---------- Semantic tokens ---------- */
  /* Surfaces — orange forbidden as surface */
  --surface-default:    #FFFFFF;
  --surface-cream:      #FAF8F3;
  --surface-muted:      #F2F2F5;
  --surface-inverse:    #14185E;   /* blue (escurecido p/ fundo mais fechado) */
  --surface-deep:       #0C1322;   /* blue-near-black */
  --surface-black:      #0A0A12;

  /* Foregrounds */
  --fg-1:               #1A1A22;   /* primary text on light */
  --fg-2:               #4A4A55;   /* secondary text on light */
  --fg-3:               #8A8A96;   /* tertiary / placeholder */
  --fg-on-blue:         #FFFFFF;
  --fg-on-blue-muted:   rgba(255,255,255,0.65);
  --fg-on-dark:         #FFFFFF;
  --fg-on-dark-muted:   rgba(255,255,255,0.55);
  --fg-brand:           #1C229C;   /* blue headings */
  --fg-accent:          #E63905;   /* orange accent / link hover */
  --fg-accent-soft:     #FE7959;   /* the only "orange on dark" bright */

  /* Borders / lines */
  --border-subtle:      #E7E7EC;
  --border-default:     #D8D8DE;
  --border-strong:      #1C229C;
  --border-on-dark:     rgba(255,255,255,0.15);

  /* Status (kept blue-leaning to respect palette) */
  --status-success:     #1F9D55;
  --status-warning:     #E0A100;
  --status-danger:      #C42E1F;   /* uses brand orange-600 */
  --status-info:        #1C229C;

  /* Focus */
  --focus-ring:         0 0 0 3px rgba(28,34,156,0.35);

  /* ---------- Type families ---------- */
  --font-body:          "Archopada Rounded", "Nunito", "Rubik", "Manrope",
                        system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display:       "Archopada Rounded", "Nunito", "Rubik", "Manrope",
                        system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:          "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* The original "karppa" wordmark is a custom logotype that does not
     ship as a font — for in-product wordmarks use the SVG logo in
     /assets. For "display" headlines, use Archopada Rounded Black /
     ExtraBold + tight tracking. */

  /* ---------- Type scale ---------- */
  --text-xs:    0.75rem;   /* 12px — labels, tiny meta */
  --text-sm:    0.875rem;  /* 14px — captions */
  --text-base:  1rem;      /* 16px — body */
  --text-md:    1.125rem;  /* 18px — lead body */
  --text-lg:    1.25rem;   /* 20px */
  --text-xl:    1.5rem;    /* 24px — h4 */
  --text-2xl:   1.875rem;  /* 30px — h3 */
  --text-3xl:   2.25rem;   /* 36px — h2 */
  --text-4xl:   3rem;      /* 48px — h1 */
  --text-5xl:   4rem;      /* 64px — display */
  --text-6xl:   5.5rem;    /* 88px — hero */

  /* Tracking */
  --track-tight:      -0.025em;   /* display headlines */
  --track-snug:       -0.015em;   /* h2/h3 */
  --track-normal:      0em;
  --track-wide:        0.08em;    /* eyebrows / labels */
  --track-x-wide:      0.18em;    /* tiny uppercase meta */

  /* Leading */
  --leading-tight:    1.05;
  --leading-snug:     1.2;
  --leading-normal:   1.5;
  --leading-relaxed:  1.65;

  /* ---------- Spacing (4px base) ---------- */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* ---------- Radii ---------- */
  --radius-xs:    4px;
  --radius-sm:    8px;
  --radius-md:    14px;   /* default card radius */
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-pill:  999px;
  --radius-circle: 50%;

  /* ---------- Shadows ---------- */
  --shadow-xs: 0 1px 2px rgba(28,34,156,0.06);
  --shadow-sm: 0 2px 8px rgba(28,34,156,0.08);
  --shadow-md: 0 4px 20px rgba(28,34,156,0.10);
  --shadow-lg: 0 12px 36px rgba(28,34,156,0.16);
  --shadow-xl: 0 24px 60px rgba(18,29,51,0.22);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.06);

  /* ---------- Motion ---------- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --duration-fast: 120ms;
  --duration-base: 200ms;
  --duration-slow: 320ms;

  /* ---------- Layout ---------- */
  --container-narrow: 720px;
  --container-default: 1140px;
  --container-wide:    1320px;
}

/* ============================================================
   Semantic element styles — use directly in HTML
   ============================================================ */

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg-1);
  background: var(--surface-default);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Headings — bold, slightly tight, brand blue */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--font-display);
  color: var(--fg-brand);
  letter-spacing: var(--track-snug);
  line-height: var(--leading-tight);
  font-weight: 800;
}
h1, .h1 { font-size: var(--text-4xl); letter-spacing: var(--track-tight); font-weight: 900; }
h2, .h2 { font-size: var(--text-3xl); }
h3, .h3 { font-size: var(--text-2xl); }
h4, .h4 { font-size: var(--text-xl); font-weight: 700; }
h5, .h5 { font-size: var(--text-lg); font-weight: 700; }
h6, .h6 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--track-x-wide);
  color: var(--fg-accent);
  font-weight: 800;
}

/* Display class — for hero numbers / wordmark-style headlines */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-5xl);
  letter-spacing: var(--track-tight);
  line-height: 0.98;
  color: var(--fg-brand);
}
.display .accent { color: var(--fg-accent); }

/* Eyebrow / kicker — small uppercase orange label */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--track-x-wide);
  color: var(--fg-accent);
}

p { font-size: var(--text-base); color: var(--fg-2); margin: 0 0 var(--space-4); text-wrap: pretty; }
.lead { font-size: var(--text-md); color: var(--fg-2); line-height: var(--leading-normal); }

a {
  color: var(--fg-brand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard);
}
a:hover { color: var(--fg-accent); border-bottom-color: currentColor; }

strong, b { font-weight: 800; color: var(--fg-brand); }

code, kbd, samp, pre {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--surface-muted);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-xs);
  color: var(--fg-brand);
}
pre { padding: var(--space-4); overflow: auto; }

hr {
  border: 0;
  height: 1px;
  background: var(--border-subtle);
  margin: var(--space-8) 0;
}

/* Selection */
::selection { background: var(--karppa-orange); color: var(--karppa-white); }

/* Focus outline reset — use focus-ring var */
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-xs); }

/* Utility: dark surfaces flip foreground */
.on-blue, .on-dark {
  background: var(--surface-inverse);
  color: var(--fg-on-blue);
}
.on-blue h1, .on-blue h2, .on-blue h3, .on-blue h4, .on-blue h5,
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5,
.on-blue strong, .on-dark strong { color: var(--fg-on-blue); }
.on-blue h6, .on-dark h6 { color: var(--fg-accent-soft); }
.on-blue p, .on-dark p { color: var(--fg-on-blue-muted); }
.on-blue a, .on-dark a { color: var(--fg-on-blue); }
.on-blue a:hover, .on-dark a:hover { color: var(--fg-accent-soft); }



* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-dominant, #0C1322);
  color: var(--fg-on-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ============ REVEAL ============ */
/* Hiding is scoped to html.js so content stays visible if JS is off/fails. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: transform, opacity;
}
.js .reveal--in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============ SCROLL / MOUSE FX ============ */
[data-parallax] { transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 3px; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--karppa-orange), var(--orange-300));
  box-shadow: 0 0 12px rgba(230,57,5,0.6);
}

/* Cursor-follow glare on cards */
.glow { position: relative; overflow: hidden; }
.glow::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(230,57,5,0.14), transparent 62%);
  opacity: 0; transition: opacity 280ms var(--ease-out);
}
.glow:hover::before { opacity: 1; }
.glow > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none !important; }
  .glow::before { display: none; }
}

/* ============ UTILITY ============ */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 860px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--orange-300);
  font-family: var(--font-body);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.7;
}
.eyebrow--nobar::before { display: none; }

.section { padding: 140px 0; position: relative; }
.section--tight { padding: 90px 0; }
.section--alt { background: #0A0A12; }
.section--deepest { background: #070710; }
.section--royal { background: linear-gradient(180deg, #0C1322, #131A40); }

.accent { color: var(--orange-300); font-style: italic; }
body.no-accent-italic .accent { font-style: normal; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 32px;
  background: rgba(10, 10, 18, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms, padding 200ms;
}
.nav--solid { background: rgba(10, 10, 18, 0.92); padding: 10px 32px; }
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.nav-logo { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: 16px; }
.nav-links a {
  display: inline-flex; align-items: center;
  line-height: 1;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 0; white-space: nowrap;
  transition: color 150ms;
}
.nav-links a:hover { color: var(--orange-300); }
/* "Sou Aluno" no nav desktop: chip de acesso, com contraste e destaque */
.nav-links a.nav-aluno {
  color: var(--orange-300); font-weight: 800;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(230,57,5,0.45);
  background: rgba(230,57,5,0.08);
  transition: background 160ms, border-color 160ms, color 160ms;
}
.nav-links a.nav-aluno:hover { color: var(--orange-200); background: rgba(230,57,5,0.16); border-color: var(--orange-300); }
.nav-spacer { flex: 1; }
.nav-cta-ghost {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8);
  padding: 10px 16px; border: 0;
}
.nav-cta-ghost:hover { color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
  padding: 11px 22px; border-radius: 999px;
  background: var(--karppa-orange); color: #fff;
  font-weight: 800; font-size: 14px;
  border: 0;
  box-shadow: 0 4px 18px rgba(230,57,5,0.4);
  transition: background 180ms, transform 120ms, box-shadow 180ms;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.3) 50%, transparent 80%);
  transform: translateX(-100%);
  transition: transform 600ms var(--ease-out);
}
.nav-cta:hover { background: var(--orange-600); color: #fff; box-shadow: 0 6px 24px rgba(230,57,5,0.5); }
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta:active { transform: translateY(1px); }

/* ---- Mobile burger + drawer ---- */
.nav-burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  padding: 0; margin-left: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 280ms var(--ease-out), opacity 200ms var(--ease-out), top 280ms var(--ease-out);
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 27px; }
.nav--open .nav-burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav--open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.nav--open .nav-burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(5,5,12,0.55);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed; top: 0; right: 0; z-index: 45;
  width: min(86vw, 360px); height: 100dvh;
  background: linear-gradient(180deg, #0E1428, #07070F);
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -30px 0 80px rgba(0,0,0,0.5);
  padding: 22px 26px 34px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 420ms var(--ease-out);
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }

/* Cabeçalho do drawer: logo + botão de fechar (afordância clara de retorno) */
.nav-drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.nav-drawer-logo { height: 24px; width: auto; display: block; opacity: 0.92; }
.nav-drawer-close {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 180ms, border-color 180ms, color 180ms, transform 120ms;
}
.nav-drawer-close svg { width: 20px; height: 20px; }
.nav-drawer-close:hover { background: rgba(230,57,5,0.16); border-color: rgba(230,57,5,0.5); color: var(--orange-300); }
.nav-drawer-close:active { transform: scale(0.94); }
.nav-drawer-links { display: flex; flex-direction: column; }
.nav-drawer-links a {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 26px; letter-spacing: -0.02em;
  color: #fff; border: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0; transform: translateX(24px);
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out), color 160ms;
}
.nav-drawer.is-open .nav-drawer-links a { opacity: 1; transform: translateX(0); }
.nav-drawer-links a:hover, .nav-drawer-links a:active { color: var(--orange-300); }
.nav-drawer-links a:last-child { border-bottom: 0; }
.nav-drawer-links a .ix {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--orange-300); letter-spacing: 0.05em;
  flex-shrink: 0; width: 22px;
}
/* "Sou Aluno": acesso destacado para quem já é aluno (pill, fica junto ao CTA) */
.nav-drawer-aluno {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: auto;
  padding: 15px 20px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: -0.01em; white-space: nowrap;
  color: var(--orange-300);
  background: rgba(230,57,5,0.10);
  border: 1px solid rgba(230,57,5,0.45);
  opacity: 0; transform: translateY(16px);
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out),
              background 180ms, border-color 180ms, color 180ms;
}
.nav-drawer.is-open .nav-drawer-aluno { opacity: 1; transform: translateY(0); }
.nav-drawer-aluno:hover, .nav-drawer-aluno:active { background: rgba(230,57,5,0.18); border-color: var(--orange-300); color: var(--orange-200); }
.nav-drawer-aluno svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-drawer-cta {
  margin-top: 12px; width: 100%;
  opacity: 0; transform: translateY(16px);
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out), background 180ms, box-shadow 180ms;
}
.nav-drawer.is-open .nav-drawer-cta { opacity: 1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  padding: 16px 30px; border-radius: 999px;
  border: 0; cursor: pointer; text-decoration: none;
  transition: background 180ms, transform 120ms, box-shadow 180ms, color 180ms;
  position: relative; overflow: hidden;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--karppa-orange); color: #fff;
  box-shadow: 0 8px 28px rgba(230,57,5,0.4);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.3) 50%, transparent 80%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease-out);
}
.btn--primary:hover { background: var(--orange-600); color: #fff; box-shadow: 0 10px 36px rgba(230,57,5,0.5); }
.btn--primary:hover::before { transform: translateX(100%); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.btn--lg { padding: 19px 36px; font-size: 16px; }
.btn svg { width: 18px; height: 18px; }

.ctalink {
  font-size: 14px; font-weight: 700; color: var(--orange-300);
  border: 0; display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(230,57,5,0.3);
  padding-bottom: 3px;
  transition: gap 180ms, border-color 180ms;
}
.ctalink:hover { gap: 10px; border-bottom-color: var(--orange-300); color: var(--orange-300); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 190px 0 140px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(1200px 800px at 80% 20%, rgba(20,24,94,0.5), transparent 60%),
              radial-gradient(900px 700px at 10% 100%, rgba(230,57,5,0.2), transparent 65%),
              var(--bg-dominant, #0C1322);
}
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(60px);
  animation: hue 22s ease-in-out infinite;
}
.hero-bg::before {
  width: 480px; height: 480px; right: 10%; top: 15%;
  background: radial-gradient(circle, rgba(230,57,5,0.35), transparent 60%);
}
.hero-bg::after {
  width: 380px; height: 380px; left: 5%; bottom: 10%;
  background: radial-gradient(circle, rgba(20,24,94,0.5), transparent 60%);
  animation-delay: -10s;
}
@keyframes hue {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.85; }
  50% { transform: translate(60px, -40px) scale(1.1); opacity: 1; }
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
}
.hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.0vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-lead {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 0 40px;
}
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero-ctas .ctalink { margin-left: 8px; }

.hero-badges {
  display: flex; gap: 28px; margin-top: 52px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.72); font-weight: 600;
}
.hero-badge svg { width: 18px; height: 18px; color: var(--orange-300); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 520px;
  transform: translate3d(0, var(--py, 0px), 0) perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 400ms var(--ease-out);
}
.hero-visual .symbol-big {
  /* 2D desativado por escolha: o SVG fica invisível e serve só de âncora de
     tamanho para o koi 3D (não há mais fallback 2D enquanto o 3D carrega). */
  visibility: hidden;
  width: 100%; max-width: 440px; height: auto;
  /* extrusão 2.5D (paredes laterais escurecidas) + lift/glow */
  filter:
    drop-shadow(1.5px 2px 0 #B5300C)
    drop-shadow(3px 4px 0 #A22A0A)
    drop-shadow(4.5px 6px 0 #8E2408)
    drop-shadow(6px 8px 0 #7C1F06)
    drop-shadow(7.5px 10px 0 #6A1A05)
    drop-shadow(9px 12px 0 #571504)
    drop-shadow(0 40px 70px rgba(230,57,5,0.45));
  animation: floaty 8s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
}
.hero-visual .orbit {
  position: absolute; border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.hero-visual .orbit--1 { width: 540px; height: 540px; }
.hero-visual .orbit--2 { width: 700px; height: 700px; border-color: rgba(255,255,255,0.06); animation-duration: 90s; animation-direction: reverse; }
.hero-visual .orbit--3 { width: 860px; height: 860px; border-color: rgba(255,255,255,0.03); animation-duration: 120s; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit-dot {
  position: absolute; top: 50%; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange-300);
  box-shadow: 0 0 20px var(--orange-300), 0 0 40px rgba(230,57,5,0.4);
  transform: translate(-50%, -50%);
}

.hero-tag {
  position: absolute;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(10,10,18,0.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; color: #fff; font-weight: 600;
  animation: tagfloat 6s ease-in-out infinite;
  z-index: 3;
}
.hero-tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange-300);
  box-shadow: 0 0 12px var(--orange-300);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
@keyframes tagfloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-tag--1 { top: 10%; left: 4%; animation-delay: -1s; }
.hero-tag--2 { top: 78%; left: -6%; animation-delay: -3s; }
.hero-tag--3 { top: 32%; right: -8%; animation-delay: -5s; }

/* ============ TICKER ============ */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  padding: 22px 0;
}
.ticker-track {
  display: flex; gap: 64px;
  animation: ticker 40s linear infinite;
  width: max-content;
}
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; color: rgba(255,255,255,0.5);
  letter-spacing: -0.015em; white-space: nowrap;
}
.ticker-item .dotsep {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-300); opacity: 0.6; flex-shrink: 0;
}
.ticker-item.bright { color: #fff; }

/* ============ SECTION HEADER ============ */
.sh {
  max-width: 860px; margin: 0 auto 72px;
  text-align: center;
}
.sh--left { text-align: left; margin: 0 0 64px; max-width: 780px; }
.sh .eyebrow { margin-bottom: 20px; }
.sh h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 20px;
  text-wrap: balance;
}
.sh p {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 680px; margin: 0 auto;
}
.sh--left p { margin: 0; }

/* Sessão Estratégica: título mais largo (2 linhas); o formulário continua estreito */
#sessao .container--narrow { max-width: 1000px; }
#sessao .sh { max-width: 900px; }
#sessao .form, #sessao .form-success { max-width: 660px; margin-left: auto; margin-right: auto; }

/* ============ PILLARS (3 pilares — used in Diferenciais e Metodologia) ============ */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pillar {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 38px;
  overflow: hidden;
  transition: transform 280ms var(--ease-out), border-color 220ms, box-shadow 220ms;
}
.pillar::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-300), transparent);
  opacity: 0;
  transition: opacity 220ms;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(230,57,5,0.3); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.pillar:hover::after { opacity: 1; }
.pillar .num {
  font-family: var(--font-mono); font-size: 13px;
  color: rgba(255,255,255,0.35); letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.pillar .icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(230,57,5,0.12); color: var(--orange-300);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  transition: background 220ms, transform 220ms;
}
.pillar:hover .icon-wrap { background: rgba(230,57,5,0.2); transform: rotate(-5deg) scale(1.05); }
.pillar .icon-wrap svg { width: 22px; height: 22px; }
.pillar h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; line-height: 1.25; letter-spacing: -0.015em;
  color: #fff; margin: 0 0 16px;
}
.pillar p {
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,0.68); margin: 0;
}

/* ============ PERFIS (4 cards) ============ */
.perfis-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.perfil {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 30px 26px;
  transition: transform 280ms var(--ease-out), border-color 220ms;
}
.perfil:hover { transform: translateY(-5px); border-color: rgba(230,57,5,0.3); }
.perfil .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(28,34,156,0.3); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.perfil .ic svg { width: 20px; height: 20px; }
.perfil h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; color: #fff; margin: 0 0 10px; letter-spacing: -0.015em;
}
.perfil p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.65); margin: 0;
}
.perfis-outro {
  max-width: 780px; margin: 52px auto 0; text-align: center;
  font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.65;
}

/* ============ FLOW (sessão dedicada) ============ */
.flow-section { background: linear-gradient(180deg, #0A0A12, #0C1322); overflow: hidden; position: relative; }
.flow-inner {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center;
}
.flow-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.08;
  letter-spacing: -0.025em; color: #fff; margin: 0 0 24px; text-wrap: balance;
}
.flow-copy p {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 0 28px;
}
.flow-features {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.flow-features li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 200ms, background 200ms;
}
.flow-features li:hover { border-color: rgba(230,57,5,0.3); background: rgba(255,255,255,0.05); }
.flow-features li .fi {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(230,57,5,0.15); color: var(--orange-300);
  display: inline-flex; align-items: center; justify-content: center;
}
.flow-features li .fi svg { width: 14px; height: 14px; }
.flow-features li span { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.5; }

/* Flow mock animated */
.flow-mock {
  background: linear-gradient(145deg, #151B3A, #0A0E22);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transform: perspective(1400px) rotateY(-4deg) rotateX(4deg);
  transition: transform 500ms var(--ease-out);
}
.flow-mock:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(2deg) translateY(-6px); }
.flow-mock::before {
  content: ""; position: absolute; inset: -1px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(230,57,5,0.4), transparent 50%, rgba(28,34,156,0.5));
  z-index: -1;
  filter: blur(20px); opacity: 0.6;
}
.flow-mock-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.flow-mock-header .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; color: #fff; }
.flow-mock-header .brand img { width: 20px; height: 20px; }
.flow-mock-header .meta { font-size: 11px; color: rgba(255,255,255,0.5); font-family: var(--font-mono); }
.flow-mock-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: #4ade80; font-weight: 600; }
.flow-mock-live .ld { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse 1.8s ease-in-out infinite; }

.flow-mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.flow-stat {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 14px;
}
.flow-stat .l { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.flow-stat .v { font-family: var(--font-mono); font-weight: 700; font-size: 16px; color: #fff; }
.flow-stat .v.pos { color: #4ade80; }
.flow-stat .v.neg { color: var(--orange-300); }

.flow-chart {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 16px; height: 160px;
  position: relative; overflow: hidden;
}
.flow-chart-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.flow-chart-head .t { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 600; }
.flow-chart-head .d { font-size: 10px; color: rgba(255,255,255,0.35); font-family: var(--font-mono); }
.flow-chart .bars {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px;
  height: calc(100% - 24px); align-items: end;
}
.flow-chart .bars span {
  display: block; background: linear-gradient(180deg, var(--karppa-orange), rgba(230,57,5,0.3));
  border-radius: 3px 3px 0 0;
  animation: barGrow 1000ms var(--ease-out) both;
}
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }

.flow-rows { display: flex; flex-direction: column; gap: 8px; }
.flow-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center;
  padding: 10px 12px; background: rgba(255,255,255,0.02); border-radius: 8px;
  font-size: 12px;
  transition: background 180ms;
}
.flow-row:hover { background: rgba(255,255,255,0.05); }
.flow-row span:first-child { color: rgba(255,255,255,0.85); font-weight: 600; }
.flow-row .tag { padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.flow-row .tag.ok { background: rgba(74,222,128,0.15); color: #4ade80; }
.flow-row .tag.warn { background: rgba(230,57,5,0.15); color: var(--orange-300); }
.flow-row .tag.info { background: rgba(28,34,156,0.25); color: #8798c7; }
.flow-row .v { font-family: var(--font-mono); color: #fff; font-weight: 700; }

/* ============ FUNDADOR ============ */
.fundador-inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center;
}
.fundador-img {
  height: 560px;
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(145deg, #14185E 0%, #0C1322 55%, #0A0A12 100%);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.fundador-img::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../img/karppa-symbol.svg");
  background-size: 55%;
  background-position: center 42%;
  background-repeat: no-repeat;
  opacity: 0.18;
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.1; } 50% { transform: scale(1.06); opacity: 0.18; } }
.fundador-img .initials {
  font-family: var(--font-display); font-weight: 900;
  font-size: 150px;
  line-height: 1; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.92);
  position: relative; z-index: 1;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.fundador-img .caption {
  position: absolute; bottom: 24px; left: 28px; right: 28px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 12px;
}
.fundador-img .caption .name-line {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: #fff; letter-spacing: -0.01em;
}
.fundador-img .caption .role-line {
  font-size: 11px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.15em;
  font-family: var(--font-mono);
}
.fundador-img .placeholder-text {
  position: absolute; top: 24px; left: 28px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.18em;
  display: inline-flex; align-items: center; gap: 8px;
}
.fundador-img .placeholder-text::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-300);
  box-shadow: 0 0 10px var(--orange-300);
}
.fundador-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 22px;
  text-wrap: balance;
}
.fundador-copy p {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.72); margin: 0 0 16px;
}
.fundador-sign { margin-top: 30px; }
.fundador-sign .sign-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: #fff; letter-spacing: -0.01em;
}
.fundador-sign .sign-role {
  font-size: 13px; color: var(--orange-300); font-weight: 700; margin-top: 3px;
}

/* ============ INCLUSO ============ */
.incluso-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.incluso-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: transform 220ms, border-color 220ms, background 220ms;
}
.incluso-item:hover { transform: translateY(-3px); border-color: rgba(230,57,5,0.3); background: rgba(255,255,255,0.05); }
.incluso-item .ic {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(230,57,5,0.15); color: var(--orange-300);
  display: inline-flex; align-items: center; justify-content: center;
}
.incluso-item .ic svg { width: 18px; height: 18px; }
.incluso-item .t { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff; margin: 0 0 4px; letter-spacing: -0.01em; }
.incluso-item .d { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; margin: 0; }

/* ============ TESTIMONIALS ============ */
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.test-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform 220ms var(--ease-out), border-color 180ms;
}
.test-card:hover { transform: translateY(-4px); border-color: rgba(230,57,5,0.3); }
.test-card .quote { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.85); flex: 1; margin: 0; text-wrap: pretty; }
.test-card .who { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.test-card .who .avatar {
  width: 46px; height: 46px; border-radius: 999px;
  background: linear-gradient(135deg, var(--karppa-blue), var(--karppa-orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px;
  font-family: var(--font-display); flex-shrink: 0;
  overflow: hidden;
}
.test-card .who .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.test-card .who .name { color: #fff; font-weight: 700; font-size: 14px; margin: 0; }
.test-card .who .meta { color: rgba(255,255,255,0.5); font-size: 12px; }

.test-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.test-stat { text-align: center; }
.test-stat .v {
  font-family: var(--font-display); font-weight: 900;
  font-size: 40px; line-height: 1;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.test-stat .v .plus { color: var(--orange-300); }
.test-stat .l { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }
/* Selo de certificação no canto superior direito do "MEC" */
.test-stat .v--mec { display: inline-block; position: relative; }
.cert-seal {
  position: absolute; top: -15px; right: -33px;
  width: 36px; height: 36px;
  filter: drop-shadow(0 3px 7px rgba(150,110,15,0.6));
}
.cert-seal svg { display: block; width: 100%; height: 100%; }
@media (max-width: 600px) { .cert-seal { width: 30px; height: 30px; right: -25px; top: -12px; } }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, #0C1322, #14185E);
  padding: 110px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; right: -200px; top: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,5,0.3), transparent 60%);
  filter: blur(40px);
  animation: cta-orb 14s ease-in-out infinite;
}
.cta-section::after {
  content: ""; position: absolute; left: -150px; bottom: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(28,34,156,0.5), transparent 60%);
  filter: blur(60px);
  animation: cta-orb 18s ease-in-out infinite reverse;
}
@keyframes cta-orb {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-80px, 50px) scale(1.15); }
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto; text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 3.8vw, 46px); line-height: 1.08;
  letter-spacing: -0.025em; color: #fff; margin: 0 0 24px;
  text-wrap: balance;
}
.cta-inner p {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.8); max-width: 680px; margin: 0 auto 40px;
}
.cta-reassure {
  margin-top: 28px;
  font-size: 13px; color: rgba(255,255,255,0.6); max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.55;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; cursor: pointer;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; color: #fff;
  letter-spacing: -0.01em; transition: color 180ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--orange-300);
  font-size: 28px; font-weight: 300;
  transition: transform 220ms;
  line-height: 1; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--orange-300); }
.faq-item .body {
  padding-top: 14px;
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 700px;
}

/* ============ FOOTER ============ */
.footer {
  background: #050510;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand img { height: 28px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 360px; margin: 0 0 22px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-socials a:hover { background: rgba(230,57,5,0.15); color: var(--orange-300); border-color: rgba(230,57,5,0.3); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: 11px; font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: 0.18em;
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; border: 0; }
.footer-col a:hover { color: var(--orange-300); }
.footer-col .contact-line { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.footer-bottom .legal { font-family: var(--font-mono); letter-spacing: 0.05em; }
.footer-bottom a { color: rgba(255,255,255,0.45); border: 0; }
.footer-bottom a:hover { color: var(--orange-300); }

/* ============ FORM ============ */
.form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px;
}
.form-grid {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px;
  margin-bottom: 28px;
}
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: -0.005em;
}
.field label .hint { color: var(--orange-300); font-weight: 800; }
.field .helper { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.field input, .field select, .field textarea {
  width: 100%; max-width: 100%; min-width: 0;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px;
  color: #fff;
  transition: border-color 180ms, background 180ms, box-shadow 180ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--orange-300);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 4px rgba(230,57,5,0.12);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field select { appearance: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field select option { background: #0C1322; color: #fff; }
.field textarea { resize: vertical; min-height: 90px; }
.form-footer {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding-top: 8px;
}
.form-disclaimer { font-size: 12px; color: rgba(255,255,255,0.5); max-width: 520px; text-align: center; line-height: 1.5; margin: 0; }
/* Validação do formulário */
.field-error { font-size: 12px; line-height: 1.4; color: #FF9B9B; margin-top: 2px; }
.field-error:empty { display: none; }
.field--invalid input, .field--invalid select { border-color: #E5484D; background: rgba(229,72,77,0.07); }
.field--invalid input:focus, .field--invalid select:focus { border-color: #E5484D; box-shadow: 0 0 0 4px rgba(229,72,77,0.15); }
.btn--locked { opacity: 0.55; filter: saturate(0.75); }
.btn--locked:hover { transform: none; }
/* honeypot anti-spam: fora da tela, invisível para humanos */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
/* mensagem de erro de envio (CRM indisponível): dá um caminho alternativo ao usuário */
.form-submit-error {
  font-size: 13px; line-height: 1.5; color: #FF9B9B; margin: 0; text-align: center; max-width: 520px;
  background: rgba(229,72,77,0.08); border: 1px solid rgba(229,72,77,0.3);
  border-radius: 10px; padding: 12px 16px;
}
.form-submit-error[hidden] { display: none; }
.form-submit-error a { color: #FFC4C4; border-bottom: 1px solid rgba(255,155,155,0.5); }
@media (max-width: 680px) {
  .form { padding: 28px 22px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
}

/* ============ ORBITS OFF ============ */
body.no-orbits .hero-visual .orbit { display: none; }

/* ============ CARPA PATTERN ============ */
.carpa-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("../img/karppa-symbol.svg");
  background-size: 60px;
  background-repeat: space;
  opacity: 0.025;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: 420px; }
  .hero-visual .orbit--2, .hero-visual .orbit--3 { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .perfis-grid { grid-template-columns: repeat(2, 1fr); }
  .incluso-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .flow-inner { grid-template-columns: 1fr; gap: 40px; }
  .fundador-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  .section { padding: 90px 0; }
  .test-stats { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 68px 0; }
  .sh { margin-bottom: 44px; }
  .hero { padding: 132px 0 72px; }
  .hero-badges { gap: 14px; flex-direction: column; align-items: flex-start; margin-top: 36px; padding-top: 28px; }
  .hero-tag { display: none; }
  .hero-visual { min-height: 340px; }
  .hero-visual .symbol-big { max-width: 300px; }
  .hero-visual .orbit--1 { width: 380px; height: 380px; }
  .perfis-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .pillar { padding: 28px 24px; }
  .perfil { padding: 26px 22px; }
  .test-card { padding: 26px 24px; }
  .flow-mock { padding: 16px; }
  .flow-mock-grid { gap: 8px; }
  .flow-stat { padding: 11px; }
  .fundador-img { height: 420px; }
  .fundador-img .initials { font-size: 110px; }
  .faq-item summary { font-size: 17px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Production additions (static build, not in the prototype)
   ============================================================ */

/* Offset anchored sections so headings clear the fixed nav */
:target { scroll-margin-top: 88px; }
#top, [id] { scroll-margin-top: 88px; }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: 12px; top: -56px; z-index: 100;
  background: var(--karppa-orange); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 800; font-size: 14px; border: 0;
  transition: top 180ms var(--ease-out);
}
.skip-link:focus { top: 12px; color: #fff; }

/* Nav brand link: no underline */
.nav-brand { border: 0; display: inline-flex; align-items: center; }
.nav-brand:hover { border: 0; }

/* Form success state (replaces the React `sent` view) */
.form-success {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
}
.form-success:focus { outline: none; }
.form-success__icon {
  width: 56px; height: 56px; border-radius: 999px;
  background: rgba(74,222,128,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #4ade80;
}
.form-success__icon svg { width: 28px; height: 28px; }
.form-success h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  color: #fff; margin: 0 0 10px; letter-spacing: -0.01em;
}
.form-success p { color: rgba(255,255,255,0.7); margin: 0; font-size: 15px; }

/* Real Flow product screenshot (replaces the prototype mockup) */
.flow-shot {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  transform: perspective(1400px) rotateY(-5deg) rotateX(4deg);
  transition: transform 500ms var(--ease-out);
}
.flow-shot::before {
  content: ""; position: absolute; inset: -1px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(230,57,5,0.45), transparent 50%, rgba(28,34,156,0.55));
  z-index: -1; filter: blur(22px); opacity: 0.6;
}
.flow-shot:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(2deg) translateY(-6px); }
.flow-shot img { display: block; width: 100%; height: auto; border-radius: 16px; }
@media (prefers-reduced-motion: reduce) { .flow-shot { transform: none; } }

/* Chips flutuantes sobre o print do Flow (mesma linguagem dos tags do hero) */
.flow-visual { position: relative; }
.flow-tag {
  position: absolute;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(10,10,18,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px; color: #fff; font-weight: 600; white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0,0,0,0.5);
  animation: tagfloat 6s ease-in-out infinite;
  z-index: 3;
}
.flow-tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange-300);
  box-shadow: 0 0 12px var(--orange-300);
  animation: pulse 2s ease-in-out infinite;
}
.flow-tag--1 { top: 11%; left: -5%; animation-delay: -1.5s; }
.flow-tag--2 { bottom: 12%; right: -4%; animation-delay: -3.5s; }
@media (max-width: 980px) {
  .flow-tag--1 { left: 2%; }
  .flow-tag--2 { right: 2%; }
}
@media (max-width: 600px) {
  .flow-tag { font-size: 11px; padding: 8px 13px; }
}
@media (prefers-reduced-motion: reduce) { .flow-tag { animation: none; } }

/* Founder real photo (replaces the NF placeholder) */
.fundador-img--photo { background: #0A0A12; }
.fundador-img--photo::before { display: none; }
.fundador-img--photo picture { position: absolute; inset: 0; z-index: 0; }
.fundador-img--photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transform: scale(1.13); transform-origin: 50% 42%; }
.fundador-img--photo::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 44%;
  background: linear-gradient(to top, rgba(7,7,13,0.92), rgba(7,7,13,0.45) 45%, transparent);
  z-index: 1; pointer-events: none;
}
.fundador-img--photo .caption { z-index: 2; }

/* Koi 3D (WebGL canvas) — substitui o SVG quando o 3D carrega */
.koi-3d {
  display: block; width: 100%; max-width: 460px; height: auto;
  position: relative; z-index: 2;
  filter: drop-shadow(0 38px 70px rgba(230,57,5,0.45));
  animation: floaty 8s ease-in-out infinite;
}
@media (max-width: 600px) { .koi-3d { max-width: 320px; } }
@media (prefers-reduced-motion: reduce) { .koi-3d { animation: none; } }

/* === Chips de ícone glossy 3D (mesma linguagem do koi) === */
.pillar .icon-wrap,
.incluso-item .ic,
.flow-features li .fi {
  background: linear-gradient(145deg, #FF7A3D, #EE4710 48%, #C42E1F);
  color: #fff; border: 0;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.45), inset 0 -3px 6px rgba(110,20,5,0.42), 0 8px 18px rgba(230,57,5,0.30);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.pillar:hover .icon-wrap {
  background: linear-gradient(145deg, #FF8A4D, #F04A12 48%, #CE321F);
  transform: rotate(-5deg) scale(1.06);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.55), inset 0 -3px 6px rgba(110,20,5,0.42), 0 14px 28px rgba(230,57,5,0.5);
}
.incluso-item:hover .ic,
.flow-features li:hover .fi {
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.55), inset 0 -3px 6px rgba(110,20,5,0.42), 0 12px 24px rgba(230,57,5,0.45);
}
/* perfis: glossy azul (mantém a identidade, com volume) */
.perfil .ic {
  background: linear-gradient(145deg, #232A86, #14185E 55%, #0E1240);
  color: #fff; border: 0;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.35), inset 0 -3px 6px rgba(10,14,70,0.5), 0 8px 18px rgba(28,34,156,0.4);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.perfil:hover .ic { transform: translateY(-2px) scale(1.04); box-shadow: inset 0 1.5px 0 rgba(255,255,255,0.4), 0 12px 24px rgba(28,34,156,0.5); }

/* Koi 3D de fundo na seção da Sessão (atmosfera, atrás do formulário) */
.sessao-koi {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(620px, 62vw); aspect-ratio: 1 / 1;
  right: -7%; top: 50%; transform: translateY(-50%);
  opacity: 0.18;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 50%, transparent 76%);
  mask-image: radial-gradient(circle at 50% 50%, #000 50%, transparent 76%);
}
.koi-3d-bg { display: block; width: 100%; height: 100%; }
/* No mobile o koi de fundo da Sessão quase não aparece — escondemos (some + carrega mais rápido) */
@media (max-width: 768px) { .sessao-koi { display: none; } }

/* Depoimentos em carrossel infinito (estilo ticker) */
.test-marquee {
  position: relative; overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.test-marquee-track {
  display: flex; width: max-content; align-items: stretch;
  animation: testScroll 55s linear infinite;
}
.test-marquee:hover .test-marquee-track { animation-play-state: paused; }
.test-marquee .test-card { width: 400px; flex-shrink: 0; margin-right: 20px; }
@keyframes testScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) { .test-marquee .test-card { width: 290px; margin-right: 16px; } }
@media (prefers-reduced-motion: reduce) { .test-marquee-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ============================================================
   Revisão mobile — texto centralizado, botões em linha única
   ============================================================ */

/* Botões nunca quebram em duas linhas */
.btn, .nav-cta { white-space: nowrap; }
/* impede que o rótulo longo (nowrap) force a coluna além da margem do container */
.flow-copy { min-width: 0; }

@media (max-width: 980px) {
  /* Blocos de copy passam a ser centralizados quando empilham no mobile */
  .hero-inner { text-align: center; }
  .hero .eyebrow,
  .flow-copy .eyebrow,
  .fundador-copy .eyebrow { justify-content: center; }
  .hero h1,
  .hero-lead { margin-left: auto; margin-right: auto; }

  .flow-copy { text-align: center; }
  .flow-copy p { margin-left: auto; margin-right: auto; }

  .fundador-copy { text-align: center; }
  .fundador-copy p { margin-left: auto; margin-right: auto; }
  .fundador-sign { text-align: center; }
}

@media (max-width: 600px) {
  /* Cards centralizados */
  .pillar,
  .perfil { text-align: center; }
  .incluso-item { flex-direction: column; align-items: center; text-align: center; }

  /* CTAs de largura total e em uma linha só (mais clicáveis e estéticos) */
  .hero-ctas { width: 100%; justify-content: center; }
  .hero-ctas .btn,
  .flow-copy .btn,
  .form-footer .btn { width: 100%; }
  /* dimensionados para o rótulo mais longo ("Experimente o Flow grátis por 7 dias")
     caber em uma linha dentro da margem, sem cortar texto */
  .btn { padding: 15px 14px; font-size: 14px; gap: 8px; }
  .btn--lg { padding: 17px 16px; font-size: 14.5px; }
  .btn svg { width: 16px; height: 16px; }

  /* Rodapé centralizado */
  .footer-inner { text-align: center; }
  .footer-brand img,
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { align-items: center; text-align: center; }
}

/* ============================================================
   Revisão mobile v2 — kickers ocultos, títulos/fontes menores,
   koi do hero centralizado, koi do form removido, rodapé enxuto
   ============================================================ */
@media (max-width: 600px) {
  /* 1) Esconde os kickers/eyebrows no mobile (ex.: "Escola de Educadores…") */
  .eyebrow { display: none; }

  /* 2) Títulos de seção um pouco menores → menos linhas */
  .hero h1 { font-size: 25px; line-height: 1.12; }
  .sh h2,
  .flow-copy h2 { font-size: 24px; line-height: 1.14; }
  .fundador-copy h2 { font-size: 22px; }

  /* 5) Revisão de fontes: textos de apoio menores no mobile */
  .hero-lead,
  .sh p,
  .flow-copy p { font-size: 16px; }
  .fundador-copy p { font-size: 15px; }
  .perfis-outro { font-size: 15px; }

  /* 3) Koi do hero centralizado entre o botão e o fim da seção
        (gap acima ≈ respiro abaixo → o símbolo fica no meio do espaço) */
  .hero-inner { gap: 76px; }
  .hero-visual { min-height: 360px; }

  /* 6) Rodapé enxuto e estreito no mobile: só logo + copyright + Política de Privacidade,
        com a faixa bem reduzida (≈60% menor), no tamanho da logo */
  .footer { padding: 10px 0 12px; }
  .footer-inner { margin-bottom: 4px; }
  .footer-brand p,
  .footer-socials,
  .footer-col { display: none; }
  .footer-brand img { display: block; height: 22px; margin: 0 auto; }
  .footer-bottom { padding-top: 6px; gap: 3px; border-top: 0; font-size: 11px; }
}
