/* Reset CSS de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, button {
    all: unset;
}

body{
    font-family: 'Poppins', sans-serif;
}

body{
    background: #FFFEF7;
}

header{
    position: fixed;
    top: 30px;
    left: max(calc((100% - 1400px) / 2), 0px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

header a {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;

}
.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 174px auto 0 auto;
    max-width: 1400px;
}

.left-part{
    flex: 1;
}

.left-part h1{
    font-weight: 800;
    font-size: 64px;
    line-height: 60px;
    letter-spacing: 0%;
    color: #ECD033;
}

.left-part p{
    margin-top: 34px;
    font-weight: 500;
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 0%;
    max-width: 599px;
}

.left-part a{
    cursor: pointer;
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 7px 28px;
    background: #050505;
    width: fit-content;
    border-radius: 100px;
    color: #fff;
    transition: background 0.3s linear, color 0.3s linear;

    &:hover{
        background: #ECD033;
        color: #050505;
    }
}

.left-part .mobile-discover{
    margin-top: 85px;
    width: 550px;
    height: 275px;
    overflow: hidden;
    border-radius: 20px;
}

.left-part .mobile-discover .top{
    width: 100%;
    height: 173px;
}

.left-part .mobile-discover .bottom{
    width: 100%;
    height: 102px;
    background: #050505;
    padding: 8px 25px 18px 22px;
}

.left-part .mobile-discover .top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-part .mobile-discover .bottom .bottom-title{
    font-family: Poppins;
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #fff;
}

.left-part .mobile-discover .bottom .flex-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.left-part .mobile-discover .bottom .flex-bottom p{
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #fff;
    max-width: 329px;
    margin-top: 0;
}

.left-part .mobile-discover .bottom .flex-bottom a{
    font-weight: 500;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-top: 0;
    padding: 5px 13px;
    background: #fff;
    border-radius: 100px;
    color: #050505;
    transition: background 0.3s linear, color 0.3s linear;

    &:hover{
        background: #ECD033;
        color: #050505;
    }
}

.right-part{
    aspect-ratio: 1/1;
}

.right-part img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
