:root {
    --main-color: #7b2ff7;
    --bg-light: #f4f4f4;
    --text-dark: #111;
    --text-light: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  scroll-behavior: smooth;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1.5rem 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100vw;
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #404040;
  font-weight: 500;
}

.btn-contato {
  background: #3769ff;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.btn-contato-mobile {
  display: none;
}

@media (max-width: 768px) {
  .btn-contato-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    order: 3;
  }

  .btn-contato {
    padding: 0.6rem 1.5rem;
  }

  header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    order: 2;
  }

  .logo {
    order: 0;
  }

  nav ul {
    order: 4;
  }
}


/* MENU HAMBURGUER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
    text-align: center;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}


/* RESPONSIVO GERAL */
@media (max-width: 768px) {
  .sobre-container,
  .clientes-container {
    flex-direction: column;
    height: auto;
  }

  .sobre-img img,
  .clientes-img img {
    max-height: 250px;
  }

  .sobre-img,
  .clientes-img,
  .sobre-texto,
  .clientes-texto {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
  }

}

.hero {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to bottom, #ffffff, hsl(0, 0%, 83%));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sobre-img img,
.clientes-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: rgb(32, 46, 151);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color:#000000;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('https://svgshare.com/i/xQ2.svg') no-repeat;
  background-size: cover;
}

section {
  padding: 4rem 2rem;
  margin: auto;
  text-align: center;
  min-height: 100vh;
}

.fullpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  

/* SERCIÇOS */
.section-servicos {
  background: #f3f3f3;
  text-align: center;
  padding: 4rem 2rem;
}

.servicos-header p.servicos-subtitulo {
  color: #3769ff;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.servicos-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b0b2c;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.servicos-itens {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.item {
  width: 260px;
  text-align: center;
}

.item h3 {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b0b2c;
}

.item p {
  font-size: 0.95rem;
  color: #333;
  margin-top: 0.5rem;
}

.icone {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: relative;
}

.circulo::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #a248f2;
  border-radius: 50%;
  top: 0;
  left: 0;
}

.circulo::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #d8b9ff;
  border-radius: 50%;
  top: 10px;
  left: 20px;
}

.check::before {
  content: "✔";
  font-size: 2rem;
  color: #a248f2;
}

.quadrado::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: #a248f2;
  top: 0;
  left: 10px;
}

.quadrado::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  background: #d8b9ff;
  top: 10px;
  left: 20px;
}


/* SOBRE */
.sobre {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sobre-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.sobre-img {
  flex: 1 1 50%;
  height: 100%;
}

.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-texto {
  flex: 1 1 50%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre-texto h2 {
  color: #3769ff;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.sobre-texto h3 {
  font-size: 1.8rem;
  color: #0b0b2c;
  margin-bottom: 1.5rem;
}

.sobre-texto p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}


/* CLIENTES */
.clientes {
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.clientes-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.clientes-texto {
  flex: 1 1 50%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clientes-texto h2 {
  color: #3769ff;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.clientes-texto h3 {
  font-size: 1.8rem;
  color: #0b0b2c;
  margin-bottom: 1.5rem;
}

.clientes-texto p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.clientes-img {
  flex: 1 1 50%;
  height: 100%;
}

.clientes-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



/* CONTATO */
.contato {
  background: #b9b9b9;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contato-container {
  width: 100%;
  max-width: 900px;
}

.contato h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.linha {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.campo {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.campo.full {
  flex: 100%;
}

label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

input, textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  padding: 0.5rem 0;
  color: white;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  height: 100px;
}

button {
  align-self: flex-end;
  padding: 0.8rem 2rem;
  background: white;
  color: #08385f;
  border: none;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
}

button:hover {
  background: #f0f0f0;
}

.sucesso {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}




/* FOOTER */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: #fff;
  padding: 3rem 2rem;
  gap: 2rem;
  color: #333;
}

.footer-col h4 {
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #444;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-logo h3 {
  font-size: 1.4rem;
  font-weight: bold;
}

.social-icons a {
  margin-right: 10px;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 1rem;
}
  

/* MAPA */
.mapa-container {
  width: 100%;
  height: 400px;
  border-top: 2px solid #eee;
  margin-top: -1px;
}