/* Anti-overflow global */
* { box-sizing: border-box; }
html, body { width:100%; max-width:100%; overflow-x: clip; } /* use clip em vez de hidden p/ evitar barras fantasmas */

body {
  margin: 0;
  font-family: 'Merriweather', monospace;
  background: #444444;
  padding: 1rem;
  @media screen and (max-width: 768px) {
    padding: 0.4rem;
  }
  width:100%; max-width:100%; overflow-x: clip;
  user-select: none;
  -webkit-user-select: none;  /*Para navegadores baseados em WebKit */
  -moz-user-select: none;     /* Para Firefox */
  -ms-user-select: none;      /*Para Internet Explorer e Edge */
}

/* Mídia nunca maior que o contêiner */
img, video, canvas, svg, iframe { max-width:100%; height:auto; display:block; }

/* Evitar armadilhas de flex/grid */
.flex > * { min-width:0; }            /* itens flex não “estouram” */
.grid { grid-template-columns: minmax(0, 1fr); }

/* Evitar 100vw (inclui a largura da barra de rolagem) */
:root { --safe-vw: calc(100vw - (100vw - 100%)); }
.full-bleed { width: var(--safe-vw); }   /* use essa classe no lugar de width:100vw */

/* Sombreados/efeitos que estouram */
.has-shadow, .glitch, .hero { overflow-x: clip; }

.menu-esquerdo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0.5rem;
  top: 1rem;
  z-index: 1010;
}
.menu-esquerdo > div {
  padding: 0.1rem 0.7rem;
  cursor: pointer;
  border-radius: 0.3rem;
  background: #b9b7b0;
  border: 1px solid #cfcdc7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.menu-esquerdo > div > a {
  color: #221b08;
  font-family: Rajdhani, sans-serif;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
}
.menu {
  display: flex;
  z-index: 1000;
  position: fixed;
  gap: 1rem;
  justify-self: center;
}
.menu > img{
  cursor: pointer;
  border-radius: 50%;
  background: #b9b7b0;
  border: 1px solid #cfcdc7;
  color: #363021;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  padding: 0.8rem;
  
}
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out; /* Transição suave em 1 segundo */
}
.fade-in.show {
  opacity: 1; /* Elemento visível */
}
.pulsar-icon {
  width: 48px;
  height: 48px;
  animation: pulseGlow 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 4px #d5c393);
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px #d5c393);
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #ffe9b8);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 4px #d5c393);
  }
}

.audio-card {
  background: rgba(48, 44, 34, 0.6);
  border: 1px solid #bda57c44;
  border-radius: 10px;
  padding: 0.7rem;
  max-width: 400px;
  margin: 1rem auto;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  color: #e5dbbb;
  font-family: 'Rajdhani', monospace;
  font-weight: 700;
}

.audio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.audio-header img {
  width: 40px;
  height: 40px;
}

.audio-card h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #f0e1c2;
}

.audio-descricao {
  font-size: 1.1rem;
  color: #c6bc98;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.audio-texto {
  font-size: 1rem;
  color: #c6bc98;
  margin-top: 0.4rem;
  margin-bottom: 0.4em;
}


.audio-card audio {
  width: 100%;
  outline: none;
}

.titleBRO {
  font-size: 3rem;
  text-align: center;
  color: #b49444;
  margin-bottom: 0.2rem;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  font-family: Orbitron, sans-serif;
  padding-top: 4.5rem;
}

.form-captura {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.5rem;
  border: 1px solid #916a19;
  background-color: rgb(75, 59, 9, 0.5);
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(255, 215, 100, 0.1);
  font-family: 'Rajdhani', sans-serif;
  color: #fdfcc0;
  margin-bottom: 1rem;
  margin-top: 2rem;
  @media screen and (max-width: 568px) {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.form-captura input[type="email"],
.form-captura input[type="text"] {
  padding: 0.8rem 0.8rem;
  margin-bottom: 1rem;
  background-color: #1a1503;
  color: #fdfcc0;
  border: 1px solid #916a19;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Rajdhani', sans-serif;
  box-shadow: inset 0 0 6px rgba(255, 245, 180, 0.4);
}

.form-captura input[type="email"]::placeholder,
.form-captura input[type="text"]::placeholder {
  color: #c6bc8f;
  opacity: 0.7;
}

.form-captura input:focus {
  outline: none;
  border-color: #e6c26b;
  background-color: #2a240c;
  box-shadow: 0 0 6px rgba(255, 245, 150, 0.3);
}

.form-captura button[type="submit"] {
  padding: 0.8rem 1.5rem;
  background-color: #e6c26b;
  color: #1a1503;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(61, 59, 52, 0.3);
  margin-bottom: 1rem;
}

.form-captura button[type="submit"]:hover {
  background-color: #f5d67a;
  box-shadow: 0 0 12px rgba(255, 230, 130, 0.5);
  transform: scale(1.02);
}

/* Checkbox e Radio */
form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.form-captura input[type="checkbox"],
.form-captura input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #e6c26b;
  border-radius: 4px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}

.form-captura input[type="radio"] {
  border-radius: 50%;
}

.form-captura input[type="checkbox"]:checked::after,
.form-captura input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #fdfcc0;
  border-radius: 50%;
}

.botao-cinza {
  display: flex;
  justify-content: space-around;
  cursor: pointer;
  width: auto;
  background-color: #b9b7b0;/* 
  padding: 0 1rem; */
  border-radius: 8px;     
  border: 1px solid #696865;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}
.botao-cinza > p {
  color: #363021;
  font-family: Rajdhani, sans-serif;
  text-transform: uppercase; font-weight: bold;
  text-shadow: 1px 1px rgba(24, 23, 20, 0.25);
  font-size: 0.9rem;
}
.botao-cinza > img {
  margin-right: 0.4rem;
}
@keyframes glitch {
  0% { transform: none; }
  10% { transform: translate(1px, -1px) skew(-0.5deg); }
  20% { transform: translate(-1px, 1px) skew(0.5deg); }
  30% { transform: translate(0.5px, 0.5px); }
  40% { transform: translate(-0.5px, -0.5px); }
  100% { transform: none; }
}


@keyframes scanlineMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
@keyframes brilhoFuturo {
  0% {
    text-shadow: 0 0 6px rgba(253, 252, 192, 0.3);
  }
  50% {
    text-shadow: 0 0 12px rgba(253, 252, 192, 0.9);
  }
  100% {
    text-shadow: 0 0 6px rgba(253, 252, 192, 0.3);
  }
}
@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}