* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: radial-gradient(circle, #131313, #1d0d1d);
  color: #fff;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}


.hero {
  background-image: url('../assets/img/foto1.png');
  height: 100vh;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 100vh;
  /* altura da tela */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay h1 {
  font-size: 3em;
  color: #fff;
}

.overlay p {
  font-size: 1.2em;
  margin: 20px 0;
}

.btn {
  background: #1d0d1d;
  box-shadow:
    0 0 5px #7247ff;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 2;
}

.btn:hover {
  background-color:#8500a7;
  box-shadow: 0px 6px 24px #8500a7;
}

section {
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
}

#fotos {
  max-width: 50vw !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 20px;
  font-size: 2em;
}

.galeria-titulos {
  font-size: 1.5rem;
  color: white;
  text-align: center;
}

.carrossel {
  overflow: hidden;
  width: 100vw;
  padding: 40px 0;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}


.container {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollSlider 40s linear infinite;
}

.container img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.container img:hover {
  transform: scale(1.05);
}

img {
  margin-top: -100;
  width: 1500px;
  height: 720px;
}


.carrossel {
  overflow: hidden;
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  transition: transform 0.7s ease-in-out;
  transform: translateX(0);
  margin: 0;
  padding: 0;
}

.container img {
  width: 100vw;
  height: auto;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 2em;
  color: #C0C0C0;
}

#sobre p {
  margin-bottom: 16px;
  /* ou 1rem / 20px, como preferir */
  line-height: 1.6;
  /* melhora a legibilidade */
  text-align: center;
}

.sobre-titulo {
  font-size: 1.5rem;
  color: white;
  text-align: center;
}

.rodape {
  background-color: #1d0d1d;
  padding: 3rem 2rem 1rem;
  color: #cccccc;
  font-size: 0.9rem;
}

.rodape-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.rodape-logo img {
  width: 200px;
  height: auto;
}

.rodape-logo p {
  max-width: 250px;
}

.rodape-links h4,
.rodape-contato h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.rodape-links ul {
  list-style: none;
  padding: 0;
}

.rodape-links a,
.rodape-contato a {
  color: #ffffff;
  text-decoration: none;
}

.cta-footer {
  display: inline-block;
  margin-top: 1rem;
  background: #8500a7;
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.rodape-copy {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1f1f1f;
  color: #666;
}

.efeito-luz {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.efeito-luz::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 10%;
  width: 500px;
  height: 600px;
  background: #8500a7;
  border-radius: 100%;
  filter: blur(150px);
  opacity: 0.3;
  mix-blend-mode: screen;
  animation: luz 5s infinite;
}

.efeito-luz::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  width: 1000px;
  height: 300px;
  background: #8500a7;
  border-radius: 100%;
  ;
  filter: blur(150px);
  opacity: 0.3;
  mix-blend-mode: screen;
  animation: luz 5s 2s infinite;
}

header,
.hero,
section {
  position: relative;
  z-index: 1;
}

@keyframes luz {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}