/* Top Container */

.top-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    background-image: url('../assets/fondo-top.png');
    background-size: cover;
}

.top-logos-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 0 80px;
}

.top-logos-images img {
    width: 280px;
}

.coexito-logo {
    width: 380px !important;
}

/* Top Container Info */

.top-container-info {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 110px;
}

.top-container-info-mobile 
{
    display: none;
}

.top-container-left-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
}



.top-container-left-info img {
    width: 100%;
}

.top-container-right-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    width: 40%;
}

.top-container-right-info img {
    width: 40%;
}

.top-container-right-info button {
    padding: 15px 80px;
    border: none;
    border-radius: 20px;
    background-color: #FF6700;
    color: #fff;
    font-weight: bold;
    font-size: 2.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-container-right-info button:hover {
    background-color: #fff;
    color: #FF6700;
}

/* Mobile media query */

@media screen and (max-width: 768px) {


    .top-logos-images {
        justify-content: flex-end;
        padding: 0 20px;
    }

    .top-container {
        background-image: url('../assets/fondo-top-mobile.png');
    }

    .coexito-logo {
        display: none;
    }

    .top-logos-images img {
        width: 180px;
    }

    .top-container-info {
        display: none;
    }

    .top-container-info-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-top: 25px;
    }



    .top-mobile-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .top-mobile-info-img-first {
        width: 55%;
        margin-bottom: 10px;
    }

    .top-mobile-info-img-second {
        width: 25%;
        margin-bottom: 10px;
    }

    .top-mobile-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
    }

    .car-mobile-img {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .car-mobile-img img {
        width: 90%;
    }

    .button-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .button-mobile button {
        width: 50%;
        height: 50px;
        border: none;
        border-radius: 10px;
        background-color: #FF6700;
        color: #fff;
        font-weight: bold;
        font-size: 1.65rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .button-mobile button:hover {
        background-color: #fff;
        color: #FF6700;
    }

}
