@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Montaser Arabic';
  src: url('../assets/fonts/MontaserArabic-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montaser Arabic';
  src: url('../assets/fonts/MontaserArabic-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montaser Arabic';
  src: url('../assets/fonts/MontaserArabic-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montaser Arabic';
  src: url('../assets/fonts/MontaserArabic-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montaser Arabic';
  src: url('../assets/fonts/MontaserArabic-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montaser Arabic';
  src: url('../assets/fonts/MontaserArabic-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --white: #ffffff;
  --off: #f5f4f1;
  --silver: #c8c8c8;
  --accent: #ff3355;
  --line: rgba(255,255,255,.14);
  --line-soft: rgba(255,255,255,.08);
  --line-dark: rgba(0,0,0,.14);
  --max: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
  --font-display: 'Montaser Arabic', 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --font-ui: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: soft-light;
  z-index: 999;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(54px, 10vw, 152px);
  line-height: .82;
  letter-spacing: -.085em;
  max-width: 1000px;
}

h2 {
  font-size: clamp(38px, 6vw, 90px);
  line-height: .88;
  letter-spacing: -.066em;
  max-width: 900px;
}

h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: .98;
  letter-spacing: -.045em;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.section {
  isolation: isolate;
  position: relative;
  padding: 148px 22px;
}

.section-tight {
  border-top: 1px solid rgba(255,255,255,.04);
  overflow: hidden;
  position: relative;
  padding: 92px 22px;
}

.light {
  position: relative;
  background: var(--off);
  overflow: hidden;
  color: var(--black);
}

.light::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,51,85,.05), transparent 70%);
  pointer-events: none;
}

.kicker {
  position: relative;
  font-family: var(--font-ui);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  margin-right: 10px;
  vertical-align: middle;
  opacity: .6;
}

.lead {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.16;
  letter-spacing: -.035em;
  max-width: 780px;
  color: var(--silver);
}

.text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.74);
  max-width: 740px;
}

.text-dark { color: rgba(0,0,0,.66); }

.nav {
  transition: background .45s var(--ease), border-color .45s var(--ease);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(5,5,5,.86), rgba(5,5,5,.64));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.nav.is-scrolled { background: rgba(5,5,5,.9); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: .9;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.34);
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -.06em;
  color: var(--white);
}

.logo-text {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.05em;
  text-transform: uppercase;
  font-size: 17px;
}

.logo-text em {
  font-style: normal;
  color: var(--silver);
  font-weight: 400;
  letter-spacing: -.03em;
}

.nav-links {
  font-family: var(--font-ui);
  display: flex;
  gap: 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--silver);
}

.nav-links a {
  position: relative;
  opacity: .76;
  transition: opacity .35s var(--ease), color .35s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { opacity: 1; color: var(--white); }

.btn {
  position: relative;
  overflow: hidden;
  font-family: var(--font-ui);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 20px;
  border: 1px solid rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  transition: all .42s var(--ease);
  cursor: pointer;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 160px 22px 54px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.66), rgba(5,5,5,.28)),
    radial-gradient(circle at 86% 18%, rgba(255,51,85,.26), transparent 32%),
    radial-gradient(circle at 50% 120%, rgba(255,255,255,.07), transparent 42%),
    linear-gradient(to top, rgba(0,0,0,.78), transparent 34%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: soft-light;
}

.hero-video,
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: -3;
  opacity: .68;
}

.hero-media {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 24%, rgba(255,51,85,.14), transparent 24%),
    radial-gradient(circle at 24% 82%, rgba(255,255,255,.06), transparent 28%),
    linear-gradient(135deg, #111, #343434 45%, #0a0a0a);
}

.hero-grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 64px;
}

.hero-logo {
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  border: 1px solid rgba(255,255,255,.22);
  padding: 14px 18px 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.055em;
  font-size: clamp(26px, 4vw, 54px);
  line-height: .82;
  font-weight: 900;
  color: rgba(255,255,255,.9);
  box-shadow: 0 0 120px rgba(255,255,255,.03);
}

.hero-bottom {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding-top: 34px;
}

.hero-bottom p {
  max-width: 610px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.55;
}

.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat {
  transition: background .35s var(--ease), transform .35s var(--ease);
  padding: 30px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat:hover { background: rgba(255,255,255,.025); transform: translateY(-2px); }

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 60px);
  line-height: .9;
  letter-spacing: -.06em;
  color: var(--white);
}

.stat span {
  display: block;
  margin-top: 12px;
  color: var(--silver);
  font-family: var(--font-ui);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.card {
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  border: 1px solid var(--line);
  padding: 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.03);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.045);
}

.light .card {
  border-color: var(--line-dark);
  background: rgba(255,255,255,.52);
}

.card h3 { font-size: 28px; }

.card p {
  margin-top: 22px;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.55;
}

.light .card p { color: rgba(0,0,0,.62); }

.accordion {
  position: relative;
  border-top: 1px solid currentColor;
  margin-top: 46px;
}

details {
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 0;
}

.light details { border-bottom-color: rgba(0,0,0,.16); }

summary {
  will-change: transform;
  font-family: var(--font-display);
  list-style: none;
  cursor: pointer;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 18px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: -.04em;
  font-size: clamp(28px, 4vw, 64px);
  line-height: .9;
  font-weight: 900;
  transition: color .35s var(--ease), transform .35s var(--ease);
}

summary:hover { color: var(--accent); transform: translateX(2px); }
summary::-webkit-details-marker { display: none; }

summary .num {
  font-family: var(--font-ui);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .12em;
  align-self: start;
  padding-top: 8px;
}

summary .plus {
  color: var(--accent);
  font-size: 38px;
  font-weight: 300;
  transform: rotate(0deg);
  transition: transform .3s var(--ease);
}

details[open] .plus { transform: rotate(45deg); }

.accordion-content {
  opacity: .92;
  position: relative;
  padding: 0 0 38px 60px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 52px;
  color: rgba(255,255,255,.72);
}

.accordion-content p {
  font-size: 16px;
  line-height: 1.6;
}

.light .accordion-content { color: rgba(0,0,0,.66); }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag {
  font-family: var(--font-ui);
  border: 1px solid rgba(255,255,255,.22);
  padding: 7px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--silver);
}

.light .tag {
  border-color: rgba(0,0,0,.18);
  color: rgba(0,0,0,.64);
}

.word-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 58px 0;
}

.word-cloud span {
  will-change: transform;
  font-family: var(--font-display);
  color: rgba(255,255,255,.78);
  letter-spacing: -.04em;
  line-height: .9;
  transition: color .28s var(--ease), transform .28s var(--ease);
}

.word-cloud span:hover { color: var(--accent); transform: translateY(-2px); }

.w-xl { font-size: clamp(42px, 7vw, 96px); font-weight: 900; }
.w-lg { font-size: clamp(34px, 5vw, 68px); font-weight: 800; }
.w-md { font-size: clamp(24px, 3vw, 42px); font-weight: 700; }
.w-sm { font-size: clamp(18px, 2vw, 26px); font-weight: 600; color: var(--silver) !important; }

.platform-intro,
.formats-intro {
  margin-top: 28px;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
}

.formats-intro {
  color: rgba(255,255,255,.74);
}

.presence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.presence-tags span {
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-ui);
  color: var(--silver);
}

.audience-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-strip p {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
  max-width: 1200px;
}

.logo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  overflow: hidden;
  border: 1px solid var(--line);
}

.logo-item {
  font-family: var(--font-ui);
  min-height: 92px;
  background: var(--black-soft);
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 16px;
  transition: color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}

.logo-item:hover {
  color: var(--white);
  background: #111;
  transform: translateY(-2px);
}

.video-grid {
  align-items: stretch;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-top: 46px;
}

.video-card {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
  min-height: 380px;
  border: 1px solid rgba(0,0,0,.16);
  background: linear-gradient(135deg, #1c1c1c, #080808);
  box-shadow: inset 0 0 120px rgba(255,255,255,.03);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-card video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.58));
  pointer-events: none;
}

.video-card > *:not(video) {
  position: relative;
  z-index: 2;
}

.video-card.small { min-height: 181px; }

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
}

.play {
  transition: transform .35s var(--ease), background .35s var(--ease);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.76);
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(0,0,0,.22);
}

.video-card:hover .play {
  transform: scale(1.08);
  background: rgba(255,51,85,.12);
}

.quote {
  position: relative;
  font-family: var(--font-display);
  border-left: 3px solid var(--accent);
  padding-left: 26px;
  font-size: clamp(28px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -.05em;
  max-width: 960px;
  padding-top: 8px;
  text-transform: uppercase;
}

.quote::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,.16);
}

.light .quote::before { background: rgba(0,0,0,.18); }

.founders {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.founder-card {
  transition: transform .4s var(--ease), border-color .4s var(--ease);
  border: 1px solid var(--line-dark);
  padding: 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.14));
}

.founder-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,.28);
}

.founder-card .role {
  font-family: var(--font-ui);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  margin: 12px 0 20px;
}

.footer {
  position: relative;
  padding: 130px 22px 90px;
  background: #000;
  border-top: 1px solid var(--line);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,51,85,.12), transparent 30%),
    radial-gradient(circle at 20% 100%, rgba(255,255,255,.04), transparent 34%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.footer > * { position: relative; z-index: 1; }

.footer-statement {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px,6vw,88px);
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
  max-width: 700px;
}

[data-reveal] {
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.hero h1,
.hero .lead,
.hero-bottom,
.stats {
  animation: heroFade 1.2s var(--ease) both;
}

.hero .lead { animation-delay: .12s; }
.hero-bottom { animation-delay: .2s; }
.stats { animation-delay: .32s; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}


/* === Rodada 2 — assets reais, vídeos e founders editoriais === */

.platform-video-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  margin-top: 60px;
}

.video-stack {
  display: grid;
  gap: 18px;
}

.video-card-featured {
  min-height: 560px;
}

.video-card-small {
  min-height: 271px;
}

.video-card .video-meta span,
.testimonial-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-card .video-meta h3 {
  max-width: 720px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid rgba(0,0,0,.16);
  background: #080808;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
  isolation: isolate;
}

.testimonial-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .56;
  z-index: 0;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.30) 55%, rgba(0,0,0,.06)),
    radial-gradient(circle at 80% 20%, rgba(255,51,85,.18), transparent 36%);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,.32);
}

.testimonial-copy {
  position: relative;
  z-index: 2;
}

.testimonial-copy h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: .92;
}

.testimonial-copy p {
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.founder-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 38px;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.76) 34%, rgba(0,0,0,.20) 72%, rgba(0,0,0,.04) 100%),
    radial-gradient(circle at 84% 18%, rgba(255,51,85,.16), transparent 36%);
}

.founder-card > * {
  position: relative;
  z-index: 1;
}

.founder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,.32);
}

.founder-card h3,
.founder-card p,
.founder-card a {
  color: var(--white);
}

.founder-card .text-dark {
  color: rgba(255,255,255,.76);
}

.founder-link {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255,255,255,.28);
  padding: 8px 11px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: border-color .35s var(--ease), color .35s var(--ease), background .35s var(--ease);
}

.founder-link:hover {
  border-color: var(--accent);
  background: rgba(255,51,85,.10);
  color: var(--white);
}

@media (max-width: 920px) {

  .platform-video-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .platform-video-grid {
    margin-top: 40px;
  }

  .video-card-featured,
  .video-card-small {
    min-height: 320px;
  }

  .testimonial-card {
    min-height: 520px;
  }

  .founder-card {
    min-height: 500px;
    padding: 28px;
  }

  .platform-intro,
  .formats-intro {
    font-size: 16px;
    margin-top: 22px;
  }

  .presence-tags span {
    font-size: 10px;
    padding: 8px 10px;
  }

  .audience-strip p {
    font-size: clamp(24px, 9vw, 42px);
  }

  .hero-grid { gap: 36px; }
  .hero-bottom p { font-size: 16px; }
  .word-cloud { gap: 10px 14px; padding: 36px 0; }
  .w-xl { font-size: clamp(32px, 11vw, 54px); }
  .w-lg { font-size: clamp(24px, 8vw, 40px); }
  .w-md { font-size: clamp(18px, 5vw, 28px); }
  .w-sm { font-size: 14px; }
  .card { min-height: auto; }
  .video-card { min-height: 280px; }
  .video-card.small { min-height: 180px; }
  .footer { padding: 100px 20px 70px; }
  .nav-links { display: none; }
  .nav-inner { padding: 12px 18px; }
  .hero { min-height: auto; padding: 132px 20px 48px; }
  .hero-bottom, .split, .accordion-content, .video-grid { grid-template-columns: 1fr; display: grid; }
  .hero-bottom { align-items: start; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .founders { grid-template-columns: 1fr; }
  .accordion-content { padding-left: 0; }
  summary { grid-template-columns: 34px 1fr 24px; }
  .section { padding: 86px 20px; }
  .section-tight { padding: 48px 20px; }
  h1 { font-size: clamp(50px, 17vw, 82px); }
  h2 { font-size: clamp(36px, 12vw, 58px); }
}


/* === V2 strategic narrative + premium polish === */

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-ghost {
  border-color: rgba(255,255,255,.28);
  color: rgba(255,255,255,.82);
}

.logo-section-intro {
  margin-top: 76px;
}

.logo-grid-curated {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.10);
}

.logo-grid-curated .logo-item {
  min-height: 108px;
  font-size: 13px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.72);
}

.logo-grid-curated .logo-item:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.testimonial-header {
  margin-top: 86px;
  max-width: 900px;
}

.testimonial-header h2 {
  max-width: 880px;
}

.video-card::before {
  background:
    linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.52) 52%, rgba(0,0,0,.14)),
    radial-gradient(circle at 80% 20%, rgba(255,51,85,.16), transparent 38%);
}

.video-card video {
  opacity: .38;
}

.video-card:hover video {
  opacity: .72;
}

.testimonial-card video {
  opacity: .50;
}

.testimonial-card:hover video {
  opacity: .70;
}

.play {
  width: 60px;
  height: 60px;
  font-size: 18px;
  background: rgba(0,0,0,.36);
}

.video-card .text {
  max-width: 620px;
}

.footer .lead {
  color: rgba(255,255,255,.84);
}

@media (min-width: 921px) {
  .hero h1 {
    font-size: clamp(50px, 9.2vw, 138px);
    line-height: .84;
  }

  .hero-grid {
    gap: 56px;
  }
}

@media (max-width: 920px) {
  .hero h1 {
    font-size: clamp(44px, 14.2vw, 68px) !important;
    line-height: .86 !important;
    letter-spacing: -.078em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .logo-grid-curated {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid-curated .logo-item {
    min-height: 78px;
    font-size: 10px;
  }

  .testimonial-header {
    margin-top: 58px;
  }

  .testimonial-header h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .word-cloud {
    margin-top: 44px;
  }

  .platform-video-grid {
    gap: 14px;
  }

  .testimonial-grid {
    gap: 14px;
  }

  .video-card,
  .testimonial-card {
    border-color: rgba(0,0,0,.22);
  }

  .play {
    width: 50px;
    height: 50px;
  }
}


/* V4 cleanup */

.agenda-timeline{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-top:52px;
}

.agenda-item{
padding:28px;
border:1px solid rgba(0,0,0,.08);
background:#fff;
}

.agenda-item span{
display:block;
margin-bottom:10px;
font-size:11px;
letter-spacing:.12em;
text-transform:uppercase;
color:#777;
}

.agenda-item h3{
font-size:26px;
line-height:1;
margin-bottom:8px;
}

.agenda-item p{
font-size:14px;
color:#555;
}

.lead{
font-size:clamp(20px,2vw,30px)!important;
line-height:1.28!important;
}

.text{
font-size:15px!important;
line-height:1.6!important;
}

h2{
max-width:1100px;
}

@media(max-width:920px){
.agenda-timeline{
grid-template-columns:1fr;
}
}


/* V5 editorial cleanup */

.activation-layer{
margin-bottom:48px;
padding:32px;
border:1px solid rgba(255,255,255,.08);
background:rgba(255,255,255,.02);
}

.activation-copy{
max-width:820px;
}

.activation-copy .text{
margin-top:12px;
color:rgba(255,255,255,.72);
}

.lead{
max-width:900px;
}

.text{
max-width:920px;
}

@media(max-width:920px){
.activation-layer{
margin-bottom:28px;
padding:22px;
}
}


/* v6 cleanup */

.logo-section-intro{
display:none;
}

.agenda-timeline{
grid-template-columns:repeat(3,1fr);
}

.agenda-item h3{
font-size:22px;
line-height:1.08;
}

@media(max-width:920px){
.agenda-timeline{
grid-template-columns:1fr;
}
}


/* === Ajustes finais consolidados === */

.section-subtitle {
  margin-top: 22px;
  max-width: 760px;
  color: rgba(255,255,255,.72);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
}

.light .section-subtitle {
  color: rgba(0,0,0,.64);
}

#participar .presence-tags {
  display: none !important;
}

/* Corrige enquadramento do vídeo da Master Class e mantém padrão dos demais */
.video-card video,
.testimonial-card video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Links na agenda */
.agenda-link {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: inherit;
  transition: color .35s var(--ease), transform .35s var(--ease);
}

.agenda-link span {
  font-family: var(--font-ui);
  font-size: .56em;
  color: var(--accent);
  transform: translateY(-.18em);
}

.agenda-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

/* Lightbox para vídeos */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-lightbox.is-open {
  display: flex;
}

.video-lightbox video {
  width: min(1180px, 92vw);
  max-height: 86vh;
  background: #000;
  object-fit: contain;
}

.video-lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.video-card,
.testimonial-card {
  cursor: pointer;
}

@media (max-width: 920px) {
  .section-subtitle {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 16px;
  }

  .video-lightbox {
    padding: 18px;
  }

  .video-lightbox video {
    width: 94vw;
    max-height: 78vh;
  }

  .footer .lead {
    font-size: 17px !important;
    line-height: 1.45 !important;
  }
}


/* === Mobile final polish / publicação === */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  :root {
    --mobile-pad: 20px;
  }

  body {
    overflow-x: hidden;
  }

  .wrap {
    width: 100%;
    max-width: 100%;
    padding-left: var(--mobile-pad);
    padding-right: var(--mobile-pad);
  }

  .nav-inner {
    padding: 13px 18px;
  }

  .brand {
    gap: 9px;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .logo-text {
    font-size: 18px;
    line-height: .88;
  }

  .nav .btn {
    min-height: 52px;
    padding: 13px 18px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 132px var(--mobile-pad) 52px;
  }

  .hero-grid {
    gap: 34px;
    width: 100%;
  }

  .hero-logo {
    font-size: 30px;
    max-width: calc(100vw - 40px);
  }

  h1,
  h2 {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: none;
  }

  h1 {
    font-size: clamp(46px, 15vw, 74px) !important;
    line-height: .88 !important;
    letter-spacing: -.065em !important;
  }

  h2 {
    font-size: clamp(42px, 13.2vw, 68px) !important;
    line-height: .9 !important;
    letter-spacing: -.06em !important;
  }

  h3 {
    font-size: clamp(26px, 8.5vw, 40px);
    line-height: .96;
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding: 42px 0;
  }

  .split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .kicker {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .14em;
    margin-bottom: 18px;
  }

  .lead {
    font-size: 21px !important;
    line-height: 1.35 !important;
    letter-spacing: -.03em;
    max-width: 100%;
  }

  .text,
  .platform-intro,
  .formats-intro {
    font-size: 15.5px !important;
    line-height: 1.62 !important;
    max-width: 100%;
  }

  .section-subtitle {
    margin-top: 20px;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
  }

  .hero-bottom p {
    font-size: 16px;
    line-height: 1.58;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .footer .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-left: var(--mobile-pad);
    margin-right: var(--mobile-pad);
  }

  .stat {
    padding: 28px 20px;
  }

  .stat strong {
    font-size: 48px;
  }

  .stat span {
    font-size: 10.5px;
    line-height: 1.25;
  }

  .grid-3,
  .founders,
  .platform-video-grid,
  .video-grid,
  .testimonial-grid,
  .logo-grid,
  .logo-grid-curated {
    grid-template-columns: 1fr !important;
  }

  .card {
    min-height: auto;
    padding: 26px;
  }

  .card h3 {
    font-size: 27px;
  }

  .accordion {
    margin-top: 42px;
  }

  summary {
    grid-template-columns: 40px minmax(0,1fr) 24px;
    gap: 14px;
    padding: 26px 0;
    font-size: clamp(31px, 10.5vw, 48px) !important;
    line-height: .92 !important;
    letter-spacing: -.055em !important;
    overflow-wrap: anywhere;
  }

  summary .num {
    font-size: 12px;
    padding-top: 6px;
  }

  summary .plus {
    font-size: 34px;
  }

  .accordion-content {
    display: block;
    padding: 0 0 34px 54px;
  }

  .accordion-content p {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .tag-row {
    gap: 8px;
  }

  .tag {
    font-size: 10px;
    line-height: 1.2;
    padding: 8px 10px;
  }

  .platform-video-grid {
    gap: 14px;
    margin-top: 40px;
  }

  .video-stack {
    gap: 14px;
  }

  .video-card-featured,
  .video-card-small,
  .video-card {
    min-height: 310px;
  }

  .video-card .video-meta h3 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .video-card .text {
    font-size: 14.5px !important;
  }

  .testimonial-header {
    margin-top: 64px;
  }

  .testimonial-card {
    min-height: 460px;
  }

  .testimonial-copy h3 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .founder-card {
    min-height: 520px;
    padding: 28px;
  }

  .logo-grid-curated .logo-item,
  .logo-item {
    min-height: 78px;
    font-size: 10.5px;
  }

  .quote {
    font-size: clamp(34px, 11vw, 54px);
    line-height: .94;
    max-width: 100%;
  }

  .agenda-link {
    gap: 8px;
    overflow-wrap: anywhere;
  }

  .footer {
    padding: 86px 0 64px;
  }

  .footer .lead {
    font-size: 18px !important;
    line-height: 1.5 !important;
  }

  .footer .tag-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer .tag {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(43px, 14.2vw, 60px) !important;
  }

  h2 {
    font-size: clamp(38px, 12.2vw, 58px) !important;
  }

  summary {
    font-size: clamp(28px, 9.6vw, 42px) !important;
  }

  .nav .btn {
    padding-left: 14px;
    padding-right: 14px;
  }
}


/* === Correção mobile: quebras de palavra e títulos === */

@media (max-width: 768px) {
  h1,
  h2,
  h3,
  summary,
  .quote,
  .agenda-link,
  .footer-statement {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  h1 {
    font-size: clamp(40px, 12.6vw, 60px) !important;
    line-height: .92 !important;
    letter-spacing: -.055em !important;
  }

  h2 {
    font-size: clamp(36px, 11.2vw, 56px) !important;
    line-height: .93 !important;
    letter-spacing: -.052em !important;
  }

  .section h2,
  .section-dark h2 {
    max-width: 100%;
  }

  /* Títulos muito longos precisam respirar mais no mobile */
  #formatos h2,
  #participar h2,
  #experiencia h2,
  #agenda h2 {
    font-size: clamp(34px, 10.4vw, 52px) !important;
    line-height: .94 !important;
    letter-spacing: -.048em !important;
  }

  .section-subtitle,
  .lead,
  .text {
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  summary {
    grid-template-columns: 34px minmax(0, 1fr) 24px !important;
    gap: 12px !important;
    font-size: clamp(27px, 8.4vw, 39px) !important;
    line-height: .96 !important;
    letter-spacing: -.044em !important;
  }

  summary span:nth-child(2) {
    min-width: 0;
  }

  summary .num {
    font-size: 11px !important;
    padding-top: 5px !important;
  }

  summary .plus {
    font-size: 31px !important;
  }

  .accordion-content {
    padding-left: 46px !important;
  }

  .accordion-content p {
    font-size: 15px !important;
    line-height: 1.62 !important;
  }

  .agenda-link {
    display: inline !important;
    font-size: clamp(28px, 8.4vw, 40px) !important;
    line-height: .96 !important;
  }

  .agenda-link span {
    display: inline-block;
    margin-left: 8px;
    font-size: .52em !important;
    vertical-align: top;
  }

  .video-card .video-meta h3,
  .testimonial-copy h3,
  .card h3 {
    font-size: clamp(24px, 7.4vw, 34px) !important;
    line-height: .98 !important;
  }

  .founder-copy h3 {
    font-size: clamp(27px, 8vw, 38px) !important;
  }

  .quote {
    font-size: clamp(30px, 9.2vw, 46px) !important;
    line-height: .98 !important;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(38px, 11.8vw, 54px) !important;
  }

  h2,
  #formatos h2,
  #participar h2,
  #experiencia h2,
  #agenda h2 {
    font-size: clamp(32px, 9.8vw, 48px) !important;
  }

  summary {
    font-size: clamp(25px, 7.8vw, 36px) !important;
  }

  .agenda-link {
    font-size: clamp(26px, 7.8vw, 36px) !important;
  }
}


/* === Correção mobile v2: evitar corte lateral sem quebrar palavras === */

@media (max-width: 768px) {
  h1,
  h2 {
    max-width: calc(100vw - 48px) !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  h1 {
    font-size: clamp(34px, 9.6vw, 48px) !important;
    line-height: .96 !important;
    letter-spacing: -.045em !important;
  }

  h2 {
    font-size: clamp(34px, 9.8vw, 50px) !important;
    line-height: .96 !important;
    letter-spacing: -.046em !important;
  }

  .light h1,
  .light h2 {
    font-size: clamp(33px, 9.2vw, 46px) !important;
    line-height: .98 !important;
    letter-spacing: -.042em !important;
  }

  #formatos h2,
  #participar h2,
  #experiencia h2,
  #agenda h2 {
    font-size: clamp(32px, 9.2vw, 46px) !important;
    line-height: .98 !important;
    letter-spacing: -.042em !important;
  }

  .section .wrap,
  .section-dark .wrap,
  .light .wrap {
    overflow: hidden;
  }
}

@media (max-width: 390px) {
  h1,
  h2,
  .light h1,
  .light h2,
  #formatos h2,
  #participar h2,
  #experiencia h2,
  #agenda h2 {
    font-size: clamp(31px, 8.7vw, 42px) !important;
    line-height: .99 !important;
    letter-spacing: -.04em !important;
  }
}


/* === Correção hero mobile: manter impacto sem quebrar layout === */

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(52px, 15.2vw, 74px) !important;
    line-height: .88 !important;
    letter-spacing: -.062em !important;
    max-width: 100% !important;
    width: 100% !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .hero .wrap,
  .hero-grid,
  .hero-content {
    overflow: visible !important;
  }

  .hero {
    overflow: hidden !important;
  }

  .hero .kicker {
    max-width: 100%;
    font-size: 11px !important;
    line-height: 1.35 !important;
    letter-spacing: .14em !important;
  }

  .hero-logo {
    max-width: 100% !important;
    font-size: clamp(26px, 8vw, 34px) !important;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(48px, 14.2vw, 66px) !important;
    line-height: .89 !important;
    letter-spacing: -.058em !important;
  }
}


/* === Ajuste de textos longos nas seções explicativas === */
.accordion-content p {
  max-width: 880px;
}

@media (max-width: 768px) {
  .accordion-content p {
    max-width: 100%;
  }
}

/* === Logos em imagem — seção Rede & conexões === */

.logo-grid.logo-grid-curated {
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
}

.logo-grid.logo-grid-curated .logo-item {
  min-height: 108px;
  background: rgba(255,255,255,.025);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 0;
}

.logo-grid.logo-grid-curated .logo-item img {
  display: block;
  max-width: 150px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .88;
}

.logo-grid.logo-grid-curated .logo-item:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .logo-grid.logo-grid-curated {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .logo-grid.logo-grid-curated .logo-item {
    min-height: 82px;
    padding: 16px;
  }

  .logo-grid.logo-grid-curated .logo-item img {
    max-width: 112px;
    max-height: 32px;
  }
}

