* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  width: 100%;
}

header {
  background-color: #C8102E;
  padding: 20px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  width: auto;
}

header h1 {
  color: #111111;
}

li {
  display: inline-block;
}

li a {
  color: white;
  font-size: 18px;
  font-weight: 440px;
  margin-right: 25px;
  text-decoration: none;
}

li a:hover {
  color: black;
  transform: scale(5);
}

button {
  width: auto;
  color: #000000;
  font-size: 16px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

button:hover {
  transform: scale(1.05);
}

* {
  box-sizing: border-box;
}

body {
  font-family: Verdana, sans-serif;
}

.mySlides {
  display: none;
}

img {
  vertical-align: middle;
}

.slideshow {
  background-color: #fdf6e4;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 15px;
}

.numbertext {
  color: #000000;
  font-size: 12px;
  padding: 25px 12px;
  position: absolute;
  top: 0;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #C8102E;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px
  }
}

body {
  margin: 0;
  background-color: #F2F2F2;
}

.banner {
  position: relative;
  background-image: url('banner.jpg');
  /* Substituir pelo caminho da imagem */
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 0 2rem;
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.banner-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
}

.banner h1 {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.atividades {
  background-color: #fdf6e4;
  padding: 40px 20px;
  text-align: center;
}

.atividades h2 {
  font-size: 2.5rem;
  color: #111111;
  margin-bottom: 30px;
  font-family: Georgia, serif;
}

.atividades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
  justify-items: center;
}

.atividade {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  margin-bottom: 10px;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.futebol {
  background-color: #007c72;
  background-image: url('icons/futebol.svg');
}

.yoga {
  background-color: #e5b700;
  background-image: url('icons/yoga.svg');
}

.fitness {
  background-color: #d72638;
  background-image: url('icons/fitness.svg');
}

.caminhada {
  background-color: #007c72;
  background-image: url('icons/caminhada.svg');
}

.guitarra {
  background-color: #e5b700;
  background-image: url('icons/guitarra.svg');
}

.danca {
  background-color: #d72638;
  background-image: url('icons/danca.svg');
}

.atividade p {
  font-weight: bold;
  font-size: 0.95rem;
  margin: 0;
  color: #262626;
} 

.eventos {
  padding: 2rem;
  background-color: #fdf6e3;
  text-align: center;
}

.eventos h2 {
  font-size: 2.5rem;
  color: #111111;
  margin-bottom: 30px;
  font-family: Georgia, serif;
}

.eventos-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.evento {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.evento-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 0;
}

.amarelo {
  background-color: #c4352f;
}

.verde {
  background-color: #22644e;
}

.vermelho {
  background-color: #f4b728;
}

.evento-data .dia {
  font-size: 1.5rem;
}

.evento-data .mes {
  font-size: 0.9rem;
}

.evento-info {
  padding: 1rem;
  flex: 1;
}

.evento-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #333;
}

.evento-info img {
  width: 24px;
  height: auto;
  margin-bottom: 0.5rem;
}

.evento-info a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #22644e;
  font-weight: 500;
  text-decoration: none;
}

.patrocinios-apoios {
  background-color: #fdf6e4;
  padding-top: 50px;
}

.patrocinios-apoios h2 {
  font-size: 2.5rem;
  color: #111111;
  margin-bottom: 30px;
  font-family: Georgia, serif;
  text-align: center;
}

.patrocinios {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.patrocinios-apoios img {
  width: auto;
  height: 120px;
}

.apoios {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}