*{
    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;
}

.section{
    padding: 0 15%;
}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

.home-text h1{
    color:  black;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2px;
}

.home-text h5{
    color:  rgb(92, 89, 89);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
}

.home-text h3{
    color:  red;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.home-img img{
    max-width: 100%;
    width: 28rem;
    height: auto;
    margin-left: 25%;
}

.btn{
    display: inline-block;
    padding: 15px 70px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: solid 2px  black;
    transition: all.55 ease;
    color:  black;
}

.btn:hover{
    background: red;
    border: 2px solid  black;
    color: white;
}

.main{
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.main li img{
    width: 73px;
    height: auto;
    max-width: 100%;
}

.row{
    background: rgb(107, 5, 5);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    justify-content: center;
    transition: all.55s ease;
    cursor: pointer;
    display: inline-flex;
}

.row:hover {
    transform: translateY(-8px);
}

.row2{
    background:orange;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    justify-content: center;
    transition: all.55s ease;
    cursor: pointer;
    display: inline-flex;
}

.row2:hover {
    transform: translateY(-8px);
}

.row3{
    background: green;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    justify-content: center;
    transition: all.55s ease;
    cursor: pointer;
    display: inline-flex;
}

.row3:hover {
    transform: translateY(-8px);
}

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