@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook&display=swap');




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

/* Corpo e fundo */
body {
  background-image: url('src/imagens/wallpaper.jpg');
  background-color: #000000;
  background-repeat: repeat;
  background-size: contain;
  color: #d4c0a1;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
  /* Evita rolagem horizontal */
}

.logo-titulo {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  /* margem reduzida acima */
  margin-bottom: 10px;
  /* remove espaço abaixo */
  flex-direction: column;
  /* Altera para coluna */
}

.logo {
  position: relative;
  display: block;
  max-width: 750px;
  animation: leveBrilhoSangue 5s ease-in-out infinite alternate;
  margin: 0 auto;

}


@keyframes leveBrilhoSangue {
  0% {
    filter: drop-shadow(0 0 5px #2c0000);
  }



  100% {
    filter: drop-shadow(0 0 5px #8b0000);
  }
}



.lang-btn {
  position: absolute;
  top: 10px;
  right: 18px;
  padding: 1px 7px;
  background-color: #1e1010;
  color: #d4c0a1;
  border: 1px solid #5c2d2d;
  border-radius: 5px;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: 0 0 6px #00000088;
  transition: background 0.3s, color 0.3s;
  z-index: 10;
  min-width: 32px;
  min-height: 22px;
  height: 30px;
  line-height: 30px;

}

.lang-btn:hover {
  background-color: #7b0000;
  color: #fff;
  box-shadow: 0 0 12px #311111;
}


/* Container central */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #000000aa;
  position: relative;
  min-height: unset;

}

/* Header gótico */
header {
  background: linear-gradient(#000000, #390202be);
  border-bottom: 3px double #2c0a0a;
  width: 100%;
  box-shadow: inset 0 0 12px #1a0505, 0 0 20px #00000088;
  font-family: 'Libre Baskerville', serif;
  color: #7b0000;
  text-align: center;
  position: relative;
  z-index: 10;
  background: linear-gradient(#000000, hsla(0, 93%, 12%, 0.745));
  padding: 0;
}



header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  left: 0;
  background: url('src/imagens/wallpaper.jpg') repeat-x;
  opacity: 0.4;
  z-index: 1;
}

header::before {
  top: 0;
  transform: scaleY(-1);
}

header::after {
  bottom: 0;
}

header h2 {
  font-size: 2.8rem;
  color: #d4c0a1;
  text-shadow: 2px 2px 6px #000000;
  margin: 15px 0;
  letter-spacing: 3px;

}


/* Navegação */
.bloco-lateral {
  text-align: center;
  /* centraliza o nav no bloco */
  margin-top: 20px;
}

nav ul.nav-botoes {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
  /* evita quebra de linha, se preferir */
}

nav ul.nav-botoes li a {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.80rem;
  color: #d4c0a1;
  text-decoration: none;
  padding: 10px 10px 10px 10px;
  border-radius: 6px;
  background-color: #1e101085;
  box-shadow: inset 0 0 4px #000000, 0 0 6px #00000044;
  transition: all 0.3s ease;
  display: inline-block;
}

nav ul.nav-botoes li a:hover {
  color: #d4c0a1;
  background-color: #7b0000;
  border-color: #5c2d2d;
  box-shadow: 0 0 12px #311111;
}


/* Main */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  flex: 1 0 auto;
  justify-content: flex-start;

}


/* Conteúdo */
.conteudo {
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: block;
  align-items: center;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Seções */
.sessao {
  display: none;
  opacity: 0;
  transition: opacity 2.5s ease;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}


.sessao.active {
  display: block;
  opacity: 1;
  animation: fadeInSessao 2.5s;
  height: auto;
  margin: 25px 20px 0 20px;
  padding: 20px;
  overflow: visible;
}

@keyframes fadeInSessao {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sobre {
  padding: 1.5rem;
  margin: 25px 20px 0 20px;
  background-color: #0a0a0a48;
  border: 2px solid #72000066;
  border-radius: 12px;
  font-family: 'Elegant', serif;
  box-shadow: 0 0 10px rgba(114, 0, 0, 0.3);
  width: 50%;
  text-align: left;

}

.sobre .decor-line {
  width: 100%;
  height: 1.8px;
  background: linear-gradient(to right, #2c0a0a, #720000, #2c0a0a);
  margin-top: 50px;
  box-shadow: 0 0 7px #2c0a0a99;
  position: relative;
  top: -38px;
  /* opcional: mais controle fino */
}



.moldura-container {
  position: relative;
  width: 250px;
  /* ajuste conforme o tamanho da moldura */
  height: 400px;
  order: 2;
  /* aparece depois, à direita */
  margin: 0;
  /* remove centralização */
  flex-shrink: 0;

}

.moldura-wrapper {
  flex: 0 0 300px;
}

.texto-sobre {
  flex: 1;
  max-width: 600px;
  order: 1;
  transform: translateY(-45px);
  /* sobe o texto */
  padding: 1.8rem;

}

.sobre h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #7b0000;
  text-align: center;
  top: -20px;

}

.sobre-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: row;
  /* garante que fique lado a lado */



}

.texto-sobre p {
  font-size: 1rem;
  line-height: 1.6;
  color: #d4c0a1;
}

.foto {
  position: absolute;
  top: 16%;
  /* ajuste para alinhar com o centro da moldura */
  left: 18%;
  width: 63%;
  height: 63%;
  object-fit: cover;
  border-radius: 50%;
  /* ou remova se quiser quadrado */
  z-index: 1;
  margin: -32px auto 0 auto;

}

.moldura {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  margin: -32px auto 0 auto;

}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
    /* sobe suavemente */
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  flex-wrap: wrap;
}

/* Texto aparece primeiro, bem suave */
.texto-sobre {
  opacity: 0;
  animation: fadeInUp 2.5s ease-out forwards;
  animation-delay: 0.3s;
}

/* Moldura + foto entra depois, suavemente */
.moldura-container {
  opacity: 0;
  animation: fadeInUp 2.5s ease-out forwards;
  animation-delay: 1.2s;
}


.sessao.shop {
  padding: 30px;
  margin: 50px auto;
  background-color: #0a0a0a48;
  border: 2px solid #72000066;
  border-radius: 12px;
  font-family: 'Elegant', serif;
  box-shadow: 0 0 10px rgba(114, 0, 0, 0.3);

  width: 90%;
  max-width: 1000px;

  text-align: center;
}


.shop-description {
  margin: 15px 0 25px 0;
  font-size: 1rem;
  color: #d4c0a1;
  animation: fadeInUp 1.5s ease-out forwards;
}

.shop-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.shop-container a {
  text-decoration: none;
}

.shop-image {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #72000066;
  box-shadow: 0 0 12px rgba(114,0,0,0.4);
  transition: all 0.3s ease;
}

.shop-image:hover {
  transform: scale(1.04);
  border-color: #7b0000;
  box-shadow: 0 0 20px rgba(123,0,0,0.7);
}
.sessao.contato {

  padding: 20px;
  margin: 25px 20px 0 20px;
  background-color: #0a0a0a48;
  border: 2px solid #72000066;
  border-radius: 12px;
  font-family: 'Elegant', serif;
  box-shadow: 0 0 10px rgba(114, 0, 0, 0.3);
  width: 35%;
  text-align: center;

}

.contato .decor-line {
  width: 100%;
  height: 1.8px;
  background: linear-gradient(to right, #2c0a0a, #720000, #2c0a0a);
  margin-top: 50px;
  box-shadow: 0 0 7px #2c0a0a99;
  position: relative;
  top: -38px;
  /* opcional: mais controle fino */
}

.contato p {
  font-size: 1rem;
  line-height: 1.6;
  color: #d4c0a1;
  margin-top: 10px;
  animation: fadeInUp 1.9s ease-out forwards;

}

.contato h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #7b0000;
  text-align: center;
  top: -20px;
}

.sessao.portfolio {
  padding: 20px;
  margin: 25px 20px 0 20px;
  background-color: #0a0a0a48;
  border: 2px solid #72000066;
  border-radius: 12px;
  font-family: 'Elegant', serif;
  box-shadow: 0 0 10px rgba(114, 0, 0, 0.3);
  width: 90%;
  max-width: 900px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  text-align: center;
}

.portfolio .decor-line {
  width: 100%;
  height: 1.8px;
  background: linear-gradient(to right, #2c0a0a, #720000, #2c0a0a);
  margin-top: 50px;
  box-shadow: 0 0 7px #2c0a0a99;
  position: relative;
  top: -38px;
  /* opcional: mais controle fino */
}

.portfolio h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #7b0000;
  text-align: center;
  top: -20px;
}


/* Contato - itens */
.contato-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  z-index: 2;

}

.contato-item {
  background-color: #3f0707;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.contato-item:hover {
  background-color: #420303;
}

.contato-item i {
  font-size: 1em;
}

.contato-item a {
  color: #dfdfdf;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.80em;
  transition: color 0.3s ease;
}

.contato-item a:hover {
  color: #450407;
}

/* Botões */
.botoes-contato {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 0;
  list-style: none;
  padding-left: 0;
  gap: 12px;
  /* espaçamento entre botões */
}

.botoes-contato li {
  list-style: none;
}

.btn-glow {
  width: 140px;
  /* largura fixa para todos */
  padding: 8px 12px;
  color: #f4e7d4;
  font-size: 0.70rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* espaçamento entre ícone e texto */
  font-family: 'Libre Baskerville', serif;
  color: #cdbfb2;
  border-radius: 6px;
  background-color: #1e101085;
  box-shadow: inset 0 0 4px #000000, 0 0 6px #00000044;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-glow i {
  width: 16px;
  /* tamanho fixo para os ícones */
  height: 16px;
  display: inline-block;
}


.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 0, 13, 0.3) 0%, transparent 70%);
  animation: blood-shine 2.5s infinite ease-in-out;
  z-index: 0;
}

.btn-glow::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 12px;
  background: linear-gradient(to bottom, #ff000d, transparent);
  border-radius: 50%;
  animation: drip 2s infinite ease-in-out;
  opacity: 0.8;
}

.btn-glow:hover {
  transform: scale(1.05);
  color: #d4bfa5;
  background-color: #760101;
  border-color: #5c2d2d;
  box-shadow: 0 0 12px #311111;
}

/* Novo estilo para botões da seção de contato */
.btn-contato {
  font-family: 'Elegant', serif;
  font-size: 1rem;
  color: #d4c0a1;
  background-color: #1e101085;
  box-shadow: inset 0 0 4px #000000, 0 0 6px #00000044;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn-glow.btn-contato:hover {
  color: #d4c0a1;
  background-color: #7b0000;
  box-shadow: 0 0 12px #311111;
}

.conteudo-contato {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/* Animações */
@keyframes blood-shine {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes drip {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 0.6;
  }

  25%,
  75% {
    transform: translateX(-50%) translateY(4px) scale(1.05);
    opacity: 0.8;
  }

  50% {
    transform: translateX(-50%) translateY(8px) scale(1.1);
    opacity: 1;
  }
}

/* Carrossel */
.carrossel {
  position: relative;
  max-width: 100%;
  margin: 10px 10px;
  overflow: hidden;
}

.slides {
  transition: transform 0.5s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  /* ajustar conforme seu layout */
  user-select: none;
  /* evitar seleção ao arrastar */
  touch-action: pan-y;
  /* para facilitar swipe horizontal */
}


.slide {
  min-width: 100%;
  box-sizing: border-box;
  aspect-ratio: 3 / 2;
  width: 100%;
  box-sizing: border-box;
  /* Garante proporção constante em todas as telas */
  position: relative;
  display: none;
  align-items: center;
  /* Alinha imagem verticalmente */
  justify-content: center;
  padding-top: 2rem;
  text-align: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 5px solid #070707b6;
  border-radius: 10px;
  transition: opacity 1.5s ease;
  background-color: #0a0a0a;
  margin-top: 0;
  /* Remova margens que podem causar corte */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  /* sombra mais discreta e natural */
  min-height: 400px;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  display: block;

}


.slide.active img {
  opacity: 1;
}

.slide figcaption {
  opacity: 0.5;
  transform: translateY(20px);
  transition: opacity 3s, transform 3s;
}

.slide.active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.caption {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 1rem;
  display: none;
  /* JS controla a exibição */
}

figure {
  position: relative;
}

.titulo {
  font-family: 'UnifrakturMaguntia', serif;
  color: #ae010182;
  padding: 7px 30px;
  /* Corrigido de 30x para 30px */
  margin-bottom: 10px;
  font-size: 1.9rem;
  text-shadow: 1px 1px 2px #000;
  display: inline-block;
}





.carrossel-inicio .slides {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  overflow: hidden;
}

.carrossel-inicio .banner-slide {
  flex: 0 0 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carrossel-inicio .banner-slide.active {
  opacity: 1;
}


.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 10px;
  font-size: 10px;
  color: #ae010182;
  font-family: 'Libre Baskerville', serif;
  background: linear-gradient(145deg, #1b0000, #3b0a0a);
  border: 1px solid #6a0000;
  border-radius: 30%;
  box-shadow:
    0 0 6px rgba(180, 0, 0, 0.114),
    inset 0 0 4px rgba(255, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 20;
}

/* Efeito hover */
.prev:hover,
.next:hover {
  background: linear-gradient(145deg, #3b0a0a, #1b0000);
  color: #ae0101;
  box-shadow:
    0 0 10px rgba(255, 0, 0, 0.6),
    inset 0 0 6px rgba(255, 0, 0, 0.3);
  border-color: #a60000;
}

/* Posicionamento individual */
.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.sessao.portfolio:not(.active) .prev,
.sessao.portfolio:not(.active) .next {
  opacity: 0;
  pointer-events: none;
}

.fade {
  animation: fade 5.5s infinite;
}

@keyframes fade {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.dots-container {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 9px;
  width: 9px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #720000;
}



/* Scrollbar */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #000000;
}

*::-webkit-scrollbar-thumb {
  background-color: #6b0101d1;
  border-radius: 8px;
  border: 2px solid #000000;
}

/* Responsividade MOBILE */


/* 📱 Mobile padrão até 768px */
@media (max-width: 768px) {

  .sobre,
  .sessao.contato,
  .sessao.shop,
  .sessao.portfolio {
    margin: 25px 20px;
    padding: 5px 10px;
    background-color: #0a0a0a48;
    border: 2px solid #72000066;
    border-radius: 12px;
    font-family: 'Elegant', serif;
    box-shadow: 0 0 10px rgba(114, 0, 0, 0.3);
    width: 90vw;
  }

  .sessao.portfolio {
    padding: 20px;
  }

  #portfolio .decor-line {
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    top: auto !important;
    box-shadow: none !important;
  }

  .titulo {
    font-family: 'UnifrakturMaguntia', serif;
    color: #ae010182;
    padding: 3px 25px;
    margin: 0 0 4px 0;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px #000;
    display: inline-block;
  }

  .decor-line {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right, #2c0a0a, #720000, #2c0a0a);
    margin: 0;
    box-shadow: 0 0 7px #2c0a0a99;
    position: relative;
    top: 0;
  }

  .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 3px solid #200000ba;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  .logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .sessao.shop {
    flex-direction: column;
    gap: 10px;
    font-size: 0.75rem;
  }

  .sobre-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.3rem;
    margin-top: 220px;
  }

  .moldura-container {
    order: 0;
    opacity: 0;
    animation: fadeInUp 2.5s ease-out forwards;
    animation-delay: 0.3s;
    width: 160px;
    height: 200px;
    position: relative;
    margin-top: -70px;
  }

  .texto-sobre {
    order: 1;
    opacity: 0;
    animation: fadeInUp 1.9s ease-out forwards;
    animation-delay: 1s;
    text-align: center;
    max-width: 100vw;
    margin-top: -165px;
    font-size: 0.6rem;
    line-height: 1.5;
    padding: 10px;
  }

  .moldura {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    position: relative;
    margin-top: -112%;
  }

  .foto {
    margin-top: -110%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
  }

  /* 🍪 Cookie banner */
  #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1600009f;
    color: #d4c0a1;
    padding: 15px 10px;
    font-size: 0.75rem;
    box-shadow: 0 -2px 10px #5c010188;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    text-align: center;
    z-index: 100;
  }

  #cookie-banner .cookie-btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 360px;
  }

  #cookie-banner button {
    flex: 1;
    padding: 5px 8px !important;
    background: #6b0101d1;
    color: #d4c0a1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.6rem;
    transition: background 0.3s;
    max-width: 90px;
  }

  #cookie-banner button#reject-cookies {
    background: #1a1a1a;
  }

  #cookie-banner button:hover {
    background: #a80000;
  }

  #cookie-banner button#reject-cookies:hover {
    background: #424242;
  }

  footer {
    text-align: center;
    padding: 20px;
    background-color: #150101c8;
    color: #d4c0a1;
    flex-shrink: 0;
    width: 100%;
    font-size: 0.75rem;
  }
}

/* 💻 Tablets (entre 769px e 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

  .sessao.portfolio,
  .sobre,
  .sessao.contato,
  .sessao.shop {
    width: 85vw;
    padding: 20px 30px;
    margin: 40px auto;
  }

  .texto-sobre {
    font-size: 0.85rem;
    padding: 15px;
  }
}

/* 🖥️ Desktops grandes (acima de 1024px) */
@media (min-width: 1025px) {

  .sessao.portfolio,
  .sobre,
  .sessao.contato,
  .sessao.shop {
    width: 80vw;
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px;
  }

  .texto-sobre {
    font-size: 1rem;
    padding: 20px;
  }
}

#cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: justify;
  gap: 10px;

}

#cookie-banner button {

  width: 49%;
  max-width: 90px;

}


#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1600009f;
  color: #d4c0a1;
  padding: 15px 10px;
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px #5c010188;
  display: flex;
  justify-content: center;
  /* Centraliza horizontalmente */
  align-items: center;
  /* Centraliza verticalmente */
  gap: 18px;
  /* Espaço entre texto e botões */
  text-align: center;
  z-index: 100;
  font-size: 0.75rem;

}

#cookie-banner button {
  margin-left: 16px;
  padding: 6px 10px;
  background: #6b0101d1;
  color: #d4c0a1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.3s;
}

#cookie-banner button#reject-cookies {
  background: #1a1a1a;
}

#cookie-banner button:hover {
  background: #a80000;
}

#cookie-banner button#reject-cookies:hover {
  background: #424242;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #150101c8;
  color: #d4c0a1;
  flex-shrink: 0;
  width: 100%;
  font-size: 0.75rem;
}



@media (max-width: 480px) {
  header h2 {
    font-size: 1.8rem;
  }
}

nav ul {
  flex-direction: row;
  padding: 5px;
  gap: 10px;
}

.btn-glow {
  width: 100%;
}

.conteudo {
  padding: 20px 10px;
}



.conteudo {
  display: flex;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 3rem;
  display: flex;
  align-items: center;
}

.marquee .pt,
.marquee .en {
  position: absolute;
  white-space: nowrap;
  font-family: 'Des Malers Fraktur', serif;
  font-size: 1.8rem;
  color: #720000;
  letter-spacing: 2px;
  animation: marquee-once 25s linear infinite;
}

@keyframes marquee-once {
  0% {
    left: 100%;
  }

  100% {
    left: -30%;
  }
}
* {
  user-select: none;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
}