/* ============================================================
   SAM · South America Memes
   Fonte única: Manrope (igual à referência)
   ============================================================ */

:root {
  --ink: #0E0E0E;
  --paper: #FFFFFF;
  --paper-2: #F0F0F0;
  --red: #FE000F;
  --yellow: #F9F651;
  --green: #00FF80;
  --blue: #405266;
  --accent: #F9F651;        /* amarelo · pop em fundo escuro */
  --accent-2: #FE000F;      /* vermelho · cor principal da marca */
  --muted: #6E6E6E;
  --line: rgba(14, 14, 14, .12);

  --font: "Manrope", sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1320px;
  --pad: clamp(20px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); width: 100%; }
.section { padding: clamp(80px, 12vw, 150px) 0; scroll-margin-top: 80px; }

/* ---------- helpers ---------- */
.accent { color: var(--accent-2); }
.section-label {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: .6em;
}
.section-label span { color: var(--ink); }

h1, h2, h3 { font-weight: 700; letter-spacing: -.02em; line-height: 1.04; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: transform .9s var(--ease);
}
.loader.is-done { transform: translateY(-100%); }
.loader__inner { display: flex; flex-direction: column; align-items: center; line-height: .92; }
.loader__word {
  font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(2.4rem, 9vw, 6rem);
  opacity: 0; transform: translateY(120%);
  animation: loadWord .7s var(--ease) forwards;
}
.loader__word:nth-child(1) { animation-delay: .05s; }
.loader__word:nth-child(2) { animation-delay: .15s; color: var(--accent); }
.loader__word:nth-child(3) { animation-delay: .25s; }
@keyframes loadWord { to { opacity: 1; transform: translateY(0); } }
.loader__dino { width: clamp(150px, 24vw, 230px); aspect-ratio: 1/1; object-fit: contain; background: #fff; border-radius: 50%; padding: 26px; opacity: 0; transform: scale(.8); animation: loadDino .8s var(--ease) forwards; animation-delay: .1s; }
@keyframes loadDino { to { opacity: 1; transform: scale(1); } }
.loader__count { font-size: .9rem; letter-spacing: .1em; font-weight: 600; }
.loader__bar { width: min(240px, 60vw); height: 2px; background: rgba(255,255,255,.2); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 0; background: var(--accent); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.header.is-stuck {
  padding-top: 13px; padding-bottom: 13px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__logo { display: flex; align-items: center; gap: 10px; }
.header__logo img { height: 26px; }
.header__logo-tag {
  font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); border-left: 1px solid var(--line); padding-left: 10px;
}
@media (max-width: 600px) { .header__logo-tag { display: none; } }

.header__right { display: flex; align-items: center; gap: 14px; }
@media (max-width: 560px) { .header__cta { display: none; } }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  padding: 16px 30px; border-radius: 100px;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  overflow: hidden; cursor: pointer;
  transition: color .4s var(--ease); will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--accent); transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover { color: var(--ink); }
.btn:hover::after { transform: translateY(0); }
.btn--sm { padding: 11px 22px; font-size: .9rem; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: var(--paper); }

/* ---------- burger / menu trigger ---------- */
.burger {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 100px; padding: 10px 18px; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: .92rem; color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.burger:hover { background: var(--ink); color: var(--paper); }
.burger__lines { display: flex; flex-direction: column; gap: 5px; }
.burger__lines i { width: 18px; height: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger.is-open .burger__lines i:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open .burger__lines i:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================================
   OVERLAY MENU
   ============================================================ */
.menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center;
  padding: 110px var(--pad) 50px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease);
  pointer-events: none; overflow-y: auto;
}
.menu.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.menu__cols { max-width: var(--maxw); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.menu__nav { display: flex; flex-direction: column; }
.menu__link {
  font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.18;
  display: flex; align-items: baseline; gap: 16px;
  transition: color .25s var(--ease), padding-left .3s var(--ease);
}
.menu__link span { font-size: .7rem; font-weight: 600; color: var(--accent); letter-spacing: 0; }
.menu__link:hover { color: var(--accent); padding-left: 10px; }
.menu__group { border-left: 1px solid rgba(255,255,255,.16); margin: 6px 0 6px 4px; padding-left: 16px; }
.menu__sub { display: flex; flex-wrap: wrap; gap: 6px 22px; padding: 6px 0 4px 38px; }
.menu__sub a { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.6); transition: color .25s var(--ease); }
.menu__sub a:hover { color: var(--accent); }

.menu__aside { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.menu__block { display: flex; flex-direction: column; gap: 8px; }
.menu__cap { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.menu__mail { font-size: 1.3rem; font-weight: 700; color: var(--paper); }
.menu__mail:hover { color: var(--accent); }
.menu__social { display: flex; gap: 18px; }
.menu__social a:hover, .menu__block a:hover { color: var(--accent); }
.menu__block a { color: rgba(255,255,255,.78); transition: color .25s var(--ease); width: max-content; }
.menu__social { flex-wrap: wrap; }
.menu__promo { font-weight: 700; color: var(--accent) !important; }
.menu__promo:hover { opacity: .8; }

@media (max-width: 820px) {
  .menu { align-items: flex-start; }
  .menu__cols { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  padding: 130px var(--pad) 50px;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
  scroll-margin-top: 0;
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__eyebrow {
  font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; color: var(--muted); margin-bottom: 26px;
}
.hero__eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .4; } }

.hero__title {
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 11rem);
  line-height: .92; letter-spacing: -.04em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .18em; margin-bottom: -.14em; }
.hero__title .word { display: inline-block; transform: translateY(110%); }

.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-top: clamp(32px, 5vw, 60px); }
.hero__lead { max-width: 440px; font-size: 1.08rem; color: #2A2A2A; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__floaters { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.floater {
  position: absolute; left: var(--x); top: var(--y);
  width: var(--w); height: auto;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.14));
  opacity: 0; transform: scale(.8) rotate(var(--r, 0deg));
  animation: floatIn 1s var(--ease) forwards; animation-delay: 1.1s;
}
.floater--bob { animation: floatIn 1s var(--ease) forwards, bob 5s ease-in-out 1.6s infinite; }
@keyframes floatIn { to { opacity: 1; transform: scale(1) rotate(var(--r, 0deg)); } }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@media (max-width: 980px) { .hero__floaters { display: none; } }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero__scroll-line { width: 1px; height: 46px; background: var(--line); overflow: hidden; position: relative; }
.hero__scroll-line i { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--ink); animation: scrollDown 1.8s var(--ease) infinite; }
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }
@media (max-width: 860px) { .hero__scroll { display: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: var(--paper); }
.marquee__track { display: flex; align-items: center; gap: 34px; width: max-content; animation: marquee 26s linear infinite; font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.6rem, 4vw, 2.6rem); }
.marquee__track--rev { animation-direction: reverse; }
.marquee__track i { color: var(--accent-2); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee--cta { border-color: rgba(255,255,255,.15); background: transparent; margin-top: 60px; }
.marquee--cta .marquee__track { color: var(--paper); }

/* ============================================================
   HISTÓRIA
   ============================================================ */
.historia__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: start; margin-top: 40px; }
.historia__title { font-size: clamp(2.2rem, 6vw, 4.6rem); }
.historia__body { display: flex; flex-direction: column; gap: 18px; font-size: 1.08rem; color: #2A2A2A; max-width: 520px; }
.historia__manifesto {
  margin-top: clamp(40px, 6vw, 70px);
  font-size: clamp(1.4rem, 3.4vw, 2.4rem); font-weight: 700; line-height: 1.25; letter-spacing: -.02em;
  max-width: 980px; border-left: 3px solid var(--accent); padding-left: clamp(20px, 3vw, 36px);
}
.historia__timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: clamp(50px, 8vw, 100px); border-top: 1px solid var(--line); padding-top: 36px; text-align: center; }
.tl__year { font-size: 1.6rem; font-weight: 800; color: var(--accent-2); letter-spacing: -.02em; }
.tl p { margin-top: 8px; color: var(--muted); font-size: .98rem; }
@media (max-width: 820px) { .historia__grid { grid-template-columns: 1fr; } .historia__timeline { grid-template-columns: 1fr 1fr; gap: 30px 20px; } }

/* ============================================================
   SERVICES / O QUE FAZEMOS  (fundo escuro)
   ============================================================ */
.services, .formatos { background: var(--ink); color: var(--paper); }
.services__head { margin-bottom: 60px; }
.services__head .section-label { color: rgba(255,255,255,.6); }
.services__head .section-label span { color: var(--paper); }
.services__title { font-size: clamp(2.2rem, 7vw, 5rem); margin-top: 18px; }

.services__list { list-style: none; }
.service { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 30px; align-items: baseline; padding: clamp(28px, 4vw, 44px) 0; border-top: 1px solid rgba(255,255,255,.16); transition: padding-left .4s var(--ease); }
.service:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.service:hover { padding-left: 16px; }
.service__num { color: var(--accent); font-size: 1rem; font-weight: 600; }
.service__name { font-size: clamp(1.5rem, 3.5vw, 2.6rem); transition: color .3s var(--ease); }
.service:hover .service__name { color: var(--accent); }
.service__desc { color: rgba(255,255,255,.66); font-size: 1.02rem; max-width: 420px; }
@media (max-width: 760px) { .service { grid-template-columns: 50px 1fr; } .service__desc { grid-column: 2; } }

/* ============================================================
   CONTEÚDOS
   ============================================================ */
.conteudos__head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.conteudos__head .section-label { justify-content: center; }
.conteudos__title { font-size: clamp(2.2rem, 7vw, 5rem); margin: 18px 0 18px; }
.conteudos__lead { color: #2A2A2A; font-size: 1.1rem; }

.channel { scroll-margin-top: 90px; margin-top: clamp(40px, 6vw, 70px); }
.channel__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.channel__name { font-size: clamp(1.6rem, 4vw, 2.6rem); }
.channel__links { display: flex; gap: 22px; flex-wrap: wrap; }
.channel__link { font-weight: 600; color: var(--accent-2); transition: opacity .25s var(--ease); }
.channel__link:hover { opacity: .65; }
.channel__link--muted { color: var(--muted); }

/* embed (YouTube / Demoreel) */
.embed { position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; background: var(--ink); cursor: pointer; max-width: 760px; margin: 0 auto; }
.embed--wide { max-width: 100%; }
.embed__poster { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s var(--ease); }
.embed:hover .embed__poster { transform: scale(1.04); filter: brightness(.8); }
.embed__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 84px; height: 84px; border-radius: 50%; border: none; background: var(--accent); display: grid; place-items: center; cursor: pointer; transition: transform .3s var(--ease); }
.embed:hover .embed__play { transform: translate(-50%,-50%) scale(1.1); }
.embed__play i { width: 0; height: 0; border-left: 22px solid var(--ink); border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 5px; }
.embed__tag { position: absolute; left: 16px; bottom: 14px; font-size: .78rem; font-weight: 600; color: var(--paper); background: rgba(0,0,0,.5); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 100px; }
.embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* feed (TikTok / Instagram) */
.feed { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.5vw, 18px); }
.feed--instagram { }
.feed__item { position: relative; aspect-ratio: 9/16; border-radius: 14px; overflow: hidden; background: var(--paper-2); display: block; }
.feed[data-feed="instagram"] .feed__item { aspect-ratio: 1/1; }
.feed__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feed__item:hover img { transform: scale(1.06); }
.feed__play { position: absolute; top: 12px; right: 12px; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.55); }
.feed__play::after { content: ""; position: absolute; top: 50%; left: 53%; transform: translate(-50%,-50%); border-left: 8px solid #fff; border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.feed__note { margin-top: 16px; font-size: .9rem; color: var(--muted); text-align: center; }
.feed-iframe { width: 100%; min-height: 640px; border: 0; border-radius: 18px; display: block; }
.feed__note span { color: var(--accent-2); }
@media (max-width: 680px) { .feed { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FORMATOS COMERCIAIS
   ============================================================ */
.formatos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.fmt { border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 30px; transition: background .3s var(--ease), transform .3s var(--ease); }
.fmt:hover { background: rgba(255,255,255,.04); transform: translateY(-4px); }
.fmt h3 { font-size: 1.4rem; margin-bottom: 12px; }
.fmt p { color: rgba(255,255,255,.66); font-size: 1rem; }
.formatos__cta { margin-top: 44px; border-color: rgba(255,255,255,.4); color: var(--paper); }
.formatos__cta::after { background: var(--accent); }
.formatos__cta:hover { color: var(--ink); }
@media (max-width: 860px) { .formatos__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .formatos__grid { grid-template-columns: 1fr; } }

/* ============================================================
   STATS
   ============================================================ */
.stats-wrap { padding: clamp(70px, 10vw, 120px) 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat__fig { display: inline-flex; align-items: baseline; gap: 3px; }
.stat__pre { font-weight: 800; color: var(--accent-2); font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1; letter-spacing: -.02em; }
.stat__num { font-weight: 800; font-size: clamp(3rem, 8vw, 6rem); line-height: 1; letter-spacing: -.04em; }
.stat__plus { font-weight: 800; font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--accent-2); line-height: 1; margin-left: 3px; }
.stat p { margin-top: 12px; color: var(--muted); font-size: .98rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }

/* ============================================================
   MARCAS
   ============================================================ */
.marcas { background: var(--ink); color: var(--paper); }
.marcas__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.marcas__head .section-label { justify-content: center; color: rgba(255,255,255,.6); }
.marcas__head .section-label span { color: var(--paper); }
.marcas__title { font-size: clamp(2rem, 5.5vw, 4rem); margin-top: 16px; }
.marcas__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; max-width: 1000px; margin: 0 auto; }
.marca { flex: 0 0 auto; width: clamp(88px, 13.5vw, 150px); min-width: 0; aspect-ratio: 1/1; background: #fff; border-radius: 50%; display: grid; place-items: center; padding: 14px; overflow: hidden; transition: transform .3s var(--ease); }
.marca:hover { transform: translateY(-5px) scale(1.05); }
.marca img { width: 100%; height: 100%; object-fit: contain; }
.marca--cover { padding: 0; }
.marca--cover img { object-fit: cover; }
.marca__txt { font-weight: 800; color: var(--ink); font-size: clamp(.7rem, 1.4vw, 1rem); text-align: center; line-height: 1.1; padding: 4px; }
.marcas__badge { width: 60px; height: auto; margin: clamp(32px, 4vw, 44px) auto 0; display: block; }

/* ============================================================
   AÇÕES SOCIAIS
   ============================================================ */
.acoes__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.acoes__title { font-size: clamp(2.2rem, 6vw, 4.4rem); margin: 18px 0 22px; }
.acoes__text > p { color: #2A2A2A; font-size: 1.08rem; max-width: 520px; }
.acoes__list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.acoes__list li { padding-left: 28px; position: relative; font-size: 1.02rem; }
.acoes__list li::before { content: "✺"; position: absolute; left: 0; color: var(--accent-2); }
.acoes__cta { margin-top: 32px; }
.acoes__media { display: grid; place-items: center; padding: 10px; }
.acoes__media img { width: 100%; max-width: 460px; height: auto; }
@media (max-width: 820px) { .acoes__inner { grid-template-columns: 1fr; } }

/* ============================================================
   ENVIE SEU MEME
   ============================================================ */
.envie { background: var(--ink); color: var(--paper); }
.envie__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.envie__head .section-label { color: rgba(255,255,255,.6); }
.envie__head .section-label span { color: var(--paper); }
.envie__title { font-size: clamp(2.2rem, 6vw, 4.4rem); margin: 18px 0 20px; }
.envie__head p { color: rgba(255,255,255,.66); font-size: 1.08rem; max-width: 420px; }
.envie__form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea { font-family: var(--font); font-size: 1rem; color: var(--paper); background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,.3); padding: 12px 0; transition: border-color .3s var(--ease); resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.envie__form .btn { grid-column: 1 / -1; justify-self: start; }
.envie__status { grid-column: 1 / -1; font-size: .95rem; color: rgba(255,255,255,.7); min-height: 1.2em; }
.envie__status.is-ok { color: var(--green); }
.envie__status.is-err { color: var(--accent-2); }
@media (max-width: 820px) { .envie__inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .envie__form { grid-template-columns: 1fr; } }

/* ============================================================
   MÍDIA KIT
   ============================================================ */
.midiakit__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.midiakit__title { font-size: clamp(2.2rem, 6vw, 4.4rem); margin: 18px 0 18px; }
.midiakit__inner > div p { color: #2A2A2A; max-width: 460px; font-size: 1.08rem; }
.midiakit__btn { font-size: 1.05rem; padding: 18px 36px; }

/* ============================================================
   CTA / CONTATO
   ============================================================ */
.cta { background: var(--ink); color: var(--paper); padding: clamp(80px, 12vw, 150px) 0 0; overflow: hidden; }
.cta__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta__inner .section-label { color: rgba(255,255,255,.6); }
.cta__inner .section-label span { color: var(--paper); }
.cta__title { font-weight: 800; font-size: clamp(3rem, 14vw, 10rem); line-height: .9; letter-spacing: -.04em; margin: 24px 0 40px; }
.cta__mail { font-size: clamp(1.4rem, 4vw, 2.6rem); font-weight: 700; padding-bottom: 6px; border-bottom: 2px solid var(--accent); transition: color .3s var(--ease); }
.cta__mail:hover { color: var(--accent); }
.cta__row { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.cta__social { color: rgba(255,255,255,.6); font-weight: 600; transition: color .3s var(--ease); }
.cta__social:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding: clamp(50px, 7vw, 90px) 0 30px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.16); }
.footer__brand { display: inline-block; }
.footer__brand img { height: 34px; width: auto; display: block; }
.footer__totop { background: transparent; border: 1px solid rgba(255,255,255,.3); color: var(--paper); font-family: var(--font); font-weight: 600; padding: 12px 22px; border-radius: 100px; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease); }
.footer__totop:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 50px 0; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__cap { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.footer__col a { color: rgba(255,255,255,.8); transition: color .3s var(--ease); width: max-content; }
.footer__col a:hover { color: var(--accent); }
.footer__muted { color: var(--muted); }
.footer__dmca { padding: 36px 0; border-top: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.footer__dmca p { color: rgba(255,255,255,.6); font-size: .8rem; max-width: 680px; line-height: 1.6; }
.footer__dmca a { color: var(--accent); }
.footer__base { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: var(--muted); }
.footer__base a { color: var(--accent); }
.footer__by { display: inline-flex; align-items: center; gap: 7px; }
.footer__fauno { height: 26px; width: auto; display: block; }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floater, .loader__word, .loader__dino { animation: none; opacity: 1; transform: none; }
  .hero__title .word { transform: none; }
}
