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

:root {
    --bg-color: #0f0f0f;
    --text-color: #fff;
    --main-color: #ff4d05;
    --second-color: #b2b2b2;
}

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

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 15%;
    background: transparent;
    transition: all .45s ease;
}

.logo {
    color: var(--text-color);
    font-size: 35px;
    font-weight: 700;
}

.logo span {
    color: var(--main-color);
}

.navlist {
    display: flex;
}

.navlist a {
    color: var(--second-color);
    font-size: 17px;
    font-weight: 500;
    margin: 0 25px;
    transition: all .45s ease;
}

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

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

section {
    padding: 160px 15% 120px;
}

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

.hero-text h5 {
    font-size: 18px;
    font-weight: 400;
    color: var(--main-color);
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 90px;
    line-height: 1;
    font-family: 'Permanent Marker', cursive;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--main-color);
}

.hero-text p {
    font-size: 16px;
    color: var(--second-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.main-hero {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 13px 32px;
    background: var(--main-color);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all .45s ease;
    margin-right: 20px;
}

.btn:hover {
    transform: scale(1.05);
    background: #e64404;
}

.btn2 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid var(--main-color);
}

.hero-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 77, 5, 0.3);
}

.icons {
    position: absolute;
    top: 50%;
    padding: 0 3%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.icons i {
    font-size: 25px;
    color: var(--second-color);
    transition: all .45s ease;
}

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

/* Responsividade */
@media (max-width: 1600px) {
    header {
        padding: 20px 5%;
    }
    section {
        padding: 120px 5% 100px;
    }
}

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 70px;
    }
}

@media (max-width: 992px) {
    #menu-icon {
        display: block;
    }
    .navlist {
        position: absolute;
        top: -1000px;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all .45s ease;
    }
    .navlist.open {
        top: 0;
    }
    .navlist a {
        display: block;
        margin: 15px 0;
        font-size: 22px;
    }
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        text-align: center;
    }
    .main-hero {
        justify-content: center;
    }
    .icons {
        display: none;
    }
}
