#content-inicio-d-1, 
#content-inicio-d-2 {
    display: none;
}

#content-inicio {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: calc(100vh - 96px);
    padding: 0 3rem;
    overflow: hidden;
}

.texto-inicio {
    color: #fff;
    font-family: "Sekuya", system-ui;
    font-size: 3rem;
    text-align: left;
    width: 100%;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.2rem;
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
}

.texto-inicio span {
    display: inline-block;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 3rem;
    letter-spacing: -0.15rem;
}

.texto-inicio span:nth-child(2) {
    font-size: 5rem;
    font-weight: 900;
}

.texto-inicio span:nth-child(3) {
    font-size: 4rem;
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    transform: rotate(-15deg) translateY(-5px);
}

.texto-inicio span:nth-child(4) {
    font-size: 1.5rem;
    vertical-align: middle;
}

.texto-inicio span:nth-child(5) {
    font-size: 3.5rem;
}

.texto-inicio span:nth-child(9) {
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
    font-size: 4.5rem;
    letter-spacing: -2px;
}

.texto-inicio span:nth-child(16) {
    font-size: 3.8rem;
    transform: rotate(10deg);
}

.texto-inicio span:nth-child(18),
.texto-inicio span:nth-child(19),
.texto-inicio span:nth-child(20) {
    font-size: 1.8rem;
    color: #aaa;
    letter-spacing: 5px;
}

.texto-inicio span:nth-child(22) {
    font-size: 6.5rem;
    line-height: 0.5;
}

.texto-inicio span:last-child {
    font-size: 5rem;
    font-weight: 900;
    -webkit-text-stroke: 3px #fff;
    color: transparent;
    transform: scaleY(1.5) translateY(10px);
}










@media screen and (min-width:768px) {
    #content-inicio {
        display: none;
    }

    #content-inicio-d-1 {
        display: flex;
        height: calc(100vh - 96px);
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    #content-inicio-d p span {
        color: #fff;
        font-family: "Roboto", sans-serif;
        font-size: 6rem;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    #content-inicio-d p span:hover {
        color: transparent;
        -webkit-text-stroke: 2px #fff;
    }



    #content-inicio-d-2 {
        display: grid;
        grid-template-columns: repeat(2, 300px);
        grid-template-rows: repeat(2, 300px);
        gap: 20px;
        height: calc(100vh - 96px);
        align-content: center;
        justify-content: center;
        background-color: #000;
    }

    .inicio-sqr {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f2f2f2;
        border: 1px solid #fff;
        text-decoration: none;
        color: #000;
        position: relative;
        transition: background 0.3s ease;
    }

    .inicio-sqr p {
        font-size: 1.5rem;
        margin: 0;
        position: absolute;
        transition: opacity 0.3s ease;
        font-family: "Roboto", sans-serif;
    }

    .texto-hover {
        opacity: 0;
    }

    .inicio-sqr:hover {
        background-color: #000;
    }

    .inicio-sqr:hover .texto-normal {
        opacity: 0;
    }

    .inicio-sqr:hover .texto-hover {
        opacity: 1;
        color: #fff;
    }

}



@media screen and (min-width:1920px) {

    #content-inicio-d p span {
        font-size: 10rem;
    }

    #content-inicio-d-2 {
        grid-template-columns: repeat(2, 350px);
        grid-template-rows: repeat(2, 350px);
        gap: 30px;
    }

    .inicio-sqr p {
        font-size: 1.8rem;
    }
}