body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
}

header {
  background-color: #000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav a {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #2a2a2a;
}

.hero h1 {
  color: #ff6600;
  font-size: 2.5em;
}

.hero form {
  margin-top: 20px;
}

.hero input[type="email"] {
  padding: 10px;
  width: 250px;
  border: none;
  border-radius: 4px;
}

.hero button {
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.servicos {
  padding: 40px 20px;
  background-color: #1e1e1e;
}

.servicos h2 {
  color: #ff6600;
  text-align: center;
}

.servicos ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.servicos li {
  margin: 10px 0;
}

.testimonials {
  background-color: #121212;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #ff6600;
  font-size: 2.2em;
  margin-bottom: 30px;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background-color: #1e1e1e;
  padding: 20px;
  border-left: 5px solid #ff6600;
  border-radius: 6px;
  font-style: italic;
}

.testimonial-item span {
  display: block;
  margin-top: 10px;
  color: #ccc;
  font-style: normal;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  color: #ccc;
}
.site-footer {
  padding: 24px 16px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer .footer-nav a {
  margin-right: 12px;
  opacity: 0.85;
}
.site-footer .footer-nav a:last-child { margin-right: 0; }
.site-footer .footer-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
/* Deixa o footer mais legível e bonito */
.site-footer {
  padding: 20px 16px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer p { opacity: .9; margin: 0; }

.site-footer .footer-nav a {
  margin-right: 12px;
  opacity: .85;
}
.site-footer .footer-nav a:last-child { margin-right: 0; }
.site-footer .footer-nav a:hover { opacity: 1; text-decoration: underline; }

/* Empilha no mobile */
@media (max-width: 640px) {
  .site-footer { flex-direction: column; align-items: flex-start; }
}

/* (Opcional) Rodapé sempre no fundo da página */
html, body { height: 100%; }
body { display: flex; min-height: 100dvh; flex-direction: column; }
main { flex: 1; }
/* Rodapé */
.site-footer {
  background: #0e0e0e;
  border-top: 1px solid #2b2b2b;
  padding: 24px 16px;
  margin-top: 48px;
}

.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;                 /* centraliza o bloco no viewport */
  display: flex;
  flex-direction: column;          /* empilha texto e nav */
  align-items: center;             /* CENTRALIZA horizontal */
  text-align: center;              /* CENTRALIZA texto */
  gap: 10px;
}

.site-footer p {
  margin: 0;
  color: #dddddd;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;                 /* quebra linha se precisar */
  align-items: center;
  justify-content: center;         /* CENTRALIZA os links */
  gap: 16px;
}

.footer-nav a {
  color: #ffa742;
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-nav .dot {
  color: #666;
  user-select: none;
}
.site-nav a.active { text-decoration: underline; }
