/* =========================================================
   FORMAÇÃO EM ORATÓRIA ICL - Landing Page
   Premium dark UI · Fully responsive · Accessible
   ========================================================= */

:root {
  --bg-0: #020B18;
  --bg-1: #061528;
  --bg-2: #081E36;

  --blue: #006DFF;
  --blue-2: #008CFF;
  --cyan: #00C8FF;
  --cyan-2: #00E5FF;

  --white: #FFFFFF;
  --offwhite: #F4F7FB;

  --text: #E7ECF4;
  --muted: #AEBACB;
  --muted-2: #C3CCD8;

  --border: rgba(0, 200, 255, 0.22);
  --border-soft: rgba(255, 255, 255, 0.10);

  --card-1: rgba(7, 24, 45, 0.78);
  --card-2: rgba(9, 34, 62, 0.68);

  --grad-primary: linear-gradient(135deg, #006DFF 0%, #00C8FF 100%);
  --grad-text: linear-gradient(135deg, #00C8FF 0%, #00E5FF 60%, #ffffff 100%);
  --grad-card: linear-gradient(180deg, rgba(9,34,62,0.82), rgba(4,15,29,0.88));
  --shadow-blue: 0 0 28px rgba(0, 140, 255, 0.35);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);

  --max: 1240px;
  --radius: 22px;
  --radius-sm: 12px;

  --t-fast: 200ms ease;
  --t-mid: 320ms cubic-bezier(.2,.7,.2,1);

  --font-head: "Montserrat", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(1100px 700px at 80% -10%, rgba(0,140,255,0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(0,200,255,0.10), transparent 60%),
    linear-gradient(180deg, #020B18 0%, #03101F 50%, #020B18 100%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-weight: 800;
}
p { color: var(--muted); }
::selection { background: rgba(0,200,255,0.32); color: var(--white); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  padding: 8px 14px;
  border: 1px solid rgba(0,200,255,0.28);
  border-radius: 99px;
  background: rgba(0,200,255,0.06);
  margin-bottom: 18px;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 9999;
  border-radius: 6px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  transition: transform var(--t-mid), box-shadow var(--t-mid), background var(--t-mid), border-color var(--t-mid), color var(--t-mid);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  line-height: 1.1;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(0,140,255,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-secondary {
  background: rgba(255,255,255,0.02);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan-2);
  box-shadow: 0 0 24px rgba(0,200,255,0.18);
  transform: translateY(-2px);
}
.btn-lg { font-size: 16px; padding: 19px 34px; }
.btn-block { display: flex; width: 100%; }
.btn:focus-visible { outline: 2px solid var(--cyan-2); outline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  background: rgba(2, 11, 24, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-mid), height var(--t-mid), border-color var(--t-mid);
}
.site-header.scrolled {
  background: rgba(2, 11, 24, 0.85);
  height: 76px;
  border-bottom-color: rgba(0,200,255,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  color: var(--white);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grad-primary);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
  box-shadow: 0 0 18px rgba(0,140,255,0.45);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 15px; letter-spacing: 0.18em; }
.brand-text em { font-style: normal; font-size: 11px; letter-spacing: 0.22em; color: var(--muted-2); text-transform: uppercase; }

.primary-nav ul {
  display: flex;
  gap: 28px;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-2);
  position: relative;
  padding: 6px 2px;
  transition: color var(--t-fast);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
  border-radius: 2px;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.btn-header { padding: 13px 22px; font-size: 13.5px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast), top var(--t-mid);
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 11, 24, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 32px 24px 40px;
  display: none;
  flex-direction: column;
  gap: 18px;
  z-index: 99;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(0.15) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2,11,24,0.55) 0%, rgba(2,11,24,0.78) 60%, rgba(2,11,24,0.96) 100%),
    linear-gradient(90deg, rgba(2,11,24,0.95) 0%, rgba(2,11,24,0.55) 55%, rgba(2,11,24,0.25) 100%),
    radial-gradient(800px 500px at 75% 35%, rgba(0,140,255,0.22), transparent 70%);
}
.hero-inner { position: relative; max-width: 880px; }
.hero-title {
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 18ch;
}
.hero-sub {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 60ch;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-actions.center { justify-content: center; }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(7,24,45,0.78), rgba(4,15,29,0.78));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}
.hero-strip li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 6px;
}
.hero-strip li + li { border-left: 1px solid rgba(255,255,255,0.06); padding-left: 18px; }
.hero-strip svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
  flex: 0 0 28px;
  margin-top: 2px;
}
.hero-strip strong {
  display: block;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-strip span { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ---------- Section base ---------- */
.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 70px);
  text-align: center;
}
.section-head h2,
.col-text h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  margin-bottom: 18px;
  line-height: 1.08;
}
.section-head p { font-size: 17px; color: var(--muted); }

/* ---------- Two columns ---------- */
.two-cols {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.two-cols.reverse { grid-template-columns: 1fr 1.05fr; }
.two-cols.reverse .col-img { order: 1; }
.two-cols.reverse .col-text { order: 2; }
.col-text p + p { margin-top: 14px; }
.col-text { max-width: 56ch; }
.col-img { position: relative; }
.col-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,200,255,0.06);
  filter: contrast(1.04) saturate(0.95);
}
.col-img.portrait img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%; }
.col-img:not(.portrait) img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center 20%; }
.img-glow {
  position: absolute;
  inset: -10% -8% auto auto;
  width: 60%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(0,200,255,0.30), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  border-radius: 50%;
}

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: var(--grad-card);
  border: 1px solid rgba(0,200,255,0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.6), transparent);
  opacity: 0.4;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,200,255,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,140,255,0.18);
}
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,109,255,0.18), rgba(0,200,255,0.10));
  border: 1px solid rgba(0,200,255,0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cyan);
  box-shadow: inset 0 0 18px rgba(0,200,255,0.10);
}
.card-icon svg { width: 28px; height: 28px; }

/* Benefits */
.card-benefit { padding-top: 38px; }
.card-benefit .num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  opacity: 0.85;
}

/* Modules */
.module-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 12px;
  border: 1px solid rgba(0,200,255,0.32);
  border-radius: 99px;
  margin-bottom: 18px;
  background: rgba(0,200,255,0.05);
}
.module h3 { font-size: 22px; margin-bottom: 12px; }
.modules-grid { gap: 24px; }
.modules-footer {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--muted-2);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.modules-footer strong { color: var(--white); }

/* Check list */
.check-list { display: grid; gap: 14px; margin-top: 6px; }
.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(0,109,255,0.32), rgba(0,200,255,0.18));
  border: 1px solid rgba(0,200,255,0.4);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--cyan-2);
  border-bottom: 2px solid var(--cyan-2);
  transform: rotate(-45deg);
}
.check-list.compact li { padding-left: 30px; font-size: 15px; }
.check-list.compact li::before { width: 18px; height: 18px; top: 4px; }
.check-list.compact li::after { left: 4px; top: 8px; width: 8px; height: 4px; }

/* Timeline */
.timeline { display: grid; gap: 18px; margin-top: 28px; padding-left: 4px; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,200,255,0.6), transparent);
}
.timeline li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 16px;
}
.timeline .dot {
  width: 14px; height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 14px rgba(0,200,255,0.7), inset 0 0 0 3px var(--bg-0);
}
.timeline strong { display: block; font-family: var(--font-head); color: var(--white); font-size: 17px; margin-bottom: 2px; }
.timeline em { font-style: normal; font-size: 15px; color: var(--muted); }

/* Pull quote */
.pull-quote {
  position: relative;
  margin: 28px 0;
  padding: 22px 26px 22px 30px;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, rgba(0,200,255,0.10) 0%, rgba(0,200,255,0.02) 80%, transparent 100%);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-head);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  font-style: italic;
  letter-spacing: -0.005em;
}
.pull-quote .pull-mark {
  position: absolute;
  top: -10px;
  left: 14px;
  font-size: 56px;
  font-style: normal;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.metrics li {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(7,24,45,0.55);
  border: 1px solid var(--border-soft);
}
.metrics strong {
  display: block;
  font-family: var(--font-head);
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.metrics span { font-size: 15px; color: var(--muted-2); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.gallery figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform var(--t-mid), filter var(--t-mid);
}
.gallery figure:hover img { transform: scale(1.04); filter: brightness(1) contrast(1.08); }
.gallery .g-1 { grid-column: 1; grid-row: 1 / span 2; }
.gallery .g-2 { grid-column: 2; grid-row: 1; }
.gallery .g-3 { grid-column: 3; grid-row: 1; }
.gallery .g-4 { grid-column: 2 / span 2; grid-row: 2; }

/* ---------- Section accents ---------- */
.section-positioning,
.section-methodology,
.section-practice,
.section-instructor {
  background: linear-gradient(180deg, rgba(8,30,54,0) 0%, rgba(8,30,54,0.4) 50%, rgba(8,30,54,0) 100%);
}
.section-audience,
.section-benefits,
.section-modules,
.section-social,
.section-faq {
  background: linear-gradient(180deg, rgba(2,11,24,0) 0%, rgba(2,11,24,0.4) 100%);
}

/* ---------- Shorts (Veja no palco) ---------- */
.section-shorts { padding-bottom: clamp(40px, 5vw, 70px); }
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.short-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  cursor: pointer;
  padding: 0;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  isolation: isolate;
}
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter var(--t-mid);
  filter: brightness(0.85) contrast(1.05);
}
.short-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(2,11,24,0.65) 100%);
  pointer-events: none;
}
.short-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--grad-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 30px rgba(0,140,255,0.55), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  pointer-events: none;
}
.short-play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0,200,255,0.35);
  animation: short-pulse 2.4s ease-out infinite;
}
@keyframes short-pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}
.short-play svg { width: 26px; height: 26px; margin-left: 3px; }
.short-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,255,0.55);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), 0 0 36px rgba(0,140,255,0.22);
}
.short-card:hover img { transform: scale(1.06); filter: brightness(1) contrast(1.1); }
.short-card:hover .short-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 40px rgba(0,140,255,0.7), inset 0 1px 0 rgba(255,255,255,0.35);
}
.short-card:focus-visible {
  outline: 2px solid var(--cyan-2);
  outline-offset: 3px;
}
.short-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 10px;
  border-radius: 99px;
  background: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
}
.short-card.is-playing > img,
.short-card.is-playing > .short-overlay,
.short-card.is-playing > .short-play,
.short-card.is-playing > .short-tag { display: none; }
.short-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1100px) {
  .shorts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .shorts-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding: 0;
    margin: 0;
    gap: 20px;
  }
  .short-card {
    flex: unset;
    scroll-snap-align: unset;
  }
}

/* ---------- CTA Section ---------- */
.section-cta {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 11vw, 160px) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.6) brightness(0.45) contrast(1.1) hue-rotate(180deg);
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(800px 500px at 50% 50%, rgba(0,140,255,0.22), transparent 65%),
    linear-gradient(180deg, rgba(2,11,24,0.85), rgba(2,11,24,0.95));
}
.cta-inner {
  text-align: center;
  max-width: 820px;
}
.cta-inner h2 {
  font-size: clamp(34px, 4.3vw, 60px);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.cta-inner p { font-size: 18px; color: var(--muted-2); margin-bottom: 38px; }

/* ---------- Form / Análise de perfil ---------- */
.section-form { padding-top: clamp(40px, 5vw, 70px); }
.form-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(9,34,62,0.92), rgba(4,15,29,0.96));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 60px rgba(0,140,255,0.10);
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,0.7), transparent);
}
.form-card::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 70%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(0,200,255,0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.form-card > * { position: relative; z-index: 1; }
.form-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.form-intro h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.form-intro p { font-size: 16px; color: var(--muted); }

.lead-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.field input,
.field textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 16px 18px;
  background: rgba(2,11,24,0.65);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: var(--white);
  outline: none;
  width: 100%;
  transition: border-color var(--t-mid), box-shadow var(--t-mid), background var(--t-mid);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(174,186,203,0.5); }
.field input:hover,
.field textarea:hover {
  border-color: rgba(0,200,255,0.32);
  background: rgba(2,11,24,0.85);
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(0,200,255,0.7);
  background: rgba(2,11,24,0.9);
  box-shadow: 0 0 0 4px rgba(0,200,255,0.12);
}
.field.has-error input,
.field.has-error textarea {
  border-color: rgba(255,110,110,0.6);
  box-shadow: 0 0 0 4px rgba(255,110,110,0.10);
}
.field-error {
  display: block;
  font-size: 13px;
  color: #ff8585;
  min-height: 0;
  transition: min-height var(--t-fast);
}
.field.has-error .field-error { min-height: 18px; }

.btn-submit {
  position: relative;
  margin-top: 8px;
  width: 100%;
  padding: 19px 28px;
  font-size: 16px;
  letter-spacing: 0.01em;
}
.btn-submit .btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform var(--t-mid);
}
.btn-submit:hover .btn-arrow { transform: translateX(4px); }
.btn-submit .btn-spinner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-submit.is-loading .btn-label,
.btn-submit.is-loading .btn-arrow { opacity: 0; }
.btn-submit.is-loading .btn-spinner { display: block; }
.btn-submit:disabled { cursor: not-allowed; opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-disclaimer {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .field-row { grid-template-columns: 1fr; gap: 18px; }
  .form-card { padding: 30px 22px; border-radius: 22px; }
  .form-intro { margin-bottom: 28px; }
  .field input,
  .field textarea { font-size: 16px; padding: 14px 16px; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--grad-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 0 28px;
  transition: border-color var(--t-mid), background var(--t-mid);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 8px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--cyan-2); outline-offset: 4px; }
.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,200,255,0.10);
  border: 1px solid rgba(0,200,255,0.28);
  transition: background var(--t-mid);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--cyan-2);
  border-radius: 2px;
  transition: transform var(--t-mid);
}
.faq-icon::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon { background: rgba(0,200,255,0.22); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item[open] { border-color: rgba(0,200,255,0.32); }
.faq-item p {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 70ch;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, rgba(2,11,24,0.4), rgba(2,11,24,1));
  border-top: 1px solid var(--border-soft);
  padding-top: 72px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand .brand-mark { margin-bottom: 16px; }
.footer-brand strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  color: var(--white);
}
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 32ch; }
.site-footer h4 {
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-nav ul,
.footer-contact ul { display: grid; gap: 10px; }
.footer-nav a,
.footer-contact a,
.footer-contact li { color: var(--muted-2); font-size: 15px; transition: color var(--t-fast); }
.footer-nav a:hover,
.footer-contact a:hover { color: var(--cyan-2); }

.social-list { display: flex; gap: 12px; }
.social-list a {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--muted-2);
  transition: all var(--t-mid);
}
.social-list svg { width: 20px; height: 20px; }
.social-list a:hover {
  border-color: var(--cyan);
  color: var(--cyan-2);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(0,200,255,0.22);
}
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ebe5d, #0fa84a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 80;
  box-shadow: 0 12px 30px rgba(15,168,74,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 38px rgba(15,168,74,0.55); }
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(30,190,93,0.45);
  animation: pulse 2.4s infinite ease-out;
}
@keyframes pulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-strip li + li { border-left: 0; padding-left: 6px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid .footer-social { grid-column: span 3; }
}
@media (max-width: 960px) {
  .primary-nav,
  .btn-header { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .two-cols,
  .two-cols.reverse { grid-template-columns: 1fr; }
  .two-cols.reverse .col-img { order: -1; }
  .col-text { max-width: none; }
  .hero { min-height: auto; padding-top: 130px; padding-bottom: 60px; }
  .hero-bg img { object-position: center 30%; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
    gap: 12px;
  }
  .gallery .g-1 { grid-column: 1 / span 2; grid-row: 1; }
  .gallery .g-2 { grid-column: 1 / span 1; grid-row: 2; }
  .gallery .g-3 { grid-column: 2 / span 1; grid-row: 2; }
  .gallery .g-4 { grid-column: 1 / span 2; grid-row: 3; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-head p { font-size: 16px; }
  .grid-4,
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; padding-bottom: 56px; }
  .hero-title { font-size: clamp(34px, 8.6vw, 46px); }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; padding: 16px 18px; font-size: 14.5px; white-space: normal; }
  /* hero strip: 2×2 grid (saves ~200px of vertical space vs 4 stacked) */
  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 18px;
    gap: 0;
  }
  .hero-strip li { padding: 12px 10px; }
  .hero-strip li + li { padding: 12px 10px; border: none; }
  .hero-strip li:nth-child(2),
  .hero-strip li:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.06); }
  .hero-strip li:nth-child(3),
  .hero-strip li:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; }
  .section-head h2,
  .col-text h2 { font-size: clamp(28px, 7.4vw, 36px); }
  /* portrait less tall on mobile (landscape crop keeps face visible) */
  .col-img.portrait img { aspect-ratio: 4 / 3; }
  .site-footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid .footer-social { grid-column: auto; }
  .card { padding: 26px 22px; }
  .card-benefit .num { font-size: 24px; top: 18px; right: 20px; }
  /* gallery: 2×2 grid instead of 4 stacked (saves ~480px of scroll) */
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 10px;
  }
  .gallery .g-1,
  .gallery .g-2,
  .gallery .g-3,
  .gallery .g-4 { grid-column: auto; grid-row: auto; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .faq-item { padding: 0 20px; }
  .faq-item summary { font-size: 15.5px; padding: 18px 0; gap: 14px; }
}

@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .hero-title { font-size: clamp(30px, 8vw, 36px); }
  .hero-sub { font-size: 15px; }
  .eyebrow { font-size: 11px; letter-spacing: 1.5px; padding: 6px 12px; }
  .card { padding: 22px 16px; }
  .form-card { padding: 26px 18px; }
  .faq-item { padding: 0 16px; }
  .metrics li { padding: 14px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
