*{
    margin: 0rem;
    padding: 0rem;
    box-sizing: border-box;
}
html{
    background-color: var(---Color-fondo-1);
    font-size: 62.5%;
    font-family: 'LEMONMILK';
}
@font-face {
    font-family: 'LIMONMILK';
    src: url(./fuente/LEMONMILK-Regular.otf);
}
:root{
    ---Color-fondo-1: #1F1F1F;
    ---Color-fondo-2: #282828;
    ---Color-base-1: #427AFD;
    ---Color-base-2: #FFFFFF;
    ---Tamaño-de-texto-1: 2rem;
    ---Sombra-de-boton: 0rem 0rem 1rem var(---Color-base-1);
}
/* Estilo de textos */
.tituloDeBloque{
    color: var(---Color-base-1);
    text-align: center;
    font-size: 5rem;
    font-family: "LIMONMILK";
}
.tituloDeBloque1{
    color: var(---Color-fondo-1);
    text-align: center;
    text-transform: uppercase;
    font-family: 'LIMONMILK';
    font-size: 3rem;
    padding-top: 10rem;
}
.textoParrafo{
    color: white;
    font-size: 2rem;
    width: 100%;
    padding: 3rem 0rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
/* estilos de botones */
.estiloDeBtn1{
    border: none;
    background-color: var(---Color-fondo-1);
    color: var(---Color-base-1);
    padding: 0.5rem 1rem;
    box-shadow: var(---Sombra-de-boton);
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: var(---Tamaño-de-texto-1);
    transition: all 300ms ease;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.estiloDeBtn1:hover{
    background-color: var(---Color-base-1);
    color: var(---Color-fondo-2);
}
.menuBloque{
    display: flex;
}
.menu{
    background-color: var(---Color-fondo-2);
    width: 140rem;
    align-content: center;
    height: 7rem;
    margin: auto;
}
.opcionesDeMenu{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.itemsMenuBloque{
    display: flex;
    gap: 2rem;
}
/* Estilos de bloque inicio */
.bloqueDeinicio{
    display: flex;
}
.ubicacionDeBloque{
    display: flex;
    margin: auto;
    width: 140rem;
    gap: 2rem;
    height: 50rem;
    justify-content: center;
    align-items: center;
}
.parte1{
    width: 60%;
    display: inline;
    justify-content: center;
    padding: 2rem;
    align-items: center;
    text-align: center;
}
.parte2{
    width: 40%;
}
.ubicacionDeFotoPortada{
    display: flex;
}
.fotoDePerfilBloque1{
    width: 35rem;
    height: 35rem;
    object-fit: cover;
    border-radius: 100%;
    box-shadow: var(---Sombra-de-boton);
    margin: auto;
}
/* Estilos de container de proyectos */
.ubicacionDeBloqueDeProyectos{
    display: flex;
}
.ContainerDeBloqueDeProyectos{
    width: 1400px;
    margin: auto;
}
    /* Botones de menu de scroll */
.controladoresDeScroll{
    display: flex;
    justify-content: space-between;
}
#btnRetroceder, #btnAvanzar{
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.btnMenuScroll{
    width: 2rem;
    height: 2rem;
}
.containerDeCardsProyectos{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 2rem;
    padding: 3rem 0rem;
    scroll-behavior: smooth;
}
.containerDeCardsProyectos::-webkit-scrollbar{
    display: none;
}
.cardProyecto{
    background-color: var(---Color-fondo-2);
    width: 35rem;
    height: 39rem;
    padding: 1rem;
    margin: 1rem;
    gap: 1rem;
    text-align: center;
    justify-content: center;
    box-shadow: var(---Sombra-de-boton);
    border-radius: 2rem;
    transition: all ease 300ms;
    flex: 0 0 auto;
}
.cardProyecto:hover{
    scale: 110%;
}
.portadaDeProyecto{
    width: 32rem;
    height: 20rem;
    object-fit: cover;
    border-radius: 2rem;
}
.tituloDeProyecto{
    text-align: center;
    color: var(---Color-base-1);
    font-family: 'LIMONMILK';
    font-size: 2rem;
    padding-top: 1rem;
}
.descripcionDeProyecto{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    text-align: center;
    padding: 1rem 0rem;
    color: white;
    
}
.btnDeProyectoCard{
    font-family: "LIMONMILK";
    background-color: var(---Color-fondo-2);
    color: var(---Color-base-1);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: var(---Sombra-de-boton);
    cursor: pointer;
}
/* container de servicios */
.ubicacionDeBloqueDeServicios{
    display: flex;
    padding: 15rem 0rem;
}
.bloqueDeServicios{
    width: 1400px;
    margin: auto;
}
.containerDeServicios{
    gap: 3rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding-top: 10rem;
    align-items: center;
    justify-items: center;
}
.botonDeServicios{
    text-decoration: none;
    display: flex;
    box-shadow: var(---Sombra-de-boton);
    width: fit-content;
    padding: 1rem 2rem;
    border-radius: 1rem;
    justify-content: center;
    align-self: center;
    gap: 2rem;
    background-color: var(---Color-fondo-2);
    transition: all ease 300ms;
}
.botonDeServicios:hover{
    scale: 120%;
}
.iconoDeBoton{
    width: 4rem;
    height: 4rem;
    color: var(---Color-base-1);
}
.tituloDeServicioBtn{
    font-family: 'LIMONMILK';
    color: var(---Color-base-1);
    font-size: 3rem;
}
/* Bloque de redes Sociales */
.bloqueDeRedesSociales{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0rem;
}
.posicionDeBloque{
    margin: auto;
    width: 140rem;

}
.ContainerRedes{
    display: flex;
    justify-content: space-around;
    align-content: center;
    padding: 10rem 0rem;
}
.CardRedSocial{
    width: 25rem;
    background-color: var(---Color-fondo-2);
    height: 18rem;
    border-radius: 1rem;
    box-shadow: var(---Sombra-de-boton);
}
.linkCardRed{
    text-decoration: none;
    width: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.linkCardRed:hover, .CardRedSocial:hover{
    scale: 120%;
    transition: all ease 300ms;
}
.iconoDeCardRed{
    width: 10rem;
    color: var(---Color-base-1);
    padding-top: 2rem;
}
.idDeredeSocial{
    font-size: 1.6rem;
    color: var(---Color-base-1);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 1rem 0rem;
}
/* Bloque 4 */
.bloqueFinalHome{
    display: flex;
}
.ubicacionDelBloque4{
    width: 140rem;
    margin: auto;
    background-color: #427AFD;
}
.informacionDeBloque4{
    display: flex;
    padding: 5rem 0rem;
}
.parte1Bloque4{
    width: 70%;
    justify-content: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: auto;
}
.textoParrafoBloque4{
    font-size: 2rem;
    color: var(---Color-fondo-1);
    padding-bottom: 3rem;
}
.portadaDeBloque4{
    width: 100%;
    height: 100%;
}
/* footer */
footer{
    display: flex;
    background-color: var(---Color-base-1);
    height: 30rem;
}
.ubicacionDeBloqueFooter{
    margin: auto;
    width: 140rem;
    display: flex;
    justify-content: end;
}
.linksFooter{
    padding: 0rem 5rem 0rem 0rem;
}
.listadoDeLinksFooter{
    justify-items: end;
}
.itemListadoFooter{
    list-style: none;
    padding: 1.2rem 0rem;
    margin-right: 10rem;
}
.linkItem{
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-radius: 2rem;
    color: var(---Color-fondo-2);
    font-weight: bold;
}
