.home {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 900px;
    padding: 0 10px;
    padding: 0 20px;
    border-bottom: 3px solid var(--color-c1);
    overflow: hidden;
}

.home-foto {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home-foto img {
    width: auto;
    max-width: 100%;
}

.font-1-h1-b {
    max-width: 527px;
    position: relative;
    z-index: -1;
}

.font-1-h1-b::before {
    content: '';
    position: absolute;
    width: 1em;
    height: 1em;
    top: 2px;
    background-image: url(../../assets/img/outros/pingo-marca.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: -3%;
    z-index: -1;
}

.font-2-xl-r {
    max-width: 648px;
    margin-top: 10px;
}

.icones-sociais {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.icones-sociais a {
    font-size: 25px;
    padding: 2px 4px;
    background-color: var(--color-c1);
    transition: all .3s;
}

.icones-sociais a:hover {
    background-color: var(--color-p2);
    color: var(--color-c13);
    transition: all .3s;
}

@media (min-width: 768px) and (max-width:991px){
    .home {
        grid-template-rows: auto;
        min-height: 800px;
    }

    .font-1-h1-b {
        max-width: 381px;
    }
    
    .font-2-xl-r {
        max-width: 600px;
        margin-top: 0px;
    }

}

@media (min-width: 481px) and (max-width:767px){
    .home {
        min-height: 800px;
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 500px 150px;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    .home-foto {
        justify-content: center;
    }

    .home-foto img {
        max-width: 350px;
        height: auto;
    }


    .font-1-h1-b  {
        max-width: 381px;
        
    }
    
    .font-2-xl-r {
        max-width: 600px;
        margin-top: 0px;
    }

    .icones-sociais {
        display: flex;
        gap: 10px;
        margin-top: 25px;
    }
    .icones-sociais a {
        font-size: 20px;
    }
}

@media (max-width:480px){
    .home {
        min-height: 90vh;
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 350px 230px;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    .home-foto {
        justify-content: center;
        margin-top: 60px;
    }

    .home-foto img {
        width: 226px;
        height: auto;
    }

    .font-1-h1-b {
        max-width: 381px;
    }
    
    .font-2-xl-r {
        max-width: 648px;
        margin-top: 0px;
    }

    .icones-sociais {
        display: flex;
        gap: 10px;
        margin-top: 25px;
    }
    .icones-sociais a {
        font-size: 20px;
    }


}