:root {
  --primary: #004aad;
  --secondary: #00c2ff;
  --light: #f5f5f5;
  --dark: #222;
  --text: #333;
  --radius: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

header {
  background: var(--dark);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
header .logo span {
  color: var(--secondary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}
.nav-links li a:hover {
  color: var(--secondary);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("assets/bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero h1 span {
  color: var(--secondary);
}
.hero .btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  transition: 0.3s;
}
.hero .btn:hover {
  background: var(--secondary);
}
/* Galeria de fotos */
.galeria {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
.galeria img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.galeria img:hover {
  transform: scale(1.05);
}

/* Serviços */
.servicos {
  padding: 60px 20px;
  text-align: center;
}
.servicos h2 {
  margin-bottom: 30px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Sobre */
.sobre {
  background: var(--secondary);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.sobre-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.sobre-texto {
  flex: 1 1 400px;
  text-align: center; /* Centraliza os parágrafos */
}

.sobre-texto p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.sobre-foto {
  flex: 1 1 300px;
  text-align: center;
}

.sobre-foto img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nome-diretor {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Social Buttons */
.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #fff;
  transition: 0.3s;
}

.social-btn.linkedin { background: #0077b5; }
.social-btn.instagram { background: #e1306c; }
.social-btn.facebook { background: #1877f2; }
.social-btn.whatsapp { background: #25d366; }

.social-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Contato */
.contato {
  padding: 60px 20px;
  text-align: center;
}
.contato form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contato input,
.contato textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  outline: none;
}
.contato button {
  background: var(--primary);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.3s;
}
.contato button:hover {
  background: var(--secondary);
}

/* Footer */
/* Footer */
footer {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

.footer-social {
  margin-top: 12px;
}

.footer-social .social-btn {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}


/* Responsivo */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--dark);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
