
/* --------------------------------- */
/* ----------Estilos Landing Page------------- */
/* ---------------------------------- */


.landing-page {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    margin: 0 auto;
    /* background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 24%, rgba(248,248,248,0) 50%, rgba(0,0,0,1) 76%); */

}

.background-image {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-height: calc(100vh - 80px); 
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/panel.jpg');
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;


}


.content-container {
    width: 80%;
    position: absolute;
    bottom: 5%;
    left: 10%;
    padding: 20px;
    border-radius: 10px;
    
}

.content {
    text-align: left;
}

.content h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.content p {

    color: var(--white);
    margin-bottom: 20px;
    width: 30%;
}

@media (max-width: 1220px) {


        .landing-page{

            background: none;
            background: rgb(0,0,0);
            background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(248,248,248,0) 40%, rgba(255,255,255,0) 60%, rgba(0,0,0,1) 100%);
        }   
        .background-image {
            background-size: cover;

        }

        .content-container {
            width: 80%;
            position: absolute;
            bottom: 30%;
            left: 10%;
            padding: 20px;
            border-radius: 10px;
        }

        .content p {

            color: var(--white);
            margin-bottom: 20px;
            width: 50%;
        }
    
    }

@media (max-width: 800px) {

    .content p {

        color: var(--white);
        margin-bottom: 20px;
        width: 90%;
    }

    .content-container {
        width: 80%;
        position: absolute      ;
        bottom: 45%;
        left: 10%;
        padding: 20px;
        border-radius: 10px;
    }
}
