/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #121212; /* Fundo geral escuro */
  color: #e0e0e0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Cabeçalho */
header {
  background: #1c1c1c;
  color: #fff;
  padding: 10px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: left;
}

.branding {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  margin-right: 10px; /* Espaço entre logo e título */
}

.titulo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #0ff;
}

/* Hero */
.hero {
  background: #0d0d0d;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0ff;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: auto;
  color: #ccc;
}

/* Serviços */
.services {
  padding: 60px 0;
  background: #181818;
}

.services h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0ff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s, background 0.3s;
}

.service:hover {
  transform: translateY(-5px);
  background: #262626;
}

.service h3 {
  margin-bottom: 10px;
  color: #0ff;
}

.service ul {
  margin-bottom: 10px;
  padding-left: 20px;
}

.service a {
  color: #0ff;
  text-decoration: none;
  font-weight: bold;
}

.service a:hover {
  text-decoration: underline;
}

/* Sobre */
.about {
  background: #1a1a1a;
  padding: 60px 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0ff;
}

.about ul {
  margin: 20px 0;
  padding-left: 20px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.highlights div {
  flex: 1;
  min-width: 250px;
  background: #222;
  padding: 20px;
  border-radius: 8px;
}

/* Contato */
.contact {
  padding: 60px 0;
  background: #181818;
}

.contact h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0ff;
}

.contact ul {
  margin-top: 20px;
  padding-left: 20px;
}

/* Rodapé */
footer {
  background: #0d0d0d;
  color: #ccc;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

footer h3, footer h4 {
  margin-bottom: 10px;
  color: #0ff;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
}

footer ul li a:hover {
  color: #0ff;
}

footer p {
  font-size: 0.9rem;
}

footer .copyright {
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #333;
  padding-top: 10px;
  margin-top: 10px;
  color: #666;
}
