body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  color: #333;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: url("../images/Brillinger-Tech.jpeg") no-repeat center center fixed;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

header {
  background: #000003;
  color: white;
  padding: 15px 0;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover, nav a.active {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #b8070d, #472f30);
  color: white;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: linear-gradient(45deg, #ff6f61, #b8070d);
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(45deg, #b8070d, #8e1a1a);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}


 main.content {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px 70px 20px; /* 70px = altura do footer + margem */
}

.servicos-lista {
  list-style: none;
  padding: 0;
}

.servicos-lista li {
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.form-contato input, .form-contato textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-contato button {
  background: #1b1f3b;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.form-contato button:hover {
  background: #2d3170;
}

footer {
  position: fixed;      /* fixa na tela */
  bottom: 0;            /* sempre no fundo */
  left: 0;
  width: 100%;
  background: #000003;
  color: white;
  padding: 5px 0;      /* altura confortável */
  text-align: center;
  z-index: 1000;        /* garante que fique acima do conteúdo */
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2); /* opcional, só para destaque */
}


.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.social a {
  color: #1b1f3b;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}

.social a:hover {
  color: #2d3170;
}

.social i {
  margin-right: 8px;
  font-size: 20px;
  color: #2d3170;
}

.blog-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.blog-lista article {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-lista article:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.blog-lista h3 a {
  text-decoration: none;
  color: #b8070d; /* mesma cor do seu tema */
}

.blog-lista h3 a:hover {
  text-decoration: underline;
}
