@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background-primary);
}
:root {
  --color-background-primary: #dcdcdc;
  --color-primary: #161a37;
  --color-primary-hover: #000970;
  --color-secundary: #b3b3b3;
  --color-terciary: #000;
  --color-quaternary: #fff;
  --color-background: #f1f1f1;
  --color-btn-whatsapp: #00d757;
  --color-btn-whatsapp-hover: #00722e;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}

img {
  object-fit: contain;
}
/*Barra de navegação*/
nav {
  background-color: var(--color-terciary);
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  align-items: center;
}
.logo img {
  width: 200px;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 50px;
}
.nav-link {
  color: var(--color-quaternary);
  font-weight: 600px;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: var(--color-secundary);
}

.btn-action {
  display: inline-block;
  background-color: var(--color-btn-whatsapp);
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: bold;
  color: var(--color-terciary);
}
.btn-action:hover {
  background-color: var(--color-btn-whatsapp-hover);
}
/*cabeçalho*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
}
header img {
  width: 700px;
}
.left {
  width: 700px;
}
.title h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.title span {
  color: var(--color-primary-hover);
}
.title p {
  margin-bottom: 20px;
}
.btn-contact {
  display: inline-block;
  background-color: var(--color-primary-hover);
  padding: 10px 25px;
  color: var(--color-quaternary);
  font-size: 1.15rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-contact:hover {
  background-color: var(--color-primary);
  transform: scale(1.1);
}
/*Menu Hamburger*/
.menu-hamburger {
  color: var(--color-quaternary);
  font-size: 1.5rem;
  display: none;
}
/*Consultorias*/
section {
  padding: 0 80px;
  display: flex;
  justify-content: space-around;
}
section .title {
  width: 25%;
}
.consultorias {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}
.consultorias .consultoria .head img {
  width: 140px;
}
.consultorias .consultoria .head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
}
.consultorias .consultoria {
  border: 2px solid var(--color-secundary);
  width: 35%;
  padding: 10px;
  border-radius: 4px;
}
.consultorias .consultoria li {
  list-style: none;
}
.consultorias .consultoria li a {
  color: var(--color-primary);
}
.consultorias .consultoria li a:hover {
  color: var(--color-primary-hover);
}
.separator {
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.services {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}
.services .service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  background-color: var(--color-quaternary);
  padding: 20px;
  border-radius: 4px;
}
.services .service p {
  margin: 20px 0 20px 0;
}
.btn-contact {
  margin: 10px 0 10px 0;
}
/*Clientes*/
.clientes {
  display: flex;
  margin: 40px 0 40px 0;
}

/*Rodapé*/
footer {
  background-color: var(--color-terciary);
  color: var(--color-quaternary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

footer .esquerdo-rodape {
  width: 700px;
}

footer ul h3 {
  margin-bottom: 20px;
}
footer ul li {
  margin-top: 10px;
}
footer ul li a {
  color: var(--color-quaternary);
}
footer ul li a:hover {
  color: var(--color-background-primary);
}
.wpp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  align-items: center;
  font-size: 60px;
  background-color: var(--color-btn-whatsapp);
  color: var(--color-quaternary);
  transition: all 0.3s ease;
}
.wpp a {
  color: var(--color-quaternary);
}
.wpp:hover {
  background-color: var(--color-btn-whatsapp-hover);
}
/*Cookies*/
.msgCookies.mostrar {
  display: block;
}
.msgCookies {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}
.msgCookies .cookies {
  background-color: var(--color-background);
  padding: 20px;
}
.msgCookies .cookies h1,
.msgCookies .cookies p {
  margin-bottom: 20px;
}
button {
  background-color: var(--color-primary);
  color: var(--color-quaternary);
  padding: 8px 18px;
  border: transparent;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  background-color: var(--color-primary-hover);
}

@media screen and (max-width: 1400px) {
  header img {
    width: 500px;
    object-fit: cover;
  }

  .title h1 {
    font-size: 38px;
  }
  .clientes {
    flex-wrap: wrap;
  }
  .consultorias {
    flex-wrap: wrap;
    gap: 5px;
  }
}
@media screen and (max-width: 1200px) {
}
.freme {
  width: 500px;
}

@media screen and (max-width: 996px) {
  body {
    overflow-x: hidden;
  }
  nav .btn-action {
    display: none;
  }
  nav .nav-list {
    background-color: var(--color-terciary);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    overflow: hidden;
  }
  .menu-hamburger {
    display: block;
  }
  .left {
    width: 100%;
  }
  footer .esquerdo-rodape {
    width: 100%;
  }
  header,
  #servicos,
  footer {
    flex-direction: column;
  }
  .services {
    width: 100%;
    gap: 10px;
  }
  .consultorias .consultoria {
    width: 48%;
  }
  nav,
  header,
  section,
  .separator {
    padding: 0 20px;
  }
  .services .service {
    width: 100%;
  }
  section .title {
    width: 100%;
  }

  footer {
    padding: 20px;
    gap: 20px;
    align-items: flex-start;
  }
  header img {
    width: 100%;
  }
}
