@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --bg-color: #101113;
    --text-color: #fff;
    --main-color: #00eeff;
    --other-color: #fcfcfc;
    --h1-font: 4rem;
    --p-font: 1rem;
}

body{
    background-color: var(--bg-color);
    color: var(--text-color);
}

header {
    position: fixed;
    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: var(--text-color);
    font-size: 28px;
    font-weight: bold;
}

.logo i {
    color: var(--main-color);
    font-size: 32px;
    margin-right: 5px;
}

.navegacao {
    display: flex;
}

.navegacao a {
    color: var(--other-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin: 0 30px;
    transition: a 0.55s ease;
}

.navegacao a:hover {
    color: var(--main-color);
}

.headers-icons {
    display: flex;
    align-items: center;
}

.headers-icons i {
    margin-right: 25px;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
}

.headers-icons i:hover {
    transform: scale(1.2);
    color: var(--main-color);
}

#menu {
    font-size: 35px;
    color: var(--text-color);
    z-index: 1001;
    cursor: pointer;
}

.menu-suspenso {
    display: none;
    position: absolute;
    top: calc(100% - 39px); 
    right: 75px; 
    background-color: #ffffff23;
    padding: 10px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 3;
    transition: opacity 0.3s ease;
    text-align: center; 
}

.menu-suspenso.mostrar {
    display: block;
    opacity: 1;
}

.menu-suspenso a {
    color: #fff;
    font-size: 14px; 
    padding: 8px 20px;
    display: block;
    transition: background-color 0.3s ease;
    text-align: inherit; 
}

.menu-suspenso a:hover {
    background-color: #555;
}

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

.home-text h1{
    font-size: var(--h1-font);
    line-height: 1.2;
    margin-bottom: 2px;
}

.home-text h5{
    color: #ffffff99;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 60px;
    margin-top: 20px;
}

.home-text h3{
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 35px;
}


.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 var(--text-color);
    transition: all 0.55s ease;
    color: white;
}

.btn:hover {
    background: var(--text-color);
    border: 2px solid var(--text-color);
    color: black;
}

.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: 50px;
    height: auto;
    max-width: 100%;
}

.row {
    background: var(--main-color);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    justify-content: center;
    transition: all 0.55s ease;
    cursor: pointer;
    display: inline-flex;
}

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

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

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

.row3{
    background: #ffd06d;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all.55s ease;
    cursor: pointer;

}

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

@media screen and (max-width: 768px) {
    .home {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 10px;
        margin-left: 10px;
    }

    .home-img img {
        width: 80%;
        margin: 0 auto;
    }

    .home-text {
        text-align: center;
        margin-top: -150px;
    }

    .home-text h1 {
        font-size: 2rem;

    }

    .navegacao {
        display: none;
    }

    .headers-icons {
        position: relative;
        margin-left: 50px;
    }

    .menu-suspenso {
        position: absolute;
        top: 100%;
        right: 0;
}

.main {
    margin-top: 5px;
}

.row,
.row2,
.row3 {
    width: 55px; 
    height: 55px;
}

.row {
    margin-top: 40px
}

.btn {
    padding: 12px 50px; 
    font-size: 14px; 
}

}