/* Eduardo Silva Ads — v4 (template inspirado em agências) */
:root {
  --ink: #06101f;
  /* deep navy */
  --ink2: #0b1426;
  /* dark section */
  --cream: #f4f1ea;
  /* warm light section like studio templates */
  --paper: #ffffff;

  --muted: #5b667a;
  --mutedDark: #a8b1c2;

  /* Accent mix: magenta + purple like your references */
  --a1: #ff2bbf;
  /* hot magenta */
  --a2: #7c3aed;
  /* purple */
  --a3: #22c55e;
  /* performance green (small use) */

  --stroke: rgba(0, 0, 0, .08);
  --strokeDark: rgba(255, 255, 255, .10);

  --radius: 22px;
  --shadow: 0 20px 55px rgba(0, 0, 0, .20);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0b1220;
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  width: 1100px;
  max-width: 92%;
  margin: 0 auto
}

/* Topbar — premium dark (no more grey) */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;

  /* dark glass */
  background: rgba(6, 16, 31, 0.973);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.topbar.is-solid {
  background: rgba(6, 16, 31, .92);
}

/* optional: thin accent underline like agency sites */
.topbar::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 43, 191, .0), rgba(255, 43, 191, .85), rgba(124, 58, 237, .85), rgba(255, 43, 191, .0));
  opacity: .55;
}



.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .2px;
  color: #fff;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 0 0 6px rgba(255, 43, 191, .18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.nav a:hover {
  color: #fff
}

/* Mobile menu button */
.navbtn {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.navbtn span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, .92);
  margin: 6px 10px;
  border-radius: 999px;
}

.navdrawer {
  background: rgba(6, 16, 31, .96);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.navdrawer__inner {
  padding: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.navdrawer__link {
  color: rgba(255, 255, 255, .86);
  padding: 10px 0
}

.navdrawer__link:hover {
  color: #fff
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
}

.btn--sm {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px
}

.btn--accent {
  color: #fff;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 16px 34px rgba(255, 43, 191, .18);
}

.btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(124, 58, 237, .20);
}

.btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .18);
}

.btn--outline:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .26);
}

.full {
  width: 100%;
  margin-top: 20px;
}

/* HERO */
.hero {
  position: relative;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 43, 191, .28), transparent 46%),
    radial-gradient(circle at 80% 10%, rgba(124, 58, 237, .24), transparent 46%),
    radial-gradient(circle at 80% 80%, rgba(34, 197, 94, .14), transparent 42%),
    linear-gradient(180deg, rgba(6, 16, 31, .92), rgba(6, 16, 31, .92));
  transform: scale(1.02);
}

.hero__grid {
  position: relative;
  padding: 76px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .86);
}

.eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a1), var(--a3));
  box-shadow: 0 0 0 7px rgba(255, 43, 191, .16);
}

.hero__h1 {
  margin-top: 14px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -1.1px;
  font-weight: 900;
}

.h1Accent {
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, .65), rgba(255, 43, 191, .95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, .82);
  max-width: 62ch;
}

.hero__cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
}

/* Lead box (right) */
.leadBox {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
}

.leadBox__kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 43, 191, .15);
  border: 1px solid rgba(255, 43, 191, .26);
  font-size: 12px;
  font-weight: 900;
}

.leadBox h3 {
  margin-top: 10px;
  font-size: 18px
}

.muted {
  color: rgba(255, 255, 255, .78)
}

.micro {
  font-size: 13px;
  text-align: center;
  margin-top: 15px;
}

.leadBox__stats {
  margin: 14px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.miniStat {
  background: rgba(6, 16, 31, .35);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 12px;
}

.miniStat__n {
  font-weight: 900;
  font-size: 16px
}

.miniStat__t {
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, .72)
}

/* Big highlight bar */
.heroBar {
  position: relative;
  background: linear-gradient(135deg, var(--a1), var(--a2));
}

.heroBar__inner {
  padding: 18px 0;
  text-align: center;
}

.heroBar__big {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.2px;
}

/* Sections */
.section {
  padding: 64px 0
}

.section--light {
  background: var(--paper);
  color: #0b1220
}

.section--dark {
  background: var(--ink2);
  color: #fff
}

.section--cream {
  background: var(--cream);
  color: #0b1220
}

.sectionHead h2 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.6px;
}

.sectionHead p {
  margin-top: 10px;
  color: #2a364b;
  max-width: 70ch
}

.section--dark .sectionHead p {
  color: rgba(255, 255, 255, .76)
}

.sectionHead--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Services image-cards */
.svcGrid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svcCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .10);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.svcCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 43, 191, .22);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .14);
}

.svcCard__img {
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* overlay escuro premium */
.svcCard__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.55));
}


.svcCard__img[data-img="1"] {
  background-image: url("/imgs/google_ads.jpg");
}

.svcCard__img[data-img="2"] {
  background-image: url("/imgs/meta_ads.jpg");
}

.svcCard__img[data-img="3"] {
  background-image: url("/imgs/tracking.jpg");
}

.svcCard__img[data-img="4"] {
  background-image: url("/imgs/landing.jpg");
}

.svcCard__img[data-img="5"] {
  background-image: url("/imgs/creative_testing.jpg");
}

.svcCard__img[data-img="6"] {
  background-image: url("/imgs/retargeting.jpg");
}

.svcCard__body {
  padding: 16px
}

.svcCard h3 {
  font-size: 16px;
  font-weight: 900
}

.svcCard p {
  margin-top: 8px;
  color: #2a364b;
  font-size: 13px
}

.svcCard__link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
  color: #0b1220;
}

.svcCard__link:hover {
  color: #000
}

.centerCta {
  margin-top: 22px;
  display: flex;
  justify-content: center
}

/* Work section */
.workGrid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 16px;
}

/* WORK VIDEO FRAME — FIX PRO */
.workFrame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #000;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* iframe ocupa tudo */
.workFrame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* proporção cinema */
.workFrame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
  /* 16:9 ratio */
}

.workFrame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


.playBadge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  box-shadow: 0 18px 38px rgba(255, 43, 191, .20);
}

.workFrame__text {
  color: rgba(255, 255, 255, .80);
  font-size: 13px;
  max-width: 60ch
}

.workNotes {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.noteCard {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 14px;
}

.noteCard__t {
  font-weight: 900
}

.noteCard__p {
  margin-top: 6px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px
}

/* Results cards */
.resultCards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.resultCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.resultCard__n {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.3px
}

.resultCard__t {
  margin-top: 8px;
  color: #2a364b;
  font-weight: 800;
  font-size: 13px
}

.clientRow {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.clientRow__label {
  font-weight: 900
}

.clientRow__logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.logoPill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .70);
  font-weight: 800;
  font-size: 12px;
}

/* About + testimonial */
.aboutGrid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: stretch;
}

.aboutCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .10);
}

.aboutCard p {
  margin-top: 10px;
  color: #2a364b
}

.aboutTags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 43, 191, .12), rgba(124, 58, 237, .10));
  border: 1px solid rgba(255, 43, 191, .18);
  font-size: 12px;
  font-weight: 900;
}

.aboutCta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.testiCard {
  background: linear-gradient(180deg, rgba(6, 16, 31, .92), rgba(11, 20, 38, .92));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 18px;
  color: #fff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .20);
}

.testiCard__k {
  font-weight: 900;
  color: rgba(255, 255, 255, .86);
  font-size: 13px
}

.testiCard__q {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25
}

.testiCard__by {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  opacity: .85;
}

.by__n {
  font-weight: 900
}

.by__t {
  color: rgba(255, 255, 255, .70);
  font-size: 13px
}

.stars {
  margin-top: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .92)
}

/* Contact */
.directLine {
  color: #fff
}

.contactGrid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}

.formCard {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 18px;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, .84);
  margin-bottom: 6px
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(6, 16, 31, .35);
  color: #fff;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 43, 191, .40);
  box-shadow: 0 0 0 6px rgba(255, 43, 191, .14);
}

textarea {
  min-height: 140px;
  resize: vertical
}

.formMeta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.sideCard {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 18px;
}

.sideList {
  margin-top: 10px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .80)
}

.sideList li {
  margin: 8px 0
}

.sideDivider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 14px 0
}

/* Footer */
.footer {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 26px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__right {
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px
}

.footer__right a:hover {
  color: #fff
}

/* Thanks page */
.thanksHero {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 43, 191, .22), transparent 55%),
    linear-gradient(180deg, var(--ink), var(--ink2));
  color: #fff;
}

.thanksHero__inner {
  padding: 84px 0;
  text-align: center
}

.thanksHero__h1 {
  margin-top: 12px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.6px
}

.thanksHero__p {
  margin: 12px auto 0;
  max-width: 72ch
}

.thanksHero__cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

/* Thanks page full-height (fix white gap) */
html,
body {
  height: 100%;
}

body.thanksPage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  /* evita qualquer "branco" aparecendo */
}

body.thanksPage .thanksHero {
  flex: 1;
  /* ocupa o espaço restante da tela */
  display: flex;
}

body.thanksPage .thanksHero__inner {
  width: 100%;
  display: grid;
  place-items: center;
  /* centraliza vertical + horizontal */
  padding: 84px 0;
}

body.thanksPage .footer {
  margin-top: auto;
  /* empurra o footer pro fim */
}

/* =========================
   Cookie Consent (UK-style) — CLEAN (no duplicates)
   ========================= */

/* Banner */
#cookieBanner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2147483646;
  pointer-events: auto;
}

#cookieBanner .cookieCard {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;

  padding: 14px;
  border-radius: 16px;

  background: rgba(10, 18, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

#cookieBanner .cookieText {
  flex: 1;
  min-width: 0;
}

#cookieBanner .cookieTitle {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.95);
}

#cookieBanner .cookieDesc {
  margin: 6px 0 8px;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.82);
}

#cookieBanner .cookieLink {
  font-size: 13px;
  opacity: 0.9;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.90);
}

#cookieBanner .cookieActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* banner buttons */
#cookieBanner .cookieBtnPrimary {
  background: rgba(255, 255, 255, 0.95);
  color: #0b1324;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

#cookieBanner .cookieBtnGhost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

/* Modal backdrop */
#cookieModal {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: auto;
}

/* guarantee clicks */
#cookieModal,
#cookieModal * {
  pointer-events: auto !important;
}

/* Modal card (LIGHT) */
#cookieModal .cookieModalCard {
  width: min(560px, 100%);
  border-radius: 18px;
  padding: 20px;

  background: #ffffff;
  color: #0b1324;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

  position: relative;
}

/* modal title */
#cookieModal .cookieTitle {
  font-weight: 900;
  font-size: 18px;
  color: #0b1324;
}

/* close button */
#cookieModal .cookieX {
  background: #f1f3f9;
  border: 1px solid #e3e6ef;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}

/* rows */
#cookieModal .cookieRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 14px;
  border-radius: 14px;

  background: #f6f7fb;
  border: 1px solid #e6e8f0;
}

#cookieModal .cookieRowTitle {
  font-weight: 800;
  font-size: 14px;
  color: #0b1324;
}

#cookieModal .cookieRowDesc {
  font-size: 13px;
  color: #5b647a;
  margin-top: 4px;
}

/* actions */
#cookieModal .cookieModalActions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* modal buttons */
#cookieModal .cookieBtnPrimary {
  background: #0b1324;
  color: #fff;
  border: 1px solid #0b1324;
}

#cookieModal .cookieBtnGhost {
  background: #f1f3f9;
  border: 1px solid #e2e6f0;
  color: #0b1324;
}

/* switch */
#cookieModal .cookieSlider {
  background: #dfe3ee;
  border: 1px solid #ccd3e2;
}

#cookieModal .cookieSlider:before {
  background: #fff;
}

#cookieModal .cookieSwitch input:checked+.cookieSlider {
  background: #22c55e;
  border-color: #22c55e;
}

#cookieModal {
  display: none;
}

#cookieBanner {
  display: none;
}

#cookieModal.is-open {
  display: grid !important;
}

#cookieBanner.is-open {
  display: block !important;
}

/* Lite video (loads iframe only on click) */
.liteVideo {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #0b1426;
  border-radius: var(--radius);
  position: relative;
  display: block;
  overflow: hidden;
}

/* thumbnail */
.liteVideo {
  background-size: cover;
  background-position: center;
}

.liteVideo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .55));
}

.liteVideo__hint {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  text-align: left;
}

/* keep your existing playBadge on top */
.liteVideo .playBadge {
  z-index: 2;
}

.logoMain {
  height: 60px;
  width: auto;
  display: block;
}

/* hover leve premium */
.logoMain:hover {
  opacity: .9;
  transform: translateY(-1px);
  transition: .2s;
}

.logoFooter {
  height: 28px;
  width: auto;
  opacity: .9;
}

/* ===== HUMAN CHECK MODAL ===== */
.humanModal {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 20, .55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.humanModal.show {
  opacity: 1;
  pointer-events: auto;
}

.humanModalCard {
  width: 420px;
  max-width: 92%;
  background: linear-gradient(180deg, #0b1426, #0a1222);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  padding: 34px 28px;
  text-align: center;
  color: #fff;

  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
  animation: pop .25s ease;
}

@keyframes pop {
  from {
    transform: scale(.9);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.humanIcon {
  font-size: 32px;
  margin-bottom: 12px;
}

.humanModal h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 800;
}

.humanModal p {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 20px;
}

/* Trusted by carousel */
.trustedCarousel {
  margin-top: 12px;
}

#trustedSwiper {
  width: 100%;
  overflow: hidden;
}

.trustedLogo {
  display: block;
  height: 120px;
  /* ajuste aqui conforme suas logos */
  width: auto;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: opacity 160ms ease, filter 160ms ease, transform 160ms ease;
}

/* ONLY logos carousel */
.trustedCarousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
}


.swiper-slide:hover .trustedLogo {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-1px);
}

/* ===== NAVBTN: hamburger -> X ===== */
.navbtn {
  position: relative;
}

.navbtn span {
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

/* estado aberto */
.navbtn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbtn.is-open span:nth-child(2) {
  opacity: 0;
}

.navbtn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}