@font-face {
  font-family: "Quiche";
  src: url("/fonts/quiche.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #161a1d;
}

/* NAVBAR */
nav {
  height: 107px;
  background: #161a1d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: relative;
}

.nav__logo {
  height: 64px;
  padding: 8px 0px 8px 32px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  font-family: Tahoma;
  font-size: 20px;
}

.nav-links a {
  text-decoration: none;
  color: whitesmoke;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: rgb(187, 183, 183);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.divider {
  width: 1px;
  height: 24px;
  background: rgba(243, 241, 241, 0.3);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-center,
  .social-icons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

 nav.open .nav-center {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  background: #161a1d;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  display: flex;
  z-index: 10;
}
nav.open .nav-links {
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

  nav.open .social-icons {
    display: flex;
  }

  nav.open .hamburger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  nav.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  nav.open .hamburger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .divider {
    display: none;
  }
}

/* TOPO */
section#topo {
  background: url(/img/bg.png) center / cover fixed;
  width: 100%;
  height: 80svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 300px;
  border-top: 2px solid #161a1d;
}

.topo__titulo {
  color: #fff;
  font-family: Tahoma;
  font-size: 64px;
  text-align: center;
}

.topo__paragrafo {
  color: #c8c5c5;
  font-family: Tahoma;
  font-size: 24px;
  text-align: center;
}

/* Responsivo TOPO */
@media (max-width: 1024px) {
  section#topo {
    padding: 0 100px;
  }
}

@media (max-width: 768px) {
  section#topo {
    padding: 0 20px;
    height: 60svh;
  }

  .topo__titulo {
    font-size: 36px;
  }

  .topo__paragrafo {
    font-size: 18px;
  }
}

/* SOBRE */
section#sobre {
  width: 100%;
  background-color: #161a1d;
  display: flex;
  gap: 100px;
  padding: 75px 60px;
}

.sobre__text {
  width: 60%;
  padding-left: 100px;
}

.sobre__titulo {
  color: #fff;
  font-family: Tahoma;
  font-size: 48px;
  font-weight: 900;
}

.sobre__paragrafo {
  color: #cdc7c7;
  font-family: Tahoma;
  font-size: 28px;
}

.sobre__img {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre__img__circulo {
  width: 350px;
  height: 350px;
  background-color: #c8c5c5;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre__logo {
  width: 300px;
  height: 300px;
}

/* Responsivo SOBRE */
@media (max-width: 1024px) {
  section#sobre {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .sobre__text {
    width: 100%;
    padding: 0;
  }

  .sobre__titulo {
    font-size: 36px;
    text-align: center;
  }

  .sobre__paragrafo {
    font-size: 20px;
    text-align: center;
  }

  .sobre__img,
  .sobre__img__circulo,
  .sobre__logo {
    display: none;
  }
}

/* PARCEIROS */
section#parceiros {
  background-color: #161a1d;
  color: white;
  font-family: Tahoma;
  padding: 80px 100px;
  text-align: center;
}

.geral__titulo {
  font-size: 48px;
  color: #dedede;
}

.parceiros__subtitulo {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
}

.parceiros__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 0 auto;
}

.parceiros__card {
  background-color: #161a1d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.parceiros__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.parceiros__logo {
  max-height: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
}

.parceiros__nome {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.parceiros__descricao {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 20px;
}

.parceiros__link {
  color: white;
  font-weight: 500;
  text-decoration: underline;
}

/* Responsivo PARCEIROS */
@media (max-width: 1024px) {
  section#parceiros {
    padding: 60px 40px;
  }

  .geral__titulo {
    font-size: 36px;
  }
  .parceiros__logo {
  max-height: 80px;
  margin-bottom: 20px;
  border-radius: 16px;
}
}

@media (max-width: 768px) {
  section#parceiros {
    padding: 40px 20px;
  }

  .parceiros__cards {
    grid-template-columns: 1fr;
  }
  .parceiros__descricao {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 20px;
}
.parceiros__logo {
  max-height: 80px;
  margin-bottom: 20px;
  border-radius: 16px;
}
}


/* SERVIÇOS */
#servicos {
  background-color: #161a1d;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.servicos__titulo {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: Tahoma;
}

.servicos__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.servico__card {
  background-color: #272E34;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s;
  gap: 20px;
}

.servico__card:hover {
  transform: translateY(-5px);
}

.servico__card .icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.servico__card h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.servico__card p {
  font-size: 0.95rem;
  color: #ccc;
  font-family: Tahoma;
}

@media (max-width: 1024px) {
  .servicos__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .servicos__cards {
    grid-template-columns: 1fr;
  }

  .servico__card {
    width: 80%;
    margin: 0 auto;
  }
}


/* .carousel {
  overflow: hidden;
  width: 100%;
  background-color: #161a1d;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  gap: 2rem;
 animation: scroll 30s linear infinite;
}

.carousel-track img {
  height: 200px; 
  flex-shrink: 0;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
} */


#chamada {
    background-color: #161a1d;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }

  #chamada p {
    font-size: 2rem;
    font-family: tahoma;
    margin-bottom: 1rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .icone{
    width: 50px;
    height: 50px;
  }
  .icone:hover{
    transform:scale(110%);
    transition: 1s;
  }
 
  .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1); /* deixa branco */
    transition: filter 0.3s ease;
  }

  .icon:hover {
    filter: brightness(0.7) invert(1);
  }


  /* Responsivo */
  @media (max-width: 480px) {
    #chamada p {
      font-size: 1rem;
    }
    .icon {
      width: 30px;
      height: 30px;
      gap: 1rem;
    }
    .icone {
      width: 20px;
      height: 20px;
    }
    .social-icons {
      gap: 1rem;
    }
  }

footer{
  background-color: #0c0e10;
  height: 200px;
  width: 100%;
  padding: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.footer__logo{
  width: 250px;
}
.footer__buy{
  color: white;
}