/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0d0d0d;
  color: #f4f4f4;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

header {
  background: linear-gradient(to right, #2c3e50, #34495e);
  padding: 10px 0; /* Diminuído o padding para diminuir o tamanho do menu */
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

header .logo {
  font-size: 2em; /* Reduzido o tamanho da logo */
  font-weight: bold;
  color: #1abc9c;
  padding-left: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px; /* Menor espaço entre os itens */
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em; /* Tamanho da fonte reduzido */
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #1abc9c;
}

/* Ajuste para o espaço da tela inicial (home) */
.section-home {
  padding: 120px 0 60px; /* Diminui o padding inferior para dar mais visibilidade ao conteúdo */
  background: linear-gradient(to bottom, #34495e, #2c3e50);
  color: white;
  text-align: center;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6);
}

/* Reduz o tamanho do título da seção para não sobrecarregar a tela */
.animated-title {
  font-size: 2.5em; /* Tamanho do título ajustado */
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeIn 3s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Serviço Section */
.service-section {
  padding: 60px 0;
  background: #2c3e50;
  color: #fff;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background-color: #34495e;
  border-radius: 8px;
  padding: 20px;
  width: 30%;
  transition: transform 0.4s ease-in-out, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
  font-size: 1.5em;
}

.service-card p {
  font-size: 1.1em;
}

/* Projetos Section */
.projects-section {
  padding: 60px 0;
  background-color: #34495e;
  text-align: center;
}

.project-gallery {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.project-card {
  background-color: #2c3e50;
  border-radius: 8px;
  padding: 30px;
  color: #fff;
  font-size: 1.3em;
  flex: 1;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contato*
