/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

/*Cabeçalho*/ 
header {
  position: relative;
  background-color: #000;
}
header img {
  width: 100%;
  height: 40%;
  object-fit: cover;
  display: block;
}

header h2 {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ffd700;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Navegação */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background-color: #1a1a1a;
}
nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}
nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}
nav a:hover {
  color: #fff;
}
nav a:hover::after {
  width: 100%;
}

/* Conteúdo */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}
section {
  margin-bottom: 2rem;
}

/* Imagens do portfólio */
.portfolio-item img {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  margin-top: 1rem;
  border-radius: 0.5rem;
}

/* Rodapé */
footer {
  background-color: #000;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Formulário */
form input,
form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}
form button {
  background-color: #ffd700;
  border: none;
  color: #000;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #ffcc00;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
}

/* menu */
/* Estilo base */
.menu-animado {
  /*background-color: #f4f4f4;*/  
  background-color: #111;
  padding: 10px 20px;
  position: relative;
}

.menu-links {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  transition: all 0.3s ease-in-out;
}

.menu-links a {
  text-decoration: none;
  /*color: #333;*/
  color: #4682B4;
  font-weight: bold;
  transition: color 0.3s;
}

.menu-links a:hover {
  color: #007BFF;
}

/* Animação inicial */
.menu-animado .menu-links a {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
}

.menu-animado.animado .menu-links a {
  opacity: 1;
  transform: translateX(0);
}

.menu-animado.animado .menu-links a:nth-child(1) { transition-delay: 0.1s; }
.menu-animado.animado .menu-links a:nth-child(2) { transition-delay: 0.2s; }
.menu-animado.animado .menu-links a:nth-child(3) { transition-delay: 0.3s; }
.menu-animado.animado .menu-links a:nth-child(4) { transition-delay: 0.4s; }
.menu-animado.animado .menu-links a:nth-child(5) { transition-delay: 0.5s; }

/* Estilo botão hambúrguer */
.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #333;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f4f4f4;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .menu-links.show {
    display: flex;
  }
}
.servicos-destaque {
  padding: 4rem 2rem;
  background-color: #f0f8ff;
  text-align: center;
}

.servicos-destaque h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

.cards-servicos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card-servico {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 320px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.card-servico img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.card-servico h3 {
  margin-top: 1rem;
  color: #005187;
}

.card-servico p {
  margin-top: 0.5rem;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-servico:hover {
  transform: translateY(-5px);
}

/* Responsivo */
@media (max-width: 768px) {
  .cards-servicos {
    flex-direction: column;
    align-items: center;
  }
}
.servicos-detalhados {
  padding: 3rem 1rem;
  background-color: #f8f8f8;
  text-align: center;
}

.servicos-detalhados h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.grade-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card-servico {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem;
  transition: transform 0.3s ease;
}

.card-servico:hover {
  transform: translateY(-5px);
}

.card-servico img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.card-servico h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #333;
}

.card-servico p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.5rem;
}

.card-servico ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  color: #000000;
  background-color: #f0f8ff; /* azul muito claro */
  border-radius: 6px;
  padding: 1rem;
}

.card-servico ul li {
  margin-bottom: 0.75rem;
  background-color: #ffffff;
  padding: 0.75rem;
  border-left: 4px solid #0d6efd;
  border-radius: 4px;
  color: #000000;
}

.card-servico ul li strong {
  color: #0d6efd;
}

.card-servico h3 {
  color: #0d6efd;
}

.servicos-detalhados h2,
.servicos-detalhados p {
  color: #000000;
}
.suporte-ti {
  margin-top: 3rem;
  background-color: #f0f8ff; /* azul claro suave */
  padding: 2rem;
  border-radius: 10px;
  color: #000000;
}

.suporte-ti h2 {
  color: #0d6efd;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.suporte-ti h3 {
  color: #0d6efd;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.texto-suporte p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #000000;
}
.download-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background-color: #007BFF;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }

  .download-link:hover {
    background-color: #0056b3;
  }

  .download-link img {
    margin-right: 8px;
  }
