/*
#### ##    ## ######## ########   #######     ##     ##    ###    ########   ######     ###     ######  
 ##  ###   ##    ##    ##     ## ##     ##    ###   ###   ## ##   ##     ## ##    ##   ## ##   ##    ## 
 ##  ####  ##    ##    ##     ## ##     ##    #### ####  ##   ##  ##     ## ##        ##   ##  ##       
 ##  ## ## ##    ##    ########  ##     ##    ## ### ## ##     ## ########  ##       ##     ##  ######  
 ##  ##  ####    ##    ##   ##   ##     ##    ##     ## ######### ##   ##   ##       #########       ## 
 ##  ##   ###    ##    ##    ##  ##     ##    ##     ## ##     ## ##    ##  ##    ## ##     ## ##    ## 
#### ##    ##    ##    ##     ##  #######     ##     ## ##     ## ##     ##  ######  ##     ##  ######  */
.intro_marcas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.intro_superior {
    display: flex;
    flex-direction: column;
    background-color: #F37021;
    color: #fff;
    padding: 30px 0;
    align-items: center;
    width: 100%;

    & h2 {
        margin: 0;
        font-size: 32px;
        text-align: center;
        font-weight: bold;
    }

    & p {
        font-family: "Raleway", sans-serif;
        font-weight: 400;
        text-align: center;
        margin-top: 10px;
        font-size: 1.5em;
        /* color: #9a031e; */
        font-style: italic;
    }
}


.intro_caracteristicas {
    margin-top: 30px;
    display: flex;
    /* width: 70%; */
    color: #fff;
    gap: 30px;
}

.caracteristica_marca {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;

    & .numero {
        flex: 1;
        font-size: 3em;
        font-weight: 800;
        color: #9a031e;
        padding: 0 5px;
        border-right: solid 1px #fff;
        opacity: 0;
        transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    }

    & .texto {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    & strong {
        font-weight: bold;
        font-size: 2em;
    }
}

.numero.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro_productos {
    padding: 30px 0;
    display: flex;
    width: 80%;
    gap: 50px;
    font-size: 1.1em;
    align-items: center;
    color: #5a5a5a;
    /* text-align: justify; */

    & h1 {
        font-weight: 900;
        color: #363636;
    }

    & p {
        margin-bottom: 15px;
    }

    & strong {
        color: #F9751F;
    }

    & .boton {
        border-radius: 20px;
        background-color: #F9751F;
        color: #fff;
        font-weight: 800;
        padding: 5px;
        max-width: 150px;
        text-align: center;
    }
}

.texto_izquierda {
    width: 50%;
}

.lista_derecha.visible {
    opacity: 1;
    transform: translateX(0);
}

.lista_derecha {
    flex: 1;
    color: #5a5a5a;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;

    & ul {
        list-style: none;
        padding: 0;
    }

    & li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 20px;
    }

    & li::before {
        content: "›";
        position: absolute;
        left: 0;
        color: #F37021;
        font-weight: 900;
    }

}



/*
 ######   #######  ##       ##          ###     ######   ######## 
##    ## ##     ## ##       ##         ## ##   ##    ##  ##       
##       ##     ## ##       ##        ##   ##  ##        ##       
##       ##     ## ##       ##       ##     ## ##   #### ######   
##       ##     ## ##       ##       ######### ##    ##  ##       
##    ## ##     ## ##       ##       ##     ## ##    ##  ##       
 ######   #######  ######## ######## ##     ##  ######   ######## */

.collage {
    display: flex;
    flex-wrap: wrap;
    /* height: 90vh; */
}

.marca,
.marcafiltro {
    position: relative;
    flex: 0 0 50%;
    height: 45vh;
    overflow: hidden;
}

.imagencollage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo {
    object-fit: contain;
}

.pareja {
    display: flex;
    flex: 0 0 50%;
    width: 100%;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .intro_caracteristicas {
        flex-direction: column;
        gap: 20px;
    }

    .caracteristica_marca .numero {
        text-align: right;
    }

    .intro_productos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        & h1,
        & h3 {
            text-align: center;
        }

        & p {
            text-align: justify;
            text-align-last: center;
        }
    }

    .texto_izquierda {
        width: 100%;
        margin: 0 auto;
        text-align: center;

    }

    .pareja {
        display: flex;
        flex: 0 0 100%;
        width: 100%;
        flex-wrap: wrap;
    }


    .pareja:nth-child(2) {
        flex-direction: row-reverse;
    }

    .pareja:nth-child(3) {
        flex-direction: row-reverse;
    }


    .marca,
    .marcafiltro {
        flex: 0 0 50%;
        height: 25vh;
    }

}
