@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


a {
    color: #5E5F5F;
}

a:hover {
    color: orange;
}






.menu {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    width: 286px;
    height: 100%;
    box-sizing: border-box;
    z-index: 9999;
    box-shadow: 6px -6px 6px 0px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    background-color: red;
}

.contenido {
    position: relative;
    padding-left: 286px;
    width: 100%;
    box-sizing: border-box;
    background-color: skyblue;
}

#texto_seo_2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: 70px;
    background-color: #fff;
    width: 100%;
}

.caja_seo {
    position: relative;
    width: 90%;
    background: #fff;
    box-sizing: border-box;

}

p {
    margin: 0px;
}

.titulo {
    font-family: "Roboto", sans-serif !important;
    font-size: 30px;
    color: #545456;
    margin-bottom: 15px;
}

.parrafo_seo {
    font-family: "Roboto", sans-serif !important;
    font-size: 15px;
    color: #545456;
    text-align: justify
}


.barra_seo {
    border: 0;
    border-top: 1px solid #545456;
    margin: 20px 0;
}

.seccion_seo {
    font-family: "Roboto", sans-serif !important;
    font-size: 20px;
    color: #545456;
    margin-top: 40px;
    margin-bottom: 10px;
}

.apartado_seo {
    font-family: "Roboto", sans-serif !important;
    font-size: 18px;
    color: #545456;
    margin-top: 20px !important;
    margin-bottom: 10px !important;

}



.tabla_seo1 {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.tabla_seo {
    background-color: white;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

.th_seo,
.td_seo {
    padding: 10px;
}



.cabecera_seo {
    background-color: #545456;
    color: white;
    font-family: "Roboto", sans-serif !important;
    font-size: 15px;
    border-bottom: solid 5px black;
}

.linea_seo:nth-child(even) {
    background-color: #ddd;
}

.td_seo {
    font-family: "Roboto", sans-serif !important;
    font-size: 15px;
    color: #545456;
}

.linea_seo:hover .td_seo {
    background-color: #ff9500;
}



















@media (max-width: 1279px) {

    .menu {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        width: 0px;
        height: 100%;
        box-sizing: border-box;
        z-index: 9999;
        box-shadow: 6px -6px 6px 0px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        background-color: red;
        visibility: hidden;
    }

    .contenido {
        position: absolute;
        padding-left: 0px;
        width: 100%;
        box-sizing: border-box;
        background-color: aliceblue;
    }

}




@media (max-width: 1023px) {

    .menu {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        width: 0px;
        height: 100%;
        box-sizing: border-box;
        z-index: 9999;
        box-shadow: 6px -6px 6px 0px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        background-color: red;
        visibility: hidden;
    }

    .contenido {
        position: absolute;
        padding-left: 0px;
        width: 100%;
        box-sizing: border-box;
        background-color: aliceblue;
    }


}