/* =========================================================
   TYPRESS — Assessoria de Imprensa
   Landing page · folha de estilo principal
   ========================================================= */

/* ---- Tokens ---- */
:root {
  --bg:            #0B0A0D;
  --bg-alt:        #0E0C11;
  --bg-card:       #0B0A0D;
  --bg-card-hover: #100E13;
  --text:          #F4F1EF;
  --text-strong:   #F7F4F2;
  --text-muted:    #A8A2AC;
  --text-faint:    #8E8894;
  --line:          rgba(255,255,255,0.07);
  --line-2:        rgba(255,255,255,0.12);
  --pink:          #F53E7C;
  --grad:          linear-gradient(112deg, #FF7A3D 0%, #F53E7C 50%, #E30C97 100%);
  --grad-soft:     linear-gradient(112deg, #FF7A3D, #E30C97);
  --serif:  'Newsreader', Georgia, serif;
  --sans:   'Instrument Sans', system-ui, sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, monospace;
  --maxw:   1240px;
  --pad:    clamp(20px, 5vw, 56px);
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
::selection { background: var(--pink); color: #fff; }

@keyframes floatGlow {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .9; }
  50%      { transform: translate(-3%,4%) scale(1.08); opacity: 1; }
}

/* ---- Helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.grad-text {
  background: var(--grad-soft);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-em { font-style: italic; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; font-size: 16px; }
.btn-grad {
  padding: 16px 30px;
  font-weight: 600;
  background: var(--grad);
  color: #fff;
  transition: filter .2s, transform .2s;
}
.btn-grad:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-grad .arrow { font-family: var(--mono); }
.btn-outline {
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #EDEAEE;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.03); }

/* =========================================================
   NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,10,13,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 16px; padding-bottom: 16px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 14.5px; letter-spacing: 0.01em; }
.nav-links a { color: #C9C3CC; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  font-family: var(--mono);
  font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 999px;
  background: var(--grad); color: #fff; font-weight: 500; white-space: nowrap;
  transition: filter .2s;
}
.nav-cta:hover { filter: brightness(1.08); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-top: clamp(70px,11vw,150px); padding-bottom: clamp(80px,10vw,140px); }
.hero-glow {
  position: absolute; top: -4%; right: -6%;
  width: 640px; height: 640px; max-width: 70vw; pointer-events: none;
  background: radial-gradient(circle at center, rgba(245,62,124,0.42), rgba(227,12,151,0.10) 45%, transparent 68%);
  filter: blur(20px);
  animation: floatGlow 11s ease-in-out infinite;
}
.hero-symbol {
  position: absolute; top: 8%; right: 2%;
  width: min(420px, 42vw); opacity: 0.16; pointer-events: none; filter: saturate(1.1);
}
.hero-inner { position: relative; max-width: 880px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: #B7B1BA; margin-bottom: 34px;
}
.hero-kicker .rule { width: 26px; height: 1px; background: linear-gradient(90deg, #FF7A3D, #E30C97); }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(42px,6.8vw,88px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--text-strong); margin-bottom: 30px; text-wrap: balance;
}
.hero p {
  font-size: clamp(18px,2.1vw,21px); line-height: 1.55; color: #B8B2BB;
  max-width: 600px; margin-bottom: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* =========================================================
   99% IMPACT
   ========================================================= */
.impact { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.impact-grid {
  padding-top: clamp(64px,9vw,120px); padding-bottom: clamp(64px,9vw,120px);
  display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: clamp(32px,6vw,80px); align-items: center;
}
.impact-num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(120px,20vw,240px); line-height: 1; letter-spacing: -0.04em;
  font-variant-numeric: lining-nums; font-feature-settings: 'lnum' 1;
  padding: 0.06em 0.04em 0.1em 0;
  background: linear-gradient(150deg, #FF7A3D 0%, #F53E7C 48%, #E30C97 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.impact-lead {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(26px,3.6vw,40px); line-height: 1.25; letter-spacing: -0.01em; color: #EDE9EC;
  margin-top: 18px;
}
.impact-lead em { font-style: italic; color: var(--pink); }
.impact-sub { margin-top: 22px; color: #A29CA6; max-width: 460px; }

/* =========================================================
   QUEM SOMOS
   ========================================================= */
.about { padding-top: clamp(80px,11vw,150px); padding-bottom: clamp(80px,11vw,150px); }
.about-grid { display: grid; grid-template-columns: minmax(0,0.42fr) minmax(0,0.58fr); gap: clamp(32px,6vw,90px); }
.about-quote {
  display: inline-block; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px,2.6vw,30px); line-height: 1.3; color: var(--pink);
  border-left: 2px solid; border-image: linear-gradient(#FF7A3D, #E30C97) 1; padding-left: 22px;
  margin-top: 22px;
}
.about-quote span { color: #EDE9EC; }
.about-lead {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(24px,3.1vw,34px); line-height: 1.32; letter-spacing: -0.01em; color: #EEEAED;
  margin-bottom: 32px; text-wrap: pretty;
}
.about p.body { color: var(--text-muted); font-size: 17.5px; margin-bottom: 20px; max-width: 560px; }
.about-focus { color: #EDE9EC; font-size: clamp(21px,2.5vw,26px); line-height: 1.35; max-width: 600px; }
.about-focus strong { font-weight: 600; font-size: 1.35em; }

/* =========================================================
   FUNDADORA
   ========================================================= */
.founder { background: var(--bg-alt); border-top: 1px solid var(--line); }
.founder-grid {
  padding-top: clamp(80px,11vw,150px); padding-bottom: clamp(80px,11vw,150px);
  display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: clamp(40px,6vw,80px); align-items: start;
}
.founder-photo { position: relative; aspect-ratio: 4/5; border-radius: 18px; border: 1px solid var(--line-2); overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,10,13,0.55) 100%); pointer-events: none; }
.founder h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px,4.6vw,56px); line-height: 1.04; letter-spacing: -0.02em; color: var(--text-strong);
  margin-top: 20px; margin-bottom: 8px;
}
.founder-role { font-size: 15px; color: var(--pink); font-weight: 500; margin-bottom: 28px; }
.founder p { color: var(--text-muted); margin-bottom: 16px; max-width: 600px; }
.founder p.hi { color: #C4BFC7; }
.founder p.pull {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px,2.4vw,25px); line-height: 1.4; color: #EDE9EC;
}

/* =========================================================
   SEÇÕES (títulos)
   ========================================================= */
.section-head { max-width: 640px; margin-bottom: clamp(44px,6vw,72px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px,4.8vw,58px); line-height: 1.04; letter-spacing: -0.02em; color: var(--text-strong);
}
.section-head h2 em { font-style: italic; }

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services { padding-top: clamp(80px,11vw,150px); padding-bottom: clamp(80px,11vw,150px); }
.svc-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden;
}
.svc-card { background: var(--bg-card); padding: clamp(30px,3.5vw,46px); transition: background .2s; }
.svc-card:hover { background: var(--bg-card-hover); }
.svc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.svc-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px;
  border: 1px solid var(--line-2); background: rgba(245,62,124,0.06);
  display: flex; align-items: center; justify-content: center;
}
.svc-head h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px,2.4vw,28px); line-height: 1.15; letter-spacing: -0.01em; color: #F2EEF1;
}
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.svc-list li { display: flex; gap: 12px; color: var(--text-muted); font-size: 15.5px; line-height: 1.5; }
.svc-list li .dot { flex-shrink: 0; margin-top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--grad-soft); }

/* =========================================================
   NÚMEROS
   ========================================================= */
.numbers { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.numbers-inner { padding-top: clamp(80px,11vw,140px); padding-bottom: clamp(80px,11vw,140px); }
.numbers-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: clamp(44px,6vw,68px);
}
.numbers-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px,4.6vw,56px); line-height: 1.02; letter-spacing: -0.02em; color: var(--text-strong); max-width: 560px;
}
.numbers-head h2 em { font-style: italic; }
.numbers-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden;
}
.stat { background: var(--bg-alt); padding: clamp(28px,3.2vw,42px); min-height: 170px; display: flex; flex-direction: column; justify-content: flex-end; }
.stat-value {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px,5vw,62px); line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(140deg, #FF7A3D, #F53E7C 55%, #E30C97);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.stat-label { color: #B0AAB4; font-size: 15px; line-height: 1.4; }

/* =========================================================
   CLIENTES
   ========================================================= */
.clients { padding-top: clamp(80px,11vw,150px); padding-bottom: clamp(80px,11vw,150px); }
.clients-head { text-align: center; margin-bottom: clamp(40px,5vw,60px); }
.clients-head .eyebrow { margin-bottom: 16px; }
.clients-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px,4vw,48px); line-height: 1.05; letter-spacing: -0.02em; color: var(--text-strong);
}
.clients-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; overflow: hidden;
}
.client-cell { background: var(--bg-card); aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; padding: 26px 34px; transition: background .2s; }
.client-cell:hover { background: var(--bg-card-hover); }
.client-cell img { height: clamp(30px,4.2vw,44px); width: auto; max-width: 88%; object-fit: contain; opacity: 0.72; transition: opacity .25s; }
.client-cell:hover img { opacity: 1; }
.client-cell.is-big img { height: clamp(42px,5.8vw,60px); max-width: 94%; }

/* =========================================================
   CASES
   ========================================================= */
.cases { background: var(--bg-alt); border-top: 1px solid var(--line); }
.cases-inner { padding-top: clamp(80px,11vw,150px); padding-bottom: clamp(80px,11vw,150px); }
.cases-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(20px,3vw,32px); }
.case-card { display: block; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; background: var(--bg-card); transition: border-color .2s; }
.case-card:hover { border-color: rgba(245,62,124,0.5); }
.case-media { aspect-ratio: 16/10; position: relative; overflow: hidden; background: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 11px, rgba(255,255,255,0.012) 11px 22px); }
.case-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.case-body { padding: clamp(24px,3vw,34px); }
.case-tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 14px; }
.case-body h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(24px,3vw,32px); line-height: 1.1; letter-spacing: -0.01em; color: #F2EEF1; margin-bottom: 12px;
}
.case-body p { color: #A29CA6; font-size: 15.5px; line-height: 1.5; }
.case-outlets { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--text-faint); }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta { position: relative; padding-top: clamp(90px,13vw,180px); padding-bottom: clamp(90px,13vw,180px); text-align: center; overflow: hidden; }
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 760px; height: 760px; max-width: 90vw; pointer-events: none;
  background: radial-gradient(circle at center, rgba(245,62,124,0.32), rgba(227,12,151,0.08) 45%, transparent 68%);
  filter: blur(24px);
}
.cta-inner { position: relative; }
.cta h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px,7vw,92px); line-height: 1.0; letter-spacing: -0.03em; color: var(--text-strong);
  max-width: 900px; margin: 0 auto 34px; text-wrap: balance;
}
.cta h2 em { font-style: italic; }
.cta p { color: #B0AAB4; font-size: 19px; max-width: 520px; margin: 0 auto 40px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; }
.cta .btn-grad { padding: 18px 34px; font-size: 17px; gap: 11px; }
.phone-link { font-family: var(--mono); font-size: 15px; letter-spacing: 0.04em; color: #EDEAEE; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 3px; transition: border-color .2s; }
.phone-link:hover { border-color: var(--pink); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); background: var(--bg); }
.footer-top { display: flex; flex-wrap: wrap; gap: 36px; align-items: flex-start; justify-content: space-between; padding-top: clamp(48px,6vw,72px); padding-bottom: clamp(48px,6vw,72px); }
.footer-brand { max-width: 320px; }
.footer-brand img { height: 28px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--text-faint); font-size: 14.5px; line-height: 1.55; }
.footer-cols { display: flex; gap: clamp(40px,6vw,80px); flex-wrap: wrap; }
.footer-col .col-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #6E6874; margin-bottom: 16px; }
.footer-col nav { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-link { color: #C9C3CC; transition: color .2s; }
.footer-link:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; color: #6E6874; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .impact-grid,
  .about-grid,
  .founder-grid,
  .svc-grid,
  .cases-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .clients-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .founder-photo { max-width: 420px; }
}

@media (max-width: 520px) {
  .numbers-grid,
  .clients-grid { grid-template-columns: 1fr; }
}
