body {
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

main {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 100px);
}

.titulo {
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
}

.posts {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.projeto-bloco {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.projeto-bloco.alternado {
  flex-direction: row-reverse;
}

.projeto-conteudo {
  flex: 1;
  max-width: 500px;
}

.projeto-categoria {
  display: block;
  color: #ffffff; 
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projeto-conteudo h2 {
  color: #111111;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.projeto-conteudo p {
  color: #444444;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.projeto-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.carrossel-wrapper {
  position: relative;
  width: 550px;
  height: 420px;
}

.carrossel-container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.carrossel-container::-webkit-scrollbar {
  display: none;
}

.carrossel-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carrossel-container img {
  width: 550px;
  height: 420px;
  flex-shrink: 0;
  scroll-snap-align: start;
  object-fit: cover;
  position: relative;
}

.img-taekwondo {
  object-position: center top !important;
}


.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.75);
  color: #111111;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  user-select: none;
  z-index: 10;
}

.seta:hover {
  background-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  color: #1e40af;
}

.seta-esquerda {
  left: 15px;
}

.seta-direita {
  right: 15px;
}

@media (max-width: 900px) {
  .projeto-bloco, 
  .projeto-bloco.alternado {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .projeto-conteudo {
    max-width: 100%;
  }

  .carrossel-wrapper {
    width: 100%;
    height: 300px;
  }

  .carrossel-container img {
    width: 100%;
    height: 300px;
  }
  
  .seta {
    display: none;
  }
}
