*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style: none;
}

:root{
   --bg-color: var(var(--bg-color) #101113 );
  --text-color: #fff;
  --main-color: red ;
  --other-color: #fcfcfc;
  --h1-font: 4rem;
  --p-font: 1rem;
}

body{
  background-color: white;
  color: white;
}

header{
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 8%;
}

.logo{
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 28px;
  font-weight: bold;
}

.logo i{
  color: red;
  font-size: 32px;
  margin-right: 5px;
}

.navegação{
  display: flex;
}

.navegação a{
  color:black;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 30px;
  transition: a.55s ease;
}

.navegação a:hover{   
  color: red;
}

.header-icons{
  color:  black;
  display: flex;
  align-items: center;
}

#menu{
  font-size: 35px;
  color: black;
  z-index: 1001;
  cursor: pointer;
}

.header-icons i{
  margin-right: 25px;
  font-size: 28px;
  cursor: pointer;
  transition: all .5s ease;
}

.header-icons i:hover{
  transform: translateY(-5px);
  color: red;
}

.about {
  margin-top: 8rem;
  background-color: #161617;
  overflow: hidden;
  color: red;
}

.about h2{
  color: red;
  font-size: 4rem;
}

.about p{
  color: white;
  font-size: 1.3rem
}


.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 150px 100px 100px 100px;
}
.about-content img {
  max-width: 600px;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}

.hero {
  color:red;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
  color: #000000;
}