@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@200;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    background-color: #343237;
}

p{
    padding-bottom: 15px;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

/*contacto*/
.contacto{
    width: 100%;
    background-color: #eceeef;
    padding: 20px;
}

.contenido_col1{
    color: #000;
    text-align: center;
    font-size: 20px;
}

.contenido_col1 p{
    padding-bottom: 20px;
}

.contenido_col1 a{
    color: #6d0101;
}

.contenido_col1 a:hover{
    color: #000;
}

/*cvs*/
.cvs{
    background: #272629;
    width: 100%;
    padding: 40px 0 40px 0;
}

.cvs_cd{
    background: #272324;
    width: 100%;
    padding: 40px 0 40px 0;
}

.lanzamiento{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 200;
    padding: 20px;
    border: 1px solid #474747;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    margin: 20px;
    color: #acacac;
}

.seccion{
    width: 80%;
    margin: 0 auto;
}

.contenido_txt_cd{
    flex: 60%;
    padding: 20px;
}

.contenido_txt{
    flex: 60%;
    padding: 20px;
}

.contenido_txt_cd h1{
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 26px;
    margin-bottom: 20px;
    color: #ca9a5c;
}

.contenido_txt h1{
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 26px;
    margin-bottom: 20px;
    color: #ca9a5c;
}

.contenido_txt h2{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 8px;
    color: #acacac;
}

.contenido_txt p{
    margin-left: 15px;
    margin-bottom: 8px;
}

.contenido_txt p span{
    color: #ca9a5c;
}

.margen{
    padding-left: 20px;
}

.contenido_img_cd{
    flex: 40%;
    text-align: center;
    padding: 20px 0 20px 0;
}

.contenido_img{
    flex: 40%;
    text-align: center;
    padding: 20px 0 20px 0;
}

.contenido_img_cd img{
    width: 300px;
}

.contenido_img img{
    width: 290px;
    border-radius: 4px;
}

/* menu cv */
.activo{
    background: linear-gradient(180deg, rgba(41, 41, 43, 1) 0%, rgba(54, 56, 63, 1) 100%);
    display: block;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    color: #ca9a5c;
    text-shadow: 1px 1px #000;
}
.menu-categorias a{
    background: linear-gradient(180deg, rgba(41, 41, 43, 1) 0%, rgba(54, 56, 63, 1) 100%);
    display: block;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    color: #fae6bb;
    text-shadow: 1px 1px #000;
    text-decoration: none;
    transition: all .2s ease-out;
}

.menu-categorias a:hover{
    background: linear-gradient(180deg, rgba(32, 32, 33, 1) 0%, rgba(64, 66, 71, 1) 100%);
    color: #ca9a5c;
}

/*mantenimieto*/
.mantenimieto{
    width: 100%;
    background-color: #e0e0e5;
    text-align: center;
}

.sitio{
    text-align: center;
    padding: 20px 0 40px 0;
}

/* boton siguiente */
.siguiente .btn-siguiente{
    font-size: 16px;
    width: 100px;
    background-color: #6d0101;
    text-align: center;
    display: block;
    padding: 6px;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
}

.siguiente .btn-siguiente:hover{
    background-color: #951b1a;
    color: #fff;
}

/* footer */
footer{
    background: #000;
    padding: 12px;
    display: flex;
    justify-content: center;
}

.redes{
    gap: 20px;
    padding: 16px;
}

.redes a{
    color: #fae6bb;
}

.redes a:hover{
    color: #ca9a5c;
}

@media screen and (max-width: 768px) {
    .row{
        flex-direction: column;
    }
    .seccion{
        width: 100%;
    }
}