/** Site **/
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  background-color: var(--white);
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

body {
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  font-smooth: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*******************
** Header *********
*******************/
header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-color: #fff;
  height: 80px;
  padding: 5px 40px;
  padding-right: 45px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header #logo-container {
  width: 150px;
  height: 60px;
  overflow: hidden;
  position: relative;
  background-color: red;
}

header #logo-container img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  width: 100%;
  height: auto;
}

header nav #menu-icon {
  display: block;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #333;
}

header nav #menu-icon div {
  width: 25px;
  height: 3px;
  background-color: #d9241c;
  margin: 5px;
}

header nav #menu-icon:hover div {
  animation: menu-icon-hover 0.3s ease-in-out forwards;
}

@keyframes menu-icon-hover {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  80% {
    transform: scale(0.9);
  }

  90% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

header nav #menu-icon.active {
  background-color: #333;
  border-radius: 10px 10px 0px 0px;
}

header nav #menu-icon.active div {
  background-color: #fff;
}

header nav #menu-icon.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

header nav #menu-icon.active div:nth-child(2) {
  opacity: 0;
}

header nav #menu-icon.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@keyframes rotate-x {
  0% {
    transform: rotate(45deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(45deg);
  }
}

header nav #menu-icon.active:hover div {
  animation: menu-icon-active-hover 0.5s ease-in-out forwards;
}

@keyframes menu-icon-active-hover {
  0% {
    background-color: #000;
  }

  50% {
    background-color: white
  }

  80% {
    background-color: #555;
  }

  90% {
    background-color: #111
  }

  100% {
    background-color: #eee;
  }
}

header nav #menu {
  position: absolute;
  top: 60px;
  right: 45px;
  display: none;
  background-color: #333;
  color: #fff;
  border-radius: 10px 0px;
  overflow: hidden;
  padding: 10px;
}

header nav #menu li {
  list-style: none;
}

header nav ul li a {
  text-decoration: none;
  color: #eee;
  padding: 15px 25px;
  display: block;
}

header nav ul li a:hover {
  background-color: #444;
  transition: background-color 0.2s ease-in-out;
  color: #fff;
}

/*******************
** Section *********
*******************/
section#background {
  background-image: url('bg.png');
  background-size: cover;
  height: 100vh !important;
  padding-top: 80px;
  min-height: 100%;
  width: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

section#welcome {
  background-size: cover;
  height: 100vh !important;
  padding-top: 80px;
  min-height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
}

section#welcome #welcome-content {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 25px;
  padding-top: 0;
}

section#welcome #welcome-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: black 0px 0px 20px;
}

section#welcome #welcome-content p {
  font-size: 2rem;
  margin-bottom: 10px;
  text-shadow: black 0px 0px 20px;
}

/** Services **/
section#services {
  padding: 50px 20px;
  background-color: #f5f5f5;
  display: block;
  text-align: center;
}

section#services h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

section#services p {
  font-size: 1.2rem;
  margin-bottom: 40px;

}

section#services content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

section#services .service {
  flex: 1 1 calc(33.333% - 50px);
  margin: 25px;
  box-sizing: border-box;
  background-color: #fff;
  padding: 40px;
}

section#services .service svg {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  fill: #d9241c;
}

section#services .service h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

section#services .service p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/** Clientes **/
section#clients {
  padding: 50px 20px;
  background-color: #f5f5f5;
  display: block;
  text-align: center;
}

section#clients h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

section#clients p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

section#clients content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

section#clients content .client {
  flex: 1 1 calc(33% - 80px);
  margin: 40px;
  box-sizing: border-box;
  background-color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section#clients content .client img {
  max-width: 80%;
  height: auto;
  display: block;
}

.arruma {
  clear: both;
}


/*******************
** Footer **********
*******************/

footer {
  display: flex;
  background-color: #333;
  padding: 20px;
  font-size: 0.80rem;
  flex-wrap: wrap;
  justify-content: center;
}

footer .footer-content {
  flex: 1 1 calc(33.333% - 50px);
  margin: 25px;
  text-align: center;
}

footer .footer-content:first-of-type {
  align-items: left;
  text-align: left;
}

footer .footer-content:last-of-type {
  align-items: right;
  text-align: right;
}

footer .footer-content h3,
footer .footer-content h4 {
  color: #f5f5f5;
  margin-bottom: 8px;
}

footer .footer-content p,
footer .footer-content a {
  color: #eee;
  text-decoration: none;
  vertical-align: middle;
}

/**
@media (max-width: 768px) {
  body {
    font-size: 0.875rem;
    padding-top: 70px;
  }

  header {
    width: 100%;
    height: 70px;
    padding: 5px 20px;
    position: fixed;
    top: 0;
  }

  footer {
    display: block;
    align-items: center;
    justify-content: none;
    font-size: 0.85rem;
  }

  footer .footer-content {
    width: 100%;
    align-items: center !important;
    text-align: center !important;
    padding-bottom: 20px;
  }

  footer .footer-content:last-of-type {
    padding-bottom: 0;
  }
}**/