/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Saira Expanded', sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

[data-animar] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

[data-animar].ativo {
  opacity: 1;
  transform: translateY(0);
}

#scroll-indicador {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, rgb(67 185 226), rgb(255, 0, 179));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease;
  z-index: 999;
}

/* LAYOUT DAS SECOES */
.tela {
  min-height: 93vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.container p {
  margin-bottom: 0.8rem;
}


.container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  text-align: justify; 
  text-align-last: left;
  backdrop-filter: blur(50px);
  background: rgb(0 182 255 / 15%);
  border: 1px solid rgb(0 182 255 / 15%);
  border-radius: 30px;
  padding: 30px 20px;
}

h1 {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 2.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.highlight-rosa {
    color: rgb(255 4 187);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.lista {
  list-style: none;
  padding-left: 0;
}

.lista li {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4rem;
  display: flex;
  align-items: flex-start;
}

.lista li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 0.75rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* SETA GLOBAL FIXA */
.seta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  animation: pulse 1.5s infinite;
  cursor: pointer;
  width: 29px;
  height: 29px;
  display: none;
}

.seta svg {
  width: 29px;
  height: 29px;
  stroke: white;
  display: block;
}

@keyframes pulse {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ICONES */
.icone-topo svg{
  stroke: rgb(255, 0, 76);

}

.icone-pequeno svg {
  width: 24px;
  height: 24px;
  stroke: white;
  margin-bottom: 0.3rem;
}

/* BOTOES */
.botoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}



.botoes button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  
}

.botoes button:hover {
  background-color: white;
  color: black;
}

.botoes .botao-cinza {
    background-color: rgb(255 255 255 / 32%);
    color: white;
    border: 1px solid rgb(255 255 255 / 52%);
    border-radius: 16px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
}

.botoes .botao-cinza:hover {
    background-color: rgb(53 53 53);
    color: white;
}

.botoes .botao-verde {
    background-color: rgb(0 211 255 / 32%);
    color: white;
    border: 1px solid rgb(0 199 255 / 52%);
    border-radius: 16px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
}

.botoes .botao-verde:hover {
    background-color: rgb(0 114 137);
    color: white;
}

.botoes .botao-rosa {
    background-color: rgb(255 0 168 / 31%);
    color: white;
    border: 1px solid rgb(255 0 168 / 42%);
    border-radius: 16px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-transform: uppercase;
}

.botoes .botao-rosa:hover {
    background-color: rgb(255 4 129);
    color: white;
}

  .footer-credits {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: #aaa;
  font-weight: 400;
  background: transparent;
}

.footer-credits i {
  color: #ff006c;
  margin: 0 0.3rem;
}

.footer-credits a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credits a:hover {
  color: #ff006c;
}


.background-video {
  position: fixed; /* melhor que absolute para garantir que fica no fundo de tudo */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -10;
  filter: brightness(100%);
  pointer-events: none; /* garante que não interfere com cliques */
}


/* Navegadores WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000; /* fundo da barra */
}

::-webkit-scrollbar-thumb {
  background-color: rgb(255 4 187); /* rosa sólido */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255 4 187); /* rosa mais escuro ao passar o mouse */
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgb(255 4 187) #000;
}