* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8fafc;
  color: #1e293b;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: 0.3s ease;
}

nav a:hover {
  color: #2563eb;
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;

  background: linear-gradient(
      rgba(21, 16, 23, 0.7),
      rgba(20, 9, 0, 0.2)
    ),
    url("../img/WhatsApp Image 2026-06-09 at 17.55.09 (1).jpg");

  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 25px;
  border: none;
  background: white;
  color: #1e40af;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  transform: scale(1.05);
  background: #f1f5f9;
}

.dados {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, #1e40af, #06b6d4);
  margin-top: -60px;
  border-radius: 20px;
}

.dados div {
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  padding: 15px;
  transition: 0.3s;
}

.dados div:hover {
  transform: translateY(-8px);
}

.dados h3 {
  font-size: 28px;
  color: #1e40af;
  font-weight: 700;
}

.dados p {
  font-size: 14px;
  margin-top: 5px;
  color: #334155;
}

section {
  padding: 80px 20px;
  text-align: center;
}

.servicos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

footer {
  background: #0f172a;
  color: white;
  padding: 30px;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo img {
    height: 55px;
    width: auto;
    display: block;
    margin: 0 auto;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .dados {
    flex-direction: column;
    align-items: center;
  }
}

.sobre {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.sobre-container {
  max-width: 800px;
  text-align: center;
}

.sobre h2 {
  font-size: 34px;
  color: #1e40af;
  margin-bottom: 20px;
}

.descricao {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.sobre-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.sobre-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.sobre-card:hover {
  transform: translateY(-6px);
}

.sobre-card h3 {
  color: #1e40af;
  margin-bottom: 10px;
}

.endereco {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-weight: 500;
  color: #334155;
}
