/* Reset básico */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
 color: #0056b3;
  text-decoration: none;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & menu */
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}
#quem-somos {
    background-color: #f4f4f4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  
  
}
.container > img{
    width: 150px;
    margin: auto;
    border-radius: 50%;
}
.container h2 {
    font-size: 30px;
    color: #0056b3;
    margin-bottom: 20px;
}
.container p{
     margin-bottom: 20px;
}
.service-box p {
    flex: 1; 
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* ou use center, flex-start, etc */
  align-items: stretch; /* Alinha as caixas pela base */
  gap: 20px;
}

.service-box {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-box img {
  width: 100%;
  height: auto;
  max-height: 250px; /* ajuste conforme necessário */
  object-fit: contain;
  border-radius: 5px;
}
.suporte{
    display: flex;
    justify-content: center;
}
.suporte p {
    padding: 20px;
    margin-bottom: 20px;
}
.suporte img{
    max-width: 100%;
    height: auto;
    display: block;
}
.logo {
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: bold;
  
}
.logo img {
  height: 150px;  /* ou ajuste para o tamanho que quiser */
  width: auto;
  display: flex;
}

nav {
  
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  
}

.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 10%; /* aumentamos a largura */
  background-color: #0056b3;
  display: flex;
  flex-direction: column;
  padding: 100px 20px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 1001;
}

.nav-links.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  margin: 0 auto;
}
.nav-links a:hover {
  text-decoration: none;
  color: #ffcc00; /* ou outra cor que combine com o azul */
}

/* Fundo escuro por trás do menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* escurecido */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.nav-links a {
  padding: 2rem 0;
  display: block;
}

.burger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}
.burger.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open div:nth-child(2) {
  opacity: 0;
}

.burger.open div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 200px;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
  }

  .nav-links.open {
    right: 0;
  }

  .burger {
    display: flex;
  }
}


section {
  padding: 30px 0 30px;
}
/*---------------------------------------Video--------------------------*/
.bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

 #hero {
      position: relative;
      height: 50vh; /* ou ex: 600px */
      overflow: hidden;
      display: flex;
      text-align: center;
      color: white;
    }

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  color: white;
}

#hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.4rem;
  color: white;
}
/*-------------------------------FIM Video--------------------*/
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 8px;
}

footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #333;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #fff;
}

/*-----------------------------------------Formulario--------------------------------------*/

form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

form input,
form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

form button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #0056b3;
}
/*-------------------------------------Botao Zap Flutuante--------------------------------*/

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color:white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 28px;
  height: 28px;
}
.whatsapp-float img {
  filter: brightness(0) invert(1);
}
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}
/*-------------------------------------------GPTECO--------------------------------*/

/* Responsivo para tablets */
@media (max-width: 992px) {
  .container {
    padding: 0 1rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .container h2 {
    font-size: 24px;
    text-align: center;
  }

  #hero h1 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .logo img {
    height: 100px;
  }

  .service-box {
    padding: 1rem;
  }

  .suporte {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .suporte p {
    padding: 10px;
  }

  form {
    padding: 0 1rem;
  }
}

/* Responsivo para celulares */
@media (max-width: 576px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 80px;
  }

  #hero {
    height: 40vh;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
  }

  #hero h1 {
    font-size: 1.5rem;
  }

  #hero p {
    font-size: 1rem;
  }

  .container > img {
    width: 120px;
  }

  .container h2 {
    font-size: 20px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service-box {
    width: 100%;
  }

  .suporte {
    padding: 0 1rem;
  }

  footer {
    font-size: 0.8rem;
  }
}

/* Para telas maiores que 1200px */
@media (min-width: 1201px) {
  .container {
    padding: 0 2rem;
  }

  .service-box {
    transition: transform 0.3s;
  }

  .service-box:hover {
    transform: scale(1.03);
  }

  #hero h1 {
    font-size: 3rem;
  }

  #hero p {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    width: 50%;
    height: 100dvh;
    padding: 100px 20px;
    background-color: #0056b3;
  
  }
}

