/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e4141b;
  --red-hi: #ff2a34;
  --orange: #FB8E4A;
  --orange-deep: #C85A16;
  --ink: #0b0b0d;
  --paper: #ffffff;
  --glass: rgba(255,255,255,.08);
  --glass-brd: rgba(255,255,255,.18);
  --muted: rgba(255,255,255,.62);
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #fff;
  min-height: 100dvh;
  background: #0b0b0d;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Background (foto do setup, em P&B) ===== */
.bg {
  position: fixed;
  inset: 0;
  background: url('assets/back-hd.webp') center / contain no-repeat #0b0b0d;
  filter: grayscale(1) contrast(1.05) brightness(.85);
  z-index: -2;
}
.bg-scrim {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(228,20,27,.20), transparent 55%),
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(9,9,11,.80) 45%, rgba(7,7,9,.94) 100%);
  z-index: -1;
}

/* ===== Layout ===== */
.wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Sheet (cartão branco do conteúdo) ===== */
.sheet {
  width: 100%;
  margin-top: 0;
  background: var(--paper);
  border-radius: 0;
  padding: 0 38px 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

/* ===== Hero ===== */
.hero { text-align: center; width: 100%; animation: rise .7s ease both; }

.photo {
  position: relative;
  /* menor e centralizada; recorte transparente funde direto no cartão */
  width: 280px;
  max-width: 78%;
  margin: 0 auto;
  margin-top: -18%;
}
.photo img {
  width: 100%;
  display: block;
  /* corpo inteiro visível; fade suave só no finzinho pra sumir a borda */
  -webkit-mask-image: linear-gradient(180deg, #000 84%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 84%, transparent 100%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-top: -8px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .2px;
  position: relative;
  z-index: 2;
}
.badge span { color: var(--ink); }
.badge b { color: var(--orange); font-weight: 700; }
.badge__verified { width: 28px; height: 28px; margin-right: 8px; flex: 0 0 auto; }

.name {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: clamp(34px, 11vw, 46px);
  line-height: .98;
  margin: 16px 0 10px;
  color: var(--ink);
}

.tag {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(11,11,13,.72);
  max-width: 340px;
  margin: 0 auto;
  font-weight: 500;
}
.tag .emoji { white-space: nowrap; }

.credentials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 4px;
}
.credentials li {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(11,11,13,.78);
  background: rgba(11,11,13,.05);
  border: 1px solid rgba(11,11,13,.10);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ===== Social row ===== */
.socials {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 4px;
}
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(11,11,13,.05);
  border: 1px solid rgba(11,11,13,.10);
  transition: transform .18s ease, background .18s ease;
}
.socials a:hover { transform: translateY(-3px); background: rgba(11,11,13,.12); }
.socials svg { width: 20px; height: 20px; }

/* ===== Links ===== */
.links {
  width: 100%;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(11,11,13,.04);
  border: 1px solid rgba(11,11,13,.10);
  border-radius: 16px;
  padding: 15px 16px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  animation: rise .6s ease both;
}
.btn:hover { transform: translateY(-2px); background: rgba(11,11,13,.08); border-color: rgba(11,11,13,.2); }

.btn__icon {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(11,11,13,.06);
  font-size: 20px;
}
.btn__icon svg { width: 22px; height: 22px; color: var(--ink); }

.btn__text { flex: 1; min-width: 0; text-align: left; }
.btn__text b { display: block; font-size: 15px; font-weight: 700; line-height: 1.2; }
.btn__text small { display: block; font-size: 12px; color: rgba(11,11,13,.55); margin-top: 2px; line-height: 1.3; }
.btn__arrow { color: rgba(11,11,13,.35); font-size: 18px; transition: transform .18s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); color: var(--ink); }

/* Primary (YouTube) */
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #b8101a);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(228,20,27,.35);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--red-hi), var(--red)); }
.btn--primary .btn__icon { background: rgba(0,0,0,.18); }
.btn--primary .btn__icon svg { color: #fff; }
.btn--primary .btn__text small { color: rgba(255,255,255,.85); }
.btn--primary .btn__arrow { color: rgba(255,255,255,.8); }
.btn--primary:hover .btn__arrow { color: #fff; }

/* Newsletter */
.btn--news {
  background: var(--ink);
  border-color: transparent;
  color: #fff;
}
.btn--news .btn__icon { background: rgba(255,255,255,.12); }
.btn--news .btn__text small { color: rgba(255,255,255,.7); }
.btn--news .btn__arrow { color: rgba(255,255,255,.5); }
.btn--news:hover { background: #1c1c20; }
.btn--news:hover .btn__arrow { color: #fff; }

/* Contato / Parcerias */
.btn--contact {
  color: #fff;
  background: #FB8E4A;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(251,142,74,.35);
}
.btn--contact:hover { background: #ff9e5e; }
.btn--contact .btn__icon { background: rgba(255,255,255,.18); }
.btn--contact .btn__text small { color: rgba(255,255,255,.85); }
.btn--contact .btn__arrow { color: rgba(255,255,255,.8); }
.btn--contact:hover .btn__arrow { color: #fff; }

/* ===== Feature card ===== */
.feature {
  margin-top: 4px;
  text-decoration: none;
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,11,13,.10);
  background: var(--ink);
  display: block;
  transition: transform .2s ease;
  animation: rise .6s ease both;
  box-shadow: 0 14px 34px rgba(11,11,13,.18);
}
.feature:hover { transform: translateY(-2px); }
.feature__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.feature__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(9,9,11,.85) 100%);
}
.feature__body { padding: 16px 18px 20px; margin-top: -46px; position: relative; }
.feature__kicker {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff; background: var(--red);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 10px;
}
.feature__desc { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.82); }

/* Card só de texto (Quem sou eu) */
.feature--text {
  padding: 22px 22px 24px;
  background: transparent;
  border: 1px solid rgba(11,11,13,.15);
  box-shadow: none;
  color: var(--ink);
}
.feature--text:hover { transform: none; }
.feature--text .feature__kicker { font-size: 12px; padding: 5px 12px; margin-bottom: 14px; background: var(--orange); color: #fff; }
.feature--text .feature__desc { margin-bottom: 12px; color: rgba(11,11,13,.82); }
.feature--text .feature__desc:last-child { margin-bottom: 0; }

.feature__cta {
  display: inline-block; margin-top: 14px;
  font-family: 'Anton', sans-serif; letter-spacing: 1px; font-size: 15px;
  background: #fff; color: var(--ink);
  padding: 11px 22px; border-radius: 10px;
  transition: transform .18s ease;
}
.feature:hover .feature__cta { transform: scale(1.03); }

/* ===== Footer ===== */
.foot { margin-top: 30px; font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .3px; }

/* ===== Anim ===== */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* stagger */
.links .btn:nth-child(1){animation-delay:.05s}
.links .btn:nth-child(2){animation-delay:.10s}
.links .btn:nth-child(3){animation-delay:.15s}
.links .btn:nth-child(4){animation-delay:.20s}
.links .btn:nth-child(5){animation-delay:.25s}
.feature{animation-delay:.30s}
