body{
    margin: 0;
    position: relative;
}

.container {
    padding: 0 60px;
}

header {
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 60px;
    z-index: 10;
}

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 40px;
}

section {
    display: flex;
    align-content: center;
    height: 100vh;
    height: 100dvh;
    color: #fff;
}

section > div{
    width: 50%;
    height: 100%;
}

section .group-left{
    background: url("../images/background.svg") center no-repeat;
    background-size: cover;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

section .group-left .container{
    margin-bottom: 35px;
}

section .group-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h1{
    font-family: 'GazpachoRegular';
    font-size: 68px;
    color: #72BE44;
    font-weight: normal;
    margin-bottom: 5px;
}

p{
    font-size: 21px;
    line-height: 25px;
}

span{
    color: #fff;
    font-size: 14px;
}

p, span{
    font-family: 'Inter';
    font-weight: 500;
}

.logo-verde{
    position: absolute;
    left: 100%;
    bottom: 30px;
    max-width: 120px;
    transform: translateX(-50%);
}

@media (max-width: 1640px) {
    h1{
        font-size: 60px;
    }

    p{
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    h1{
        font-size: 46px;
    }
}

@media (max-width: 1000px) {
    header img{
        max-width: 200px;
    }

    section{
        flex-direction: column;
        height: unset;
    }

    section > div{
        width: 100%;
    }

    section .group-left{
        padding-top: 140px;
        padding-bottom: 100px;
    }

    section .group-right{
        aspect-ratio: 1;
    }

    .logo-verde{
        top: 100%;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);

    }
}

@media (max-width: 600px) {
    header{
        padding-top: 40px;
    }

    footer{
        padding-bottom: 30px;
    }

    h1{
        font-size: 38px;
    }

    section .group-left{
        padding-bottom: 60px;
    }

    .container{
        padding: 0 40px;
    }
}