* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #004d40; 
  color: #ffffff; 
  line-height: 1.6;

  
}

/* Menu de navegação fixo */
.menu {
  background-color: #00332c; 
  color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(165, 214, 167, 0.2); 
}

.menu h1 {
  font-size: 24px;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #a5d6a7; 
}

.conteudo {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.introducao h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 2px solid #a5d6a7; 
  padding-bottom: 10px;
  color: #ffffff;
}

.introducao p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.História {
  margin-top: 40px; 
}

.palmeiras-curiosidades {
  margin-top: 40px; 
}

footer {
  text-align: center;
  padding: 20px 10px;
  background-color: #00332c;
  color: #ffffff;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
    
  }
  
  .menu ul {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .conteudo {
    padding: 0 15px;
  }

 
}

/* Estilização trofeus */
.trofeus img:hover {
  transform: scale(1.2); 
}

/*Estilo Desktop  */
.trofeus {
  display: flex;
  justify-content: center;
  gap: 60px; 
  margin: 20px 0;
}

.trofeus img {
  height: 150px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Aparecer todas as taças no celular */
@media (max-width: 768px) {
  .trofeus {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .trofeus img {
    height: 120px;
    flex-shrink: 0;
  }

  /* Esconde as barras de rolagem */
  .trofeus::-webkit-scrollbar {
    display: none;
  }
  .trofeus {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}


