
/* ===== FONTE PERSONALIZADA ===== */
@font-face {
  font-family: 'Motorhead';
  src: url('../fonts/motorhead.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ===== RESET E BASE ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Motorhead', 'Old English Text MT', serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  background-image: url('../img/Logo Santissimos.jpeg');
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  /*background-attachment: fixed;*/
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.6); /* sombra sobre o fundo */
}

/* ===== CABEÇALHO ===== */
.logo-nome {
  color: black;
  font-family: 'Motorhead', 'Old English Text MT', serif;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0;
  padding-left: 20px;
  text-decoration: none;
}

.header a {
  text-decoration: none;
}

.header-bg {
  background: #676769;
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
  height: 94px;
}

.header img {
  width: 200px;
  height: 100px;
}

.header-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu a {
  color: #0f0f0f;
  font-size: 20px;
  display: inline-block;
  padding: 10px 0px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.header-menu a:hover {
  background-color: rgb(211, 143, 18);
}

.header a p {
  font-size: 36px;
  letter-spacing: 1px;
  margin: 0;
  padding-left: 20px;
}

/* ===== CONTEÚDO ===== */
.conteudo-bg {
  padding: 60px 20px;
  color: white;
  position: relative;
  z-index: 0;
}

.slider p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  text-align: justify;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* ===== TÍTULOS PERSONALIZADOS ===== */
h1, h2, .titulo-logo {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

/* ===== RODAPÉ ===== */
.footer-bg {
  background: black;
  /*border: 15px solid rgb(83, 30, 185);*/
}

.logo {
  width: 400px;
  height: 120px;
}

.redessociais {
  display: flex;
  justify-content: space-between;
}

.redessociais ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.redessociais .img1 {
  width: 50px;
  height: 50px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
}
.container-viagens {
  display: flex;
  justify-content: center; /* centraliza as imagens horizontalmente */
  gap: 20px; /* espaço entre elas */
  flex-wrap: wrap; /* para que se ajustem em telas menores */
  padding: 20px 0;
}

/* itens novos adicionados ao projeto*/


.img-viagem {
  width: 400px;
  height: 300px;
  border-radius: 8px; /* opcional, para deixar mais elegante */
}

.slider h2 {
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #e4e709;
}

.container-eventos {
  display: flex;
  justify-content: center;
  gap: 20px; /* espaço entre as imagens */
  flex-wrap: wrap; /* permite quebra em telas pequenas */
  padding: 20px 0;
}

.img-evento {
  width: 250px; /* diminui o tamanho da imagem */
  height: 300px;
  border-radius: 8px; /* opcional: cantos arredondados */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.img-evento:hover {
  transform: scale(1.05); /* animação suave ao passar o mouse */
}


.slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.historia-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.coluna-imagens {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-historia {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.texto-historia {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 10px;
}

.img-historia1 {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/*
.img-apresentacao {
  width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.img-apresentacao1 {
  width: 800px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.texto-apresentacao {
  flex: 1;
  /*font-family: Arial, sans-serif; */
  font-size: 1rem;
  line-height: 0.5;         /* 🔧 espaçamento mais equilibrado */
  /*color: #333; */
  box-shadow: none;         /* 🧼 remove qualquer sombra acidental */
  background: none;         /* garante que o fundo fique limpo */
  padding: 0;
}

*/
.container-patrocinadores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.img-patrocinador {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .img-patrocinador {
    width: 100px;
  }
}

/* Aba Apresemtação*/

.slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.historia-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.coluna-esquerda {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-apresentacao {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.texto-apresentacao {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.4;
  padding: 10px;
}

.imagem-inferior {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.img-apresentacao1 {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container-aniversario {
  display: flex;
  justify-content: center;
  gap: 20px; /* espaço entre as imagens */
  flex-wrap: wrap; /* permite quebra em telas pequenas */
  padding: 20px 0;
}

.img-aniversario {
  width: 450px; /* diminui o tamanho da imagem */
  height: 700px;
  border-radius: 8px; /* opcional: cantos arredondados */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.img-aniversario:hover {
  transform: scale(1.05); /* animação suave ao passar o mouse */
}

.container-camisa_evento {
  display: flex;
  justify-content: center;
  gap: 20px; /* espaço entre as imagens */
  flex-wrap: wrap; /* permite quebra em telas pequenas */
  padding: 20px 0;
}

.img-camisa_evento {
  width: 550px; /* diminui o tamanho da imagem */
  height: 500px;
  border-radius: 8px; /* opcional: cantos arredondados */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.img-camisa_evento:hover {
  transform: scale(1.05); /* animação suave ao passar o mouse */
}
@media (max-width: 768px) {
  .logo-nome {
    font-size: 40px;
    text-align: center;
    padding-left: 0;
  }

  .header {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .header-menu {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .img-viagem,
  .img-evento,
  .img-historia,
  .img-apresentacao,
  .img-apresentacao1,
  .img-aniversario,
  .img-camisa_evento {
    width: 100%;
    height: auto;
  }

  .texto-historia,
  .texto-apresentacao {
    max-width: 100%;
    padding: 10px;
  }

  .historia-container {
    flex-direction: column;
    align-items: center;
  }
}
.logo-nome {
  font-size: clamp(2rem, 5vw, 4rem);
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}
input, textarea {
  font-size: 16px;
}