body { 
  font-family: 'Roboto', Arial, sans-serif;
  background: url('https://files.catbox.moe/j3xh9s.jpeg') no-repeat center center fixed;
  background-size: cover;
  text-align: center;
  margin: 0;
  padding: 0;
  color: #ffffff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(128, 128, 174, 0.7);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
header {
  background-color: #008B8B;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-icon img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.header-right nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap:15px;
}
footer {
  Background-color: #008B8B;
  color: white;
  padding: 20px;
  margin-top: 20px;
}
.carrossel {
position: relative; 
  width: 100%;
  max-height: 400px; 
  height: 200px;
  overflow: hidden;
  position: relative;
  border: 2px solid #333
}
.imagens {
  display: flex;
  width: 100%;
  height: 100%;
  animation: deslizar 9s infinite;
}
.imagens img {
  
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes deslizar {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200); }
  100% { transform: translateX(0); }
}