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

 
html, body {
  margin: 0;
  padding: 0;
  background: #000;
}

html,body{ height:100%; font-family:Arial, sans-serif; } 
body{ overflow:hidden; }

/* container do scroll (body ou um wrapper) 

/* suas seções 100vh */
section {
  scroll-snap-align: start;
  scroll-snap-stop: normal; /* evita travar */
}

.snap{
  height:100vh;
  overflow-y:auto;
  scroll-snap-type: y proximity;
  scroll-behavior:smooth;
}

.panel{
  height:100vh;
  scroll-snap-align:start;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

/* ===== SECTION 1 ===== */
.panel--profile{
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(27, 27, 27, 0.85)),
              url("assets/bg1.png");
  background-size:cover;
  background-position:center;
}

.profile-card{
  width: min(560px, 92vw);
  border-radius: 22px;
  position: relative;
  text-align: center;
  color: #fff;

  /* pra centralizar verticalmente dentro do card */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* altura fixa do card (pode ajustar) */
  min-height: 240px;

  /* sem padding-top antigo */
  padding: 34px 22px;
  background: transparent;
}

/* AVATAR + NOME centralizados */
.avatar-wrap{
  position: static;          /* remove absolute */
  transform: none;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.25);
}

.avatar{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-content{
  padding: 0;
  text-align: center;
}

.name{
  margin: 0;
  font-size: 28px;
  letter-spacing: .6px;
}

.tagline{
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 6px;      /* fica parecido com “t o x i c o” */
  text-transform: lowercase;
  opacity: .75;
}
/* ===== SECTION 2 (VSCO) ===== */
.panel--gallery{
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(27, 27, 27, 0.85)),
              url("assets/bg2.png");
  background-size:cover;
  background-position:center;

  overflow-y:auto;
  padding:44px 0 80px;
  align-items:flex-start;
}

.masonry{
  width:min(1180px,82vw);
  margin:0 auto;
  column-count:4;
  column-gap:34px;
}

.shot{
  break-inside:avoid;
  margin:0 0 34px;
}

.shot img{
  width:100%;
  display:block;
  transition:opacity .2s;
}

.shot:hover img{ opacity:.9; }

@media (max-width:980px){
  .masonry{ column-count:3; }
}
@media (max-width:760px){
  .masonry{ column-count:2; }
}
@media (max-width:520px){
  .masonry{ column-count:1; }
}

/* dots */
.dots{
  position:fixed;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:100;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1px solid #aaa;
  background:#eee;
  cursor:pointer;
}

.dot.is-active{
  background:#000;
}

/* ===== OCULTAR SCROLLBAR ===== */

/* Chrome, Edge, Opera */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE antigo */
* {
  -ms-overflow-style: none;
}

.sound-btn{
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.sound-btn:hover{
  background: rgba(0,0,0,.5);
}

/* RETÂNGULO ATRÁS + NEON */
.profile-card::before{
  content: "";
  position: absolute;
  inset: -22px -110px; /* controla o tamanho do retângulo atrás (largura) */
  border-radius: 18px;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);

  /* neon branco atrás */
  box-shadow:
    0 0 30px rgba(255,255,255,.18),
    0 0 90px rgba(255,255,255,.10);

  z-index: -1;

  /* animação suave */
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

/* HOVER: “liga” o neon + cresce de leve */
.profile-card:hover::before{
  transform: scale(5);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);

  box-shadow:
    0 0 40px rgba(255,255,255,.28),
    0 0 120px rgba(255,255,255,.18),
    0 0 220px rgba(255,255,255,.10);
}

/* HOVER: micro animação no avatar também (opcional) */
.profile-card:hover .avatar-wrap{
  transform: translateY(-2px);
  transition: transform .25s ease;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25; /* opacidade baixa */
  pointer-events: none;
}

.mouse {
  width: 28px;
  height: 45px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.8s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    top: 22px;
  }
}

.snap-section {
  contain: layout paint;
}

.animado {
  will-change: transform, opacity;
  transform: translateZ(0);
}
