:root{
  --bg:#050505;
  --panel:#0d0d0d;
  --text:#f4f4f4;
  --muted:rgba(244,244,244,.72);

  --gold:#D4AF37;
  --gold2:#b98d2b;

  --accent:#ff2aa6;

  --radius:18px;

  /* Larguras */
  --container:1480px;        /* site inteiro mais largo */
  --header-container:1680px; /* header ainda mais aberto */
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; background:var(--bg); color:var(--text); font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; }
a{ color:inherit; text-decoration:none; }

/* Container global */
.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 980px){
  .container{ padding: 0 18px; }
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(5,5,5,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Header usa um container maior que o resto */
.site-header .container{
  max-width: var(--header-container);
}

/* linha do header */
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
  letter-spacing:.6px;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-mark{ color:var(--muted); font-weight:800; }
.brand-name{ color:var(--gold); font-size:20px; }

/* Nav */
.site-nav{
  display:flex;
  align-items:center;
  gap:16px;
  margin-left:auto; /* empurra menu pro lado direito */
}

.nav-list{
  list-style:none;
  display:flex;
  gap:16px;
  padding:0;
  margin:0;
}

.nav-list a{ color:var(--muted); font-weight:700; font-size:14px; }
.nav-list a:hover{ color:var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px; padding:0 14px; border-radius: 999px;
  font-weight:900; letter-spacing:.2px; font-size:13px;
  border:1px solid transparent;
}

.btn-cta{
  color:#0b0b0b;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
}
.btn-cta:hover{ filter:brightness(1.05); }

.btn-ghost{
  border-color: rgba(255,255,255,.12);
  color: var(--text);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover{ border-color: rgba(212,175,55,.35); }

.nav-toggle{
  display:none;
  width:44px; height:40px;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  cursor:pointer;
}

.nav-toggle span{
  display:block; width:18px; height:2px; margin:4px auto;
  background: rgba(244,244,244,.86);
}

/* Hero */
.hero{ position:relative; }
.hero-slider{ position:relative; height: 640px; overflow:hidden; }
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform: scale(1.02);
  transition: opacity 600ms ease, transform 900ms ease;
}
.hero-slide.is-active{ opacity:1; transform: scale(1); }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.10) 55%, rgba(0,0,0,.70)),
    radial-gradient(900px 500px at 55% 20%, rgba(212,175,55,.18), transparent 60%);
}
.hero-content{ position:relative; height:100%; display:flex; align-items:center; }
.hero-text{ max-width: 560px; }
.hero-kicker{ color:var(--muted); font-weight:800; margin-bottom:6px; }
.hero-title{
  margin:0;
  font-size: 56px; line-height: .95;
  letter-spacing: -1px;
}
.hero-pill{
  display:inline-block;
  margin: 12px 0 10px;
  background: var(--accent);
  color:#fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}
.hero-sub{ margin: 0 0 16px; color: var(--muted); font-weight: 650; }
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.hero-dots{
  position:absolute; left:50%; bottom:18px;
  transform: translateX(-50%);
  display:flex; gap:8px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.dot.is-active{ background: var(--gold); border-color: rgba(212,175,55,.9); }

/* Stats */
.stats{ background:#000; padding: 34px 0; border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
.stats-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: start;
  text-align:center;
}
.stat-icon{
  display:block;              /* <- ESSENCIAL */
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  background-size: contain;
  background-position:center;
  background-repeat:no-repeat;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.6));
}
.stat-number{
  font-size: 44px;
  font-weight: 950;
  letter-spacing: -1px;
}
.stat-number .plus{ color: var(--accent); }
.stat-number .value{ color: var(--accent); }
.stat-label{ margin-top: 6px; color: var(--text); font-weight: 700; font-size: 14px; line-height:1.2; opacity:.95; }

.section{ padding: 70px 0; background: var(--bg); }
.section h2{ margin:0 0 10px; font-size: 34px; }
.section p{ margin:0; color: var(--muted); }

/* “bloqueio leve” */
.no-steal{
  user-select:none;
  -webkit-user-select:none;
  -webkit-touch-callout:none;
}
.no-steal *{
  -webkit-user-drag:none;
}

/* Mobile */
@media (max-width: 980px){
  .hero-slider{ height: 580px; }
  .hero-title{ font-size: 44px; }
  .stats-grid{ grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 720px){
  .nav-toggle{ display:block; }
  .site-nav{
    position:fixed;
    top:64px; left:0; right:0;
    background: rgba(5,5,5,.98);
    border-top:1px solid rgba(255,255,255,.06);
    padding: 14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .site-nav.is-open{ display:flex; }
  .nav-list{ flex-direction:column; gap:10px; }
  .btn{ width:100%; }
  .hero-slider{ height: 560px; }
}

/* ===== QUEM SOMOS (fundo #F2F2F2, dourado, imagem arredondada) ===== */
.qs-section{
  background:#F2F2F2;
  padding: 80px 0;
}

.qs-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 46px;
  align-items:center;
}

.qs-title{
  margin:0 0 16px;
  font-size: 56px;
  line-height: .92;
  letter-spacing: -1px;
  font-weight: 950;
  color: var(--gold);
  text-transform: uppercase;
}

.qs-paragraph{
  margin:0 0 22px;
  color: #111;
  font-size: 16px;
  line-height: 1.75;
  max-width: 620px;
}

.qs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color:#0b0b0b;
  border: 1px solid rgba(0,0,0,.10);
}

.qs-btn:hover{ filter: brightness(1.05); }

.qs-media{
  border-radius: 26px;
  overflow:hidden;
  background: #e8e8e8;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  min-height: 340px;
  display:flex;
}

.qs-media-placeholder{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  letter-spacing: 3px;
  color: rgba(0,0,0,.45);
  background:
    linear-gradient(135deg, rgba(0,0,0,.04), rgba(0,0,0,.02));
}

/* Responsivo */
@media (max-width: 980px){
  .qs-grid{ grid-template-columns: 1fr; }
  .qs-title{ font-size: 44px; }
  .qs-media{ min-height: 280px; }
}

.qs-img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ===== Depoimentos ===== */
.t-section{
  background:#fff;
  padding: 80px 0;
}

.t-title{
  margin:0;
  font-size: 54px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: -1px;
  color: var(--gold);
  text-transform: uppercase;
}

.t-sub{
  margin: 8px 0 26px;
  color:#111;
  opacity:.9;
  font-weight: 650;
}

.t-viewport{
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;   /* <- deixa a bolinha “vazar” pra cima */
  padding: 46px 0 10px;  /* <- dá espaço acima */
}

.t-track{
  display:flex;
  gap: 26px;
  align-items: stretch;
  will-change: transform;
}

/* Card */
.t-card{
  position: relative;
  flex: 0 0 320px;
  background: #000;
  color: #fff;
  border-radius: 28px;
  padding: 58px 22px 22px;
  min-height: 300px;
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
}

.t-avatar{
  position:absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #111;
  background-size: cover;
  background-position: center;
  border: 4px solid #fff;
  display:block;
}

.t-text{
  text-align:center;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
  opacity: .95;
}

.t-user{
  margin-top: 16px;
  display:block;        /* garante que ocupa a linha toda */
  width:100%;
  text-align:center;    /* centraliza */
  font-weight: 900;
  opacity: .95;
}

/* Desktop: marquee contínuo */
.t-track.is-marquee{
  animation: marquee var(--marquee-duration) linear infinite;
}
.t-viewport:hover .t-track.is-marquee{
  animation-play-state: paused;
}
@keyframes marquee{
  to { transform: translateX(calc(-1 * var(--marquee-distance))); }
}

/* Mobile: 1 por vez */
@media (max-width: 720px){
  .t-title{ font-size: 40px; }
  .t-track{
    gap: 0;
  }
  .t-track.is-slider{
    transition: transform 600ms ease;
  }
  .t-track.is-slider .t-card{
    flex: 0 0 100%;
    border-radius: 24px;
    margin: 0 14px; /* dá respiro nas laterais */
  }
}

.t-avatar{
  position:absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 999px;

  background-color:#111;
  background-size: cover;
  background-position: 50% 20%; /* sobe um pouco pra pegar mais rosto */
  background-repeat:no-repeat;

  border: 4px solid #fff;
  display:block;
}

.stat-number .plus,
.stat-number .value{
  color: var(--gold);
}

.section-white{
  background:#FFFFFF; /* <- Benefícios */
}

.t-bg-gray{
  background: #F2F2F2 !important; /* fundo do bloco depoimentos */
}

.ls-section{
  background: #FFFFFF !important; /* fundo do bloco livestream */
}
/* ===== Benefícios ===== */
.b-section{
  background:#FFFFFF;
  padding: 80px 0 60px;
}

.b-title{
  margin:0;
  font-size: 54px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: -1px;
  color: var(--gold);
  text-transform: uppercase;
}

.b-sub{
  margin: 8px 0 26px;
  color:#111;
  opacity:.9;
  font-weight: 650;
}

.b-viewport{
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 10px 0 10px;
}

.b-track{
  display:flex;
  gap: 26px;
  align-items: stretch;
  padding-left: max(4vw, 16px);
  padding-right: max(4vw, 16px);
  will-change: transform;
}

/* Card */
.b-card{
  position: relative;
  flex: 0 0 360px;
  height: 360px;
  border-radius: 44px;
  overflow:hidden;
  background: #111;
  box-shadow: 0 14px 44px rgba(0,0,0,.18);
  color:#fff;
  text-decoration:none;
  display:block;
}

.b-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position:center;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.b-overlay{
  position:absolute;
  inset:0;
  opacity:.78;
}

/* Tema: escuro */
.b-theme-dark .b-overlay{
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.85)),
    radial-gradient(900px 500px at 50% 20%, rgba(0,0,0,.18), transparent 60%);
}

/* Tema: azul */
.b-theme-blue .b-overlay{
  background:
    linear-gradient(180deg, rgba(0,38,74,.25), rgba(0,38,74,.88)),
    radial-gradient(900px 500px at 55% 25%, rgba(0,90,160,.22), transparent 60%);
}

.b-content{
  position:absolute;
  inset:0;
  padding: 26px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap: 12px;
}

.b-badge{
  display:inline-flex;
  align-self:flex-start;
  background: var(--gold);
  color:#0b0b0b;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 15px;
}

.b-text{
  font-size: 18px;
  line-height: 1.45;
  ont-weight: 500 !important;  /* tira o negrito */
  opacity: .95;
  max-width: 92%;
}

/* Mobile: 1 por vez */
@media (max-width: 720px){
  .b-title{ font-size: 40px; }
  .b-card{ flex: 0 0 86vw; height: 340px; border-radius: 36px; }
  .b-text{ font-size: 16px; }
}

/* ===== Centraliza quando tiver poucos itens (sem animação) ===== */
.t-track.is-static{
  justify-content: center;
  transform: none !important;
}

.b-track.is-static{
  justify-content: center;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transform: none !important;
}

/* Depoimentos: texto normal, @ em negrito */
.t-text{
  font-weight: 400 !important;  /* tira o negrito do depoimento */
}

.t-user{
  font-weight: 900 !important;  /* deixa só o @ em negrito */
}

/* Mobile: depoimentos com mesma largura/padrão dos cards de benefícios */
@media (max-width: 720px){
  .t-track{
    justify-content: center !important;
  }

  .t-card{
    width: min(340px, 92vw) !important;  /* controla a largura do card */
    max-width: 340px !important;
    flex: 0 0 auto !important;
  }
}
/* =========================
   SOBRE A LUCK
========================= */

.about-page{ background:#fff; }

/* HERO */
.about-hero{
  background:#000;
  color:#fff;
  min-height: 70vh;      /* antes era 86vh */
  display:flex;
  align-items:center;
  padding: 72px 0;       /* antes era 110px */
  overflow:hidden;
}

.about-hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;             /* antes 40px */
  align-items:center;
}

.about-hero-kicker{
  margin:0 0 16px;
  color: rgba(255,255,255,.72);
  font-weight: 850;
  letter-spacing: .2px;
}

.about-hero-lines p{
  margin:0;
  line-height: 1.55;
  font-size: 18px;
  color: rgba(255,255,255,.78);
  font-weight: 650;
}

.about-hero-lines .hl{
  color: var(--gold);
  font-weight: 900;
}

.about-hero-title{
  margin: 22px 0 10px;
  font-size: clamp(40px, 4.2vw, 56px); /* garante 1 linha no desktop */
  line-height: 1.02;
  letter-spacing: -1px;
  font-weight: 950;
  color: #fff;
  white-space: nowrap;
}

.about-hero-title .hl2{ color: var(--gold); }

.about-hero-sub{
  margin: 0 0 18px;
  max-width: 660px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-weight: 650;
}

.about-hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* Globo */
.about-hero-visual{
  height: 460px;                /* um pouco menor */
  width: 100%;
  background-repeat:no-repeat;
  background-position: right 10% center;  /* puxa pra mais perto do texto */
  background-size: min(520px, 95%) auto;  /* maior e mais presente */
  opacity: .95;
  filter: drop-shadow(0 30px 90px rgba(0,0,0,.65));
  position: relative;
}

.about-hero-visual::after{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(700px 420px at 60% 45%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(700px 420px at 80% 55%, rgba(0,0,0,.50), transparent 65%);
  pointer-events:none;
}

/* SEÇÕES */
.about-section{ padding: 80px 0; }
.about-white{ background:#fff; }

.about-h2{
  margin:0 0 12px;
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -1px;
  color: var(--gold);
  text-transform: uppercase;
}

.about-lead{
  margin: 0 0 18px;
  color:#333;
  opacity:.92;
  font-weight:650;
  line-height:1.7;
}

/* CARDS (O que a Luck faz) */
.about-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.about-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(0,0,0,.06);
}

.about-card-title{
  font-weight: 950;
  color:#111;
  margin-bottom: 6px;
}

.about-card-text{
  margin:0;
  color:#333;
  line-height:1.6;
  opacity:.92;
}

/* FUNDADORA */
.about-founder{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: start;      /* não centraliza; alinha topo igual referência */
  margin-top: 18px;
}

.about-founder-text h3{
  margin: 0 0 10px;
  color:#111;
  line-height: 1.15;
}

.about-founder-text p{
  margin: 0 0 12px;        /* menos espaço entre parágrafos */
  color:#333;
  line-height: 1.55;       /* mais “compacto” */
  font-weight: 500;
  max-width: 660px;        /* evita texto “espichado” */
}

.about-founder-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.about-founder-photo{
  display:flex;
  justify-content:flex-end;
}

.about-photo-placeholder{
  width: 320px;
  height: 380px;
  border-radius: 18px;
  border: 1px dashed rgba(0,0,0,.18);
  background:#f2f2f2;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color: rgba(0,0,0,.45);
}

/* DIRETORIA */
.about-directors{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.about-director-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  box-shadow: 0 14px 44px rgba(0,0,0,.08);
}

.about-director-photo{
  width: 74px;
  height: 74px;
  border-radius: 16px;
  background:#f2f2f2;
  border: 1px dashed rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color: rgba(0,0,0,.45);
  flex: 0 0 auto;
}

.about-director-info h3{
  margin: 0 0 4px;
  color:#111;
}

.about-director-role{
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}

.about-director-info p{
  margin:0;
  color:#333;
  line-height:1.6;
}

/* CTA FINAL */
.about-cta{
  background: linear-gradient(90deg, #000, #0b0b0b);
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.about-cta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}

.about-cta-title{
  color:#fff;
  font-weight: 950;
  letter-spacing: -.5px;
  font-size: 26px;
}

.about-cta-sub{
  color: rgba(255,255,255,.70);
  margin-top: 6px;
  font-weight: 650;
}

/* Responsivo */
@media (max-width: 980px){
  .about-hero{
    min-height: auto;
    padding: 90px 0;
  }

  .about-hero-grid{
    grid-template-columns: 1fr;
  }

  .about-hero-title{
    white-space: normal; /* no mobile pode quebrar */
  }

  .about-hero-visual{
    height: 320px;
    background-position: center;
    background-size: 320px auto;
    opacity: .75;
  }

  .about-cards{
    grid-template-columns: 1fr;
  }

  .about-founder{
    grid-template-columns: 1fr;
  }

  .about-founder-photo{
    justify-content:flex-start;
  }

  .about-photo-placeholder{
    width: 100%;
    max-width: 420px;
    height: 320px;
  }

  .about-directors{
    grid-template-columns: 1fr;
  }
}

.about-photo{
  width: 360px;           /* um pouco maior, reduz “vazio” */
  height: 420px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 44px rgba(0,0,0,.12);
}

@media (max-width: 980px){
  .about-photo{
    width: 100%;
    max-width: 420px;
    height: 320px;
  }
}

.about-gray{
  background:#F2F2F2;
}

/* BRAND (logo + texto dourado) */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 950;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-text{
  color: var(--gold);
  font-size: 18px;
}

.brand-logo{ display:flex; align-items:center; }

.brand-img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
}

/* Opcional: se sua logo NÃO estiver dourada, tente esse filtro (pode variar de logo pra logo) */
/*
.brand-img{
  filter: brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(710%) hue-rotate(6deg) brightness(92%) contrast(92%);
}
*/

#fundadora.about-section{
  padding-top: 44px;   /* antes 80px */
}

/* =========================
   AJUSTE GLOBAL DE ESPAÇAMENTO (HOME)
   reduz alturas entre blocos e padroniza
========================= */

/* padrão geral das seções */
.page-home .section,
.page-home .qs-section,
.page-home .b-section,
.page-home .t-section{
  padding: 56px 0 !important; /* antes 70-80 */
}

/* exceção: stats e hero ficam como estão */
.page-home .stats{ padding: 28px 0 !important; }

/* títulos e subtítulos com menos “ar” */
.page-home .qs-title,
.page-home .b-title,
.page-home .t-title{
  margin: 0 0 10px !important;
  line-height: .95;
}

.page-home .b-sub,
.page-home .t-sub{
  margin: 6px 0 18px !important;
}

/* Quem Somos: reduzir gap do grid e altura mínima da imagem */
.page-home .qs-grid{
  gap: 28px !important; /* antes 46 */
}

.page-home .qs-media{
  min-height: 300px !important; /* antes 340 */
}

/* Benefícios: reduzir padding top/bottom e “respiro” do carrossel */
.page-home .b-section{
  padding: 56px 0 44px !important;
}

.page-home .b-viewport{
  padding: 6px 0 6px !important;
}

/* Depoimentos: reduzir espaço acima do carrossel */
.page-home .t-section{
  padding: 56px 0 44px !important;
}

.page-home .t-viewport{
  padding: 34px 0 8px !important; /* antes 46 */
}

/* bloco Creators placeholder (se ainda existir) */
.page-home #creators.section{
  padding: 44px 0 !important;
}

/* Mobile: ainda mais enxuto */
@media (max-width: 720px){
  .page-home .section,
  .page-home .qs-section,
  .page-home .b-section,
  .page-home .t-section{
    padding: 44px 0 !important;
  }

  .page-home .t-viewport{ padding: 28px 0 6px !important; }
}

/* ===== LIVESTREAM / REQUISITOS ===== */
.ls-section{
  background:#fff;
  padding: 56px 0;
}

.ls-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ls-title{
  margin:0;
  font-size: 54px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: -1px;
  color: var(--gold);
  text-transform: uppercase;
}

.ls-sub{
  margin: 8px 0 6px;
  font-weight: 900;
  color:#111;
}

.ls-desc{
  margin:0;
  color:#111;
  opacity:.85;
  font-weight: 650;
}

.ls-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ls-card{
  background: #F2F2F2;
  border-radius: 26px;
  padding: 24:center;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 44px rgba(0,0,0,.06);
  min-height: 220px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 8px;
}

.ls-icon{
  color: var(--gold);
  display:flex;
  justify-content:center;
}

.ls-text{
  color:#111;
  font-weight: 700;
  line-height: 1.45;
  max-width: 260px;
  margin: 0 auto;
  text-align: center !important;
}

/* responsivo */
@media (max-width: 980px){
  .ls-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .ls-title{ font-size: 40px; }
  .ls-head{ align-items:flex-start; flex-direction:column; }
  .ls-grid{ grid-template-columns: 1fr; }
}

.ls-icon{
  display:flex;
  justify-content:center;
}

.ls-icon-img{
  width: 92px;      /* antes 64 */
  height: 92px;
  object-fit: contain;
  display:block;
}

.ls-footer{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

/* ===== Mobile slider (slide) - Depoimentos e Benefícios ===== */
@media (max-width: 720px){

  /* esconder scrollbar */
  .t-viewport, .b-viewport{
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    touch-action: pan-y; /* permite scroll vertical + swipe horizontal */
  }
  .t-viewport::-webkit-scrollbar,
  .b-viewport::-webkit-scrollbar{ display:none; }

  /* track sem transform (mata marquee/fade) */
  .t-track, .b-track{
    display: flex;
    gap: 16px;
    transform: none !important;
    will-change: auto;
    justify-content: flex-start !important;
    padding: 34px 14px 12px; /* espaço pro avatar do depoimento */
  }

  /* 1 por vez + snap central */
  .t-card, .b-card{
    flex: 0 0 auto !important;
    width: min(340px, 86vw) !important;
    scroll-snap-align: center;
  }
}

@media (max-width: 720px){
  .stats-grid{
    justify-items: center;
    text-align: center;
  }
  .stat{
    text-align: center;
  }

  /* último item ocupa as 2 colunas e fica central */
  .stats-grid .stat:last-child{
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 720px){

  /* 1 por vez, sem “peek” */
  .t-viewport, .b-viewport{
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .t-viewport::-webkit-scrollbar,
  .b-viewport::-webkit-scrollbar{ display:none; }

  .t-track{
    gap: 0 !important;
    padding: 34px 0 12px !important; /* mantém espaço pro avatar */
    transform: none !important;
  }
  .b-track{
    gap: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .t-card, .b-card{
    flex: 0 0 100% !important;  /* ocupa 100% do viewport */
    width: 100% !important;
    scroll-snap-align: start;
  }
}

/* Sobre a Luck: não cortar o globo */
.about-hero{
  overflow: visible !important; /* garante que nada seja cortado */
}

.about-hero-visual{
  height: 540px !important;                 /* mais alto */
  background-size: 560px auto !important;   /* globo maior */
  background-position: right center !important; /* centraliza verticalmente */
}

/* =========================
   PADRÃO GLOBAL DE ESPAÇAMENTO (todas as páginas)
   ========================= */
:root{
  --sec-y: 32px;        /* padding vertical padrão (desktop) */
  --sec-y-sm: 48px;     /* padding vertical padrão (mobile) */
  --sec-title-mb: 10px; /* espaço abaixo do título */
  --sec-sub-mb: 18px;   /* espaço abaixo do subtítulo */
}

/* 1) Padding padrão em TODAS as seções dentro do main */
main > section{
  padding: var(--sec-y) 0 !important;
}

/* 2) Exceções (não mexe em hero/slider/stats e heros especiais) */
main > section.hero,
main > section.stats,
main > section.about-hero{
  padding: 0 !important;
}

/* 3) Padronizar distância entre títulos/subtítulos */
main h2,
main .qs-title,
main .b-title,
main .t-title,
main .ls-title,
main .about-h2{
  margin: 0 0 var(--sec-title-mb) !important;
}

main .b-sub,
main .t-sub,
main .ls-desc,
main .about-sub{
  margin: 0 0 var(--sec-sub-mb) !important;
}

/* 4) Mobile: reduz todos os blocos igualmente */
@media (max-width: 720px){
  main > section{
    padding: var(--sec-y-sm) 0 !important;
  }

  main h2,
  main .qs-title,
  main .b-title,
  main .t-title,
  main .ls-title,
  main .about-h2{
    margin-bottom: 8px !important;
  }

  main .b-sub,
  main .t-sub,
  main .ls-desc,
  main .about-sub{
    margin-bottom: 14px !important;
  }
}

.site-nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn-login{
  white-space: nowrap;
}

/* no mobile, se faltar espaço, esconde o texto e deixa só Login */
@media (max-width: 720px){
  .btn-login{
    padding: 0 12px;
  }
}

/* Botão de ícone (login/logout) */
.icon-btn{
  width: 44px;
  height: 40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  transition: .2s ease;
}
.icon-btn:hover{
  border-color: rgba(212,175,55,.35);
  background: rgba(212,175,55,.06);
}

.icon{
  width: 22px;
  height: 22px;
  position: relative;
  display:block;
}

/* Desenha um “door” + seta com CSS */
/* Base (porta) */
.icon::before{
  content:"";
  position:absolute;
  inset: 2px 4px;
  border: 2px solid var(--gold);
  border-right: 0;
  border-radius: 6px;
}

/* Seta (por padrão aponta para direita = login/entrar) */
.icon::after{
  content:"";
  position:absolute;
  left: 6px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  box-shadow: 0 0 0 var(--gold);
}

/* ponta da seta */
.icon-login{
  /* seta para direita */
}
.icon-login span{}
.icon-login::after{
  content:"";
}
.icon-login::after{
  content:"";
}

/* Vamos desenhar a ponta usando um elemento extra via background */
.icon-login{
  background:
    linear-gradient(var(--gold),var(--gold)) 6px 50% / 14px 2px no-repeat,
    linear-gradient(var(--gold),var(--gold)) 17px 46% / 2px 8px no-repeat;
}

/* Logout = seta para esquerda (inverte) */
.icon-logout{
  background:
    linear-gradient(var(--gold),var(--gold)) 6px 50% / 14px 2px no-repeat,
    linear-gradient(var(--gold),var(--gold)) 6px 46% / 2px 8px no-repeat;
}

/* =========================================================
   PÁGINA LIVESTREAM
   Escopo: .live-page
========================================================= */
.live-page{ background:#fff; color:#111; }

.live-page .live-white{ background:#fff; }
.live-page .live-gray{ background:#F2F2F2; }

/* HERO */
.live-hero{
  background:#050505;
  color:#fff;
  padding: 78px 0;
  overflow:hidden;
}

.live-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items:center;
  min-height: 520px;
}

.live-hero-title{
  margin:0 0 16px;
  font-size: 64px;
  line-height: .92;
  font-weight: 950;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.live-hero-gold{ color: var(--gold); }

.live-hero-note{
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  line-height: 1.6;
}

.live-hero-cta{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* imagem única (saco de dinheiro) */
.live-hero-art{
  position: relative;
  height: 520px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.live-hero-money{
  width: min(520px, 100%);
  height: auto;
  transform: translateX(18px);
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.45));
  opacity: .98;
}

/* BLOCOS */
.live-block{
  padding: 68px 0;
}

.live-block-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items:center;
}

.live-reverse .live-text{ order: 1; }
.live-reverse .live-media{ order: 2; }

.live-media img{
  width:100%;
  height:auto;
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.live-h2{
  margin:0 0 10px;
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
  color: var(--gold);
  text-transform: uppercase;
}

.live-h3{
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color:#111;
}

.live-text p{
  margin: 0 0 12px;
  line-height: 1.65;
  color: rgba(0,0,0,.78);
  font-weight: 600;
}

/* REQUISITOS */
.live-req{
  padding: 68px 0;
}

.live-sub{
  margin: 0 0 18px;
  font-weight: 650;
  color: rgba(0,0,0,.75);
}

.live-req-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.live-req-card{
  background:#F2F2F2;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  padding: 22px 16px;
  text-align:center;
  box-shadow: 0 14px 44px rgba(0,0,0,.06);
  min-height: 210px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 10px;
}

.live-req-card img{
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto;
}

.live-req-card div{
  font-weight: 750;
  color:#111;
  line-height: 1.45;
}

.live-req-cta{
  margin-top: 22px;
  display:flex;
  justify-content:center;
}

/* FAIXA PRETA */
.live-strip{
  background:#050505;
  color:#fff;
  padding: 52px 0;
}

.live-strip-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.live-strip-title{
  font-weight: 950;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
}

.live-strip-sub{
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  font-weight: 650;
  text-transform:none;
}

.live-arrows{
  display:flex;
  gap: 12px;
}

.live-arrows span{
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--gold);
  opacity: .95;
}

/* RESPONSIVO */
@media (max-width: 980px){
  .live-hero-grid{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .live-hero-title{ font-size: 48px; }

  .live-hero-art{
    height: 360px;
    justify-content:center;
  }

  .live-hero-money{
    width: min(360px, 92%);
    transform: none;
  }

  .live-block-grid{
    grid-template-columns: 1fr;
  }

  .live-reverse .live-text{ order: 2; }
  .live-reverse .live-media{ order: 1; }

  .live-req-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .live-hero{ padding: 58px 0; }
  .live-hero-title{ font-size: 40px; }
  .live-h2{ font-size: 34px; }

  .live-req-grid{ grid-template-columns: 1fr; }

  .live-strip-title{ font-size: 32px; }
}

/* ===== Formulário (somente Livestream) ===== */
.live-form-section{
  background:#fff;
  padding: 70px 0;
}

.live-form-wrap{
  max-width: 780px;
  margin: 0 auto;
}

.live-form-title{
  margin: 0 0 10px;
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
  color: #0b0b0b;
  text-transform: uppercase;
}

.live-form-sub{
  margin: 0 0 26px;
  text-align: center;
  color: rgba(0,0,0,.75);
  font-weight: 650;
}

.live-form-alert{
  background: #fff3cd;
  border: 1px solid #ffe69c;
  color: #664d03;
  padding: 12px 14px;
  border-radius: 14px;
  margin: 0 0 16px;
  font-weight: 700;
}

.live-form{
  background: #fff;
}

.live-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.live-field label{
  display:flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  color:#111;
  margin: 0 0 8px;
}

.live-guide-link{
  font-weight: 900;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.live-field input,
.live-field textarea{
  width:100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 650;
  outline: none;
  background: #fff;
}

.live-field input:focus,
.live-field textarea:focus{
  border-color: rgba(212,175,55,.65);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}

.live-field-wide{ grid-column: 1 / -1; }

.live-form-actions{
  margin-top: 18px;
  display:flex;
  justify-content: center;
}

.live-hp{ display:none !important; }

/* ===== Modal guia ===== */
.live-guide-modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.live-guide-modal.is-open{ display:flex; }

.live-guide-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.65);
}

.live-guide-content{
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  max-width: 680px;
  width: calc(100% - 24px);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.live-guide-content img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 12px;
}

.live-guide-x{
  position:absolute;
  right: 10px;
  top: 8px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 860px){
  .live-form-title{ font-size: 36px; }
  .live-form-grid{ grid-template-columns: 1fr; }
}

.live-guide-content{
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  max-width: 1100px;          /* maior */
  width: calc(100% - 24px);
  max-height: 92vh;           /* cabe na tela */
  overflow: auto;             /* se precisar, rola */
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.live-guide-imglink{
  display:block;
}

.live-guide-content img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 12px;
}

.live-guide-hint{
  margin-top: 10px;
  font-weight: 800;
  color: rgba(0,0,0,.65);
  text-align: center;
  font-size: 13px;
}

/* =========================================================
 * Página: Trabalhe na Luck (/trabalhe-na-luck)
 * ========================================================= */
.work-hero{
  background: #D4AF37;
  padding: 58px 0;
  position: relative;
  overflow: hidden;
}

.work-hero-grid{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 30px;
}

.work-hero-photos{
  display:flex;
  gap: 18px;
  align-items: center;
}

.work-photo{
  width: 210px;
  height: 290px;
  border-radius: 26px;
  background: #e9e9e9;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  background-size: cover;
  background-position: center;
}

/* Placeholders (troque por background-image depois) */
.work-photo.ph1{ background-image: linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.02)); }
.work-photo.ph2{ background-image: linear-gradient(135deg, rgba(0,0,0,.10), rgba(0,0,0,.02)); }
.work-photo.ph3{ background-image: linear-gradient(135deg, rgba(0,0,0,.12), rgba(0,0,0,.02)); }

.work-hero-copy{
  position: relative;
  text-align: left;
  min-width: 360px;
}

.work-hash{
  font-weight: 950;
  font-size: 56px;
  line-height: 1;
  color: #0b0b0b;
  text-transform: uppercase;
}

.work-brand{
  margin-top: 8px;
  font-weight: 950;
  font-size: 62px;
  line-height: 1;
  color: var(--accent);
  text-transform: uppercase;
}

.work-bigmark{
  position:absolute;
  right: -70px;
  top: -40px;
  font-weight: 950;
  font-size: 220px;
  color: rgba(0,0,0,.12);
  pointer-events:none;
}

.work-content{
  background:#fff;
  padding: 58px 0;
}

.work-content-inner{
  max-width: 980px;
}

.work-title{
  margin:0 0 14px;
  text-align:center;
  color: var(--accent);
  font-weight: 950;
  font-size: 52px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.work-lead{
  max-width: 820px;
  margin: 0 auto 22px;
  text-align:center;
  color: rgba(0,0,0,.78);
  font-weight: 650;
  line-height: 1.55;
}

.work-block{
  margin-top: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 18px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.work-block h3{
  margin: 0 0 10px;
  font-weight: 950;
  color:#0b0b0b;
}

.work-block ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,.75);
  font-weight: 650;
}

.work-block li{ margin: 8px 0; }

/* Barra "Focados..." */
.grow-strip{
  background: #050505;
  padding: 54px 0;
}

.grow-strip-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.grow-strip-left h2{
  margin:0 0 10px;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 950;
  color: #fff;
  text-transform: uppercase;
}

.grow-strip-left p{
  margin:0;
  color: rgba(255,255,255,.75);
  font-weight: 650;
}

.grow-strip-right{
  display:flex;
  gap: 10px;
  align-items:center;
}

.grow-tri{
  width: 0; height: 0;
  border-left: 18px solid var(--gold);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  opacity: .95;
}

/* Form vagas */
.jobs-form-section{
  background:#fff;
  padding: 70px 0;
}

.jobs-form-wrap{
  max-width: 920px;
  margin: 0 auto;
}

.jobs-form-title{
  margin:0 0 10px;
  text-align:center;
  font-size: 56px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  color:#0b0b0b;
}

.jobs-form-sub{
  margin: 0 0 26px;
  text-align:center;
  color: rgba(0,0,0,.72);
  font-weight: 650;
}

.jobs-alert{
  background: #fff3cd;
  border: 1px solid #ffe69c;
  color: #664d03;
  padding: 12px 14px;
  border-radius: 14px;
  margin: 0 0 16px;
  font-weight: 800;
}

.jobs-ok{
  background: #d1e7dd;
  border-color: #a3cfbb;
  color: #0f5132;
}

.jobs-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.jobs-field label{
  display:block;
  margin: 0 0 8px;
  font-weight: 900;
  color:#111;
}

.jobs-field input,
.jobs-field select,
.jobs-field textarea{
  width:100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  padding: 12px 12px;
  font-weight: 650;
  outline: none;
  background: #fff;
}

.jobs-field input:focus,
.jobs-field select:focus,
.jobs-field textarea:focus{
  border-color: rgba(212,175,55,.65);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}

.jobs-field small{
  display:block;
  margin-top: 8px;
  color: rgba(0,0,0,.60);
  font-weight: 650;
}

.jobs-field-wide{ grid-column: 1 / -1; }

.jobs-checks{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}

.jobs-check{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 999px;
  font-weight: 900;
  color:#111;
}

.jobs-actions{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

.jobs-hp{ display:none !important; }

@media (max-width: 980px){
  .work-hero-grid{ flex-direction: column; align-items:flex-start; }
  .work-hero-photos{ width:100%; justify-content:center; }
  .work-hero-copy{ width:100%; min-width: auto; }
  .work-hash{ font-size: 44px; }
  .work-brand{ font-size: 50px; }
  .work-bigmark{ right: -20px; font-size: 180px; }

  .grow-strip-row{ flex-direction: column; align-items:flex-start; }
  .jobs-form-title{ font-size: 42px; }
  .jobs-grid{ grid-template-columns: 1fr; }
}

/* Trabalhe na Luck: ajustes de cor */
.work-brand{
  color: #FFFFFF !important; /* "LUCK" branco */
}

.work-title{
  color: var(--gold) !important; /* "TRABALHE NA LUCK" dourado */
}

/* Contorno RGB fino no "LUCK" */
.work-brand{
  color:#fff !important;

  /* contorno (principal) */
  -webkit-text-stroke: 1px #00e5ff; /* ciano (RGB vibe) */

  /* brilho RGB bem sutil (fallback/efeito) */
  text-shadow:
    0 0 0.5px #ff2aa6,   /* rosa */
    0 0 0.5px #00e5ff,   /* ciano */
    0 0 0.5px #a6ff00;   /* verde */
}

/* RGB alternando (contorno fino) no "LUCK" */
.work-brand{
  color:#fff !important;

  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ff2aa6;

  /* reforço do contorno (pra ficar visível mesmo onde o stroke falhar) */
  text-shadow: 0 0 0.6px #ff2aa6;

  animation: luckRGBStroke 2.2s linear infinite;
}

@keyframes luckRGBStroke{
  0%{
    -webkit-text-stroke-color:#ff2aa6; /* rosa */
    text-shadow: 0 0 0.6px #ff2aa6;
  }
  33%{
    -webkit-text-stroke-color:#00e5ff; /* ciano */
    text-shadow: 0 0 0.6px #00e5ff;
  }
  66%{
    -webkit-text-stroke-color:#a6ff00; /* verde */
    text-shadow: 0 0 0.6px #a6ff00;
  }
  100%{
    -webkit-text-stroke-color:#ff2aa6;
    text-shadow: 0 0 0.6px #ff2aa6;
  }
}

/* Hover global: botões dourados (fundo dourado + texto preto) invertem */
.btn-cta:hover,
.btn-gold:hover,
button.btn-cta:hover,
a.btn-cta:hover{
  background: #0b0b0b !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* garante borda dourada no estado normal (se algum botão estiver “sem borda”) */
.btn-cta,
.btn-gold,
button.btn-cta,
a.btn-cta{
  border: 1px solid transparent;
}

.btn-cta:hover svg,
.btn-gold:hover svg{
  fill: var(--gold) !important;
  stroke: var(--gold) !important;
}

/* =========================
   FAQ + faixa + redes (Luck)
   ========================= */

.faq-page .faq-hero{
  background: #050505;
  color:#fff;
  padding: 70px 0 54px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.faq-page .faq-title{
  margin:0;
  font-weight: 900;
  letter-spacing:.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: clamp(34px, 4.2vw, 64px);
}
.faq-page .faq-lead{
  margin: 14px 0 0;
  max-width: 900px;
  color: rgba(244,244,244,.78);
  font-weight: 600;
}

.faq-page .faq-section{
  background:#fff;
  padding: 44px 0 52px;
}
.faq-page .faq-empty{
  margin:0;
  color:#333;
  font-weight:700;
}

.faq-page .faq-list{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.faq-page .faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background:#f3f3f3;
  cursor:pointer;
  text-align:left;
}
.faq-page .faq-q-title{
  font-weight: 900;
  color:#0b0b0b;
  letter-spacing:.3px;
  line-height:1.2;
}
.faq-page .faq-arrow{
  width: 22px;
  height: 22px;
  color:#111;
  transition: transform .25s ease;
}

.faq-page .faq-item.is-open .faq-q{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  border-color: rgba(0,0,0,.12);
}
.faq-page .faq-item.is-open .faq-q-title{
  color:#0b0b0b;
}
.faq-page .faq-item.is-open .faq-arrow{
  transform: rotate(90deg); /* direita -> baixo */
  color:#0b0b0b;
}

/* painel resposta com animação suave */
.faq-page .faq-a{
  overflow:hidden;
  max-height: 0px;
  opacity: 0;
  transition: max-height .35s ease, opacity .22s ease;
}
.faq-page .faq-a-inner{
  padding: 14px 18px 4px;
  color:#111;
}
.faq-page .faq-a-inner p{ margin: 0 0 12px; }
.faq-page .faq-a-inner ul, .faq-page .faq-a-inner ol{ margin: 0 0 12px 18px; }

/* =========================
   Faixa "Mais de 100..."
   ========================= */
.faq-band{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  padding: 34px 0;
}
.faq-band-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items:center;
}
.faq-band-title{
  color:#0b0b0b;
  font-weight: 1000;
  letter-spacing:.5px;
  text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.02;
}
.faq-band-right{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:flex-start;
  justify-content:center;
}
.faq-band-arrows{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.faq-band-arrows span{
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 26px solid #0b0b0b; /* triângulo */
  opacity: .92;
}
.faq-band-note{
  color:#0b0b0b;
  font-weight: 800;
  opacity: .9;
  max-width: 560px;
}

@media (max-width: 900px){
  .faq-band-grid{ grid-template-columns: 1fr; }
  .faq-band-right{ align-items:flex-start; }
}

/* =========================
   Redes sociais
   ========================= */
.faq-social{
  background:#fff;
  padding: 50px 0 68px;
}
.faq-social-title{
  margin:0;
  color: var(--gold);
  font-weight: 1000;
  letter-spacing:.5px;
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 46px);
}
.faq-social-sub{
  margin: 10px 0 0;
  color:#1a1a1a;
  font-weight: 700;
  max-width: 860px;
}

.faq-social-grid{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.faq-social-card{
  border-radius: 18px;
  background:#0b0b0b;
  border: 1px solid rgba(212,175,55,.35);
  padding: 22px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 12px;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  color: var(--gold);
  min-height: 150px;
}
.faq-social-label{
  font-weight: 900;
  color:#fff;
  letter-spacing:.2px;
}
.faq-social-card:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  border-color: rgba(0,0,0,.18);
  color:#0b0b0b;
}
.faq-social-card:hover .faq-social-label{
  color:#0b0b0b;
}

@media (max-width: 980px){
  .faq-social-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .faq-social-grid{ grid-template-columns: 1fr; }
}

.faq-social-ico-img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

/* Ícones sociais (mask) */
.faq-social-ico{
  width: 46px;
  height: 46px;
  display: inline-block;
  background: var(--gold);              /* cor padrão do ícone */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* Cada ícone usa a própria imagem como máscara */
.faq-social-ico.ico-whatsapp{
  -webkit-mask-image: url("https://agencialuck.com.br/wp-content/uploads/2026/03/WhatsApp.png");
  mask-image: url("https://agencialuck.com.br/wp-content/uploads/2026/03/WhatsApp.png");
}
.faq-social-ico.ico-instagram{
  -webkit-mask-image: url("https://agencialuck.com.br/wp-content/uploads/2026/03/Instagram.png");
  mask-image: url("https://agencialuck.com.br/wp-content/uploads/2026/03/Instagram.png");
}
.faq-social-ico.ico-tiktok{
  -webkit-mask-image: url("https://agencialuck.com.br/wp-content/uploads/2026/03/TikTok.png");
  mask-image: url("https://agencialuck.com.br/wp-content/uploads/2026/03/TikTok.png");
}
.faq-social-ico.ico-linkedin{
  -webkit-mask-image: url("https://agencialuck.com.br/wp-content/uploads/2026/03/LinkedIn.png");
  mask-image: url("https://agencialuck.com.br/wp-content/uploads/2026/03/LinkedIn.png");
}

/* Hover: ícone vira preto */
.faq-social-card:hover .faq-social-ico,
.faq-social-card:focus-visible .faq-social-ico{
  background: #000;
}

/* Cards (padrão: fundo preto + ícone dourado; hover: fundo dourado + ícone preto) */
.faq-social-card{
  background:#0b0b0b;
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.faq-social-card:hover,
.faq-social-card:focus-visible{
  background: var(--gold);
  color:#000;
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* Ícone via MASK (sem img) */
.faq-social-ico{
  width: 44px;
  height: 44px;
  display:inline-block;

  background-color: var(--gold);     /* cor do ícone no estado normal */
  background-image: none !important;

  -webkit-mask-repeat:no-repeat;
  -webkit-mask-position:center;
  -webkit-mask-size:contain;

  mask-repeat:no-repeat;
  mask-position:center;
  mask-size:contain;
}

/* Hover: ícone vira preto */
.faq-social-card:hover .faq-social-ico,
.faq-social-card:focus-visible .faq-social-ico{
  background-color:#000;
}

/* Masks (usa os PNGs como máscara) */
.faq-social-ico.ico-whatsapp{
  -webkit-mask-image:url("https://agencialuck.com.br/wp-content/uploads/2026/03/WhatsApp.png");
  mask-image:url("https://agencialuck.com.br/wp-content/uploads/2026/03/WhatsApp.png");
}
.faq-social-ico.ico-instagram{
  -webkit-mask-image:url("https://agencialuck.com.br/wp-content/uploads/2026/03/Instagram.png");
  mask-image:url("https://agencialuck.com.br/wp-content/uploads/2026/03/Instagram.png");
}
.faq-social-ico.ico-tiktok{
  -webkit-mask-image:url("https://agencialuck.com.br/wp-content/uploads/2026/03/TikTok.png");
  mask-image:url("https://agencialuck.com.br/wp-content/uploads/2026/03/TikTok.png");
}
.faq-social-ico.ico-linkedin{
  -webkit-mask-image:url("https://agencialuck.com.br/wp-content/uploads/2026/03/LinkedIn.png");
  mask-image:url("https://agencialuck.com.br/wp-content/uploads/2026/03/LinkedIn.png");
}

/* Página: Política de Privacidade */
.legal-page{
  background:#fff;
  color:#111;
}

.legal-hero{
  padding: 64px 0 22px;
  background:#fff;
}

.legal-title{
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 56px;
  line-height: 1.02;
}

.legal-lead{
  margin: 0;
  max-width: 980px;
  color:#222;
  font-weight: 600;
  line-height: 1.55;
}

.legal-content{
  padding: 24px 0 70px;
}

.legal-prose{
  max-width: 980px;
}

.legal-h2{
  margin: 34px 0 10px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-h3{
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 900;
  color:#111;
}

.legal-prose p{
  margin: 0 0 12px;
  line-height: 1.7;
  color:#222;
}

.legal-prose ul{
  margin: 10px 0 0;
  padding-left: 18px;
}

.legal-prose li{
  margin: 8px 0;
  line-height: 1.7;
  color:#222;
}

.legal-link{
  color: var(--gold2);
  font-weight: 800;
  text-decoration: underline;
}

.legal-divider{
  margin: 36px 0 24px;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.10);
}

@media (max-width: 980px){
  .legal-hero{ padding: 42px 0 18px; }
  .legal-title{ font-size: 38px; }
  .legal-h2{ font-size: 30px; }
}

/* =========================================
   FOOTER - AGÊNCIA LUCK
========================================= */
.site-footer{
  background:#000;
  margin-top: 0;
}

.footer-top{
  background:#050505;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items:start;
  padding: 42px 0 38px;
}

.footer-col{
  min-width: 0;
}

.footer-brand-link{
  display:flex;
  align-items:center;
  gap: 12px;
}

.footer-brand-logo img,
.footer-brand-img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display:block;
}

.footer-brand-name{
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .6px;
  line-height: 1;
}

.footer-title{
  color:#fff;
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 16px;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.footer-links li{
  margin:0;
  padding:0;
}

.footer-links a{
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  transition: color .15s ease;
}

.footer-links a:hover{
  color:#fff;
}

.footer-contact{
  margin-bottom: 18px;
}

.footer-contact:last-child{
  margin-bottom: 0;
}

.footer-contact-label{
  color:#fff;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
}

.footer-contact-val{
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  word-break: break-word;
  transition: color .15s ease;
}

.footer-contact-val:hover{
  color:#fff;
}

.footer-bottom{
  background: linear-gradient(180deg, var(--gold), var(--gold2));
}

.footer-bottom-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  padding: 18px 0;
}

.footer-copy{
  color:#0b0b0b;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.footer-socials{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social{
  width: 48px;
  height: 48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 2px solid #0b0b0b;
  background: transparent;
  overflow: hidden;
  transition: transform .15s ease, background .15s ease;
}

.footer-social img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display:block;
  max-width: 100%;
  max-height: 100%;

  /* força os ícones a ficarem pretos no desktop e mobile */
  filter: brightness(0) saturate(100%);
  -webkit-filter: brightness(0) saturate(100%);
  opacity: 1;
}

.footer-social:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.08);
}

/* =========================================
   FOOTER MOBILE
========================================= */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    padding: 34px 0;
  }

  .footer-brand-col{
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px){
  .footer-top{
    padding: 0;
  }

  .footer-grid{
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 28px 0 30px !important;
  }

  .footer-col,
  .footer-brand-col{
    width:100%;
  }

  .footer-brand-link{
    justify-content:flex-start;
    gap: 10px;
  }

  .footer-brand-logo img,
  .footer-brand-img{
    width: 42px;
    height: 42px;
  }

  .footer-brand-name{
    font-size: 16px;
  }

  .footer-title{
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-links{
    gap: 10px;
  }

  .footer-links a{
    font-size: 15px;
  }

  .footer-contact{
    margin-bottom: 14px;
  }

  .footer-contact-label{
    font-size: 15px;
    margin-bottom: 4px;
  }

  .footer-contact-val{
    font-size: 15px;
  }

  .footer-bottom-row{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 20px 0 24px;
  }

  .footer-copy{
    font-size: 14px;
    text-align: center;
  }

  .footer-socials{
    width:100%;
    justify-content:center;
    gap: 12px;
  }

  .footer-social{
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
  }

  .footer-social img{
    width: 24px;
    height: 24px;

    /* mantém preto também no mobile */
    filter: brightness(0) saturate(100%);
    -webkit-filter: brightness(0) saturate(100%);
  }
}