@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --amarillo: #F6E62E;
}

.menu {
    position: fixed;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000000;
    color: #ffffff;
    width: 100%;
}

.menu__logo {
    padding-left: 2rem;
}

.menu__lista {
    padding-right: 1.4rem;
}

.menu__logo img {
    display: block;
    margin: auto;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.menu__opciones {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu__opciones li {
    padding: 1.5rem 1.5rem;
}

.menu__opciones li a {
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.menu__opciones li a:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--amarillo);
    border-radius: 1rem;
    animation: salir 0.5s;
}

.menu__icono {
    display: none;
}

.capa {
    position: fixed;
    z-index: 20;
    width: 100%;
    height: 100vh;
    background-color: rgba(51, 51, 51, .5);
    display: none;
    justify-content: flex-end;
}

.menu__mobil {
    background-color: #ffffff;
    width: 60%;
    height: 100%;
    animation: derecha 0.5s;
}

.menu__mobil__texto {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__mobil__opciones {
    padding: 1.5rem 0;
    margin: 0;
}

.menu__mobil__opciones li {
    padding: 1.3rem 0;
    list-style: none;
    text-align: center;
}

.menu__mobil__opciones li a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
}

#menu__cerrar {
    border: none;
    background-color: #ffffff;
    color: #000000;
    font-size: 2rem;
}

.slider {
    height: 100vh;
    width: 100%;
}

.slider__fondo {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../src/img/hombre.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.controles {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.punto {
    width: 15px;
    height: 15px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    cursor: pointer !important;
    border-radius: 50%;
    background-color: #ffffff;
}

.slider__texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0 2rem;
    width: 50%;
    height: 100%;
    background-color: var(--amarillo);
}

.btn__negro {
    background-color: #000000;
    border: 1px solid #000000;
    padding: 1rem 2.5rem;
    color: #ffffff;
    text-decoration: none;
}

.btn__negro:hover {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
}

.cambiar_imagen {
    animation: cambiar 1s;
}

.servicios {
    background-color: #000000;
    color: #ffffff;
}

.servicios__imagenes {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serv {
    margin: 0 7rem;
    text-align: center;
}

.serv img {
    display: block;
    margin: auto;
    object-fit: contain;
}

.titulo {
    font-weight: 700;
}

.proyectos__titulo {
    padding: 5rem 0 2rem 0;
}

.oculto {
    display: block;
}

.mostrar {
    display: none;
}

.mostrarno {
    display: none;
}

.texto_slider {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
}

.cortina {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    border-radius: 0.5rem;
}

.cortina__texto {
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 24px;
    opacity: 1;
    font-weight: 700;
    text-shadow: 2px, 2px, 2px, #000000;
}

.cortina:hover {
    opacity: 1;
    background-color: rgba(50, 50, 50, 0.5);
}

.imagen__proy {
    border-radius: 0.5rem;
}

.imagen__clientes {
    height: auto;
    object-fit: contain;
    transition: all 0.5s;
}

.imagen__clientes:hover {
    transform: scale(1.1);
}

footer {
    margin-top: 7.5rem;
    background-color: #000000;
}

.contacto {
    background-color: var(--amarillo);
    border-radius: 1rem;
    transform: translateY(-50%);
}

.contacto__globo {
    text-align: center;
    padding: 1.5rem 2rem;
}

.btn__foot {
    background-color: #000000;
    border: 1px solid #000000;
    padding: 0.5rem 2.5rem;
    color: #ffffff;
    text-decoration: none;
}

.btn__foot:hover {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
}

.btn__amari {
    background-color: var(--amarillo);
    border: 1px solid var(--amarillo);
    padding: 0.5rem 2.5rem;
    color: #000000;
    text-decoration: none;
}

.btn__amari:hover {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
}

.info-foo {
    color: #ffffff;
    text-align: center;
}

.titulo__amarillo {
    color: var(--amarillo);
    font-weight: 700;
}

.columna-info {
    padding-bottom: 3rem;
}

.copyrigth {
    color: #ffffff;
    background-color: #0C0C0C;
    padding: 1rem 0;
}

.footer__redes {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__redes a {
    color: #ffffff;
    font-size: 1.7rem;
    margin: 0 1rem;
}

.presentacion {
    padding-top: 5rem;
    background-image: url('../src/img/imprenta.jpg');
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: grayscale(50%);
}

.presentacion__catalogo {
    padding-top: 5rem;
    background-image: url('../src/img/pin.png');
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: grayscale(50%);
}

.presentacion__servicios {
    padding-top: 5rem;
    background-image: url('../src/img/carnet.png');
    background-position: center bottom;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: grayscale(50%);
}

.ver__catalogo {
    padding: 6rem 0;
}

.logo__contenedor img {
    display: block;
    margin: auto;
    width: 100%;
    object-fit: contain;
}

.blanco {
    color: #ffffff;
}

.separador {
    padding-top: 6rem;
}

.texto-alto {
    line-height: 2rem;
}

.contacto__seccion {
    padding-top: 7rem;
}

.imagen__animada {
    display: flex;
    align-items: center;
    justify-content: center;
}

.personalizado {
    border: 1px solid #000000;
    border-radius: 0;
    transition: all 0.3s;
}

.personalizado:focus {
    border: 2px solid var(--amarillo);
    box-shadow: none;
}

.servicios__final img {
    display: block;
    width: 100%;
    transition: all 0.5s;
}

.servicios__final img:hover {
    transform: scale(1.1);
}

@keyframes salir {
    0% {
        transform: translateY(10px);
    }


    100% {
        transform: translateY(0);
    }

}

@keyframes derecha {
    0% {
        transform: translateX(100px);
    }


    100% {
        transform: translateX(0);
    }

}

@keyframes cambiar {
    0% {
        background-position: 100px;
    }

    100% {
        background-position: center;
    }
}

@media only screen and (max-width: 900px) {
    .menu__icono {
        display: block;
        padding-right: 1.5rem;
    }

    #menu__btn {
        background-color: #000000;
        border: none;
        color: white;
        text-align: center;
        text-decoration: none;
        font-size: 2rem;
    }

    .menu__lista {
        display: none;
    }

    .menu__logo {
        padding-left: 1.5rem;
    }

    .menu__logo img {
        display: block;
        margin: auto;
        width: 75px;
        height: 75px;
        object-fit: contain;
    }

    .slider__texto {
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 2rem;
        width: 100%;
        height: 100%;
        background-color: rgba(50, 50, 50, 0.3);
    }

    .servicios__imagenes {
        justify-content: inherit;
    }

    .serv {
        margin: 0 6rem;
        text-align: center;
    }
}

@media only screen and (max-width:992px) {
    .oculto {
        display: none;
    }

    .mostrar {
        display: block;
    }

    footer {
        margin-top: 0;
    }

    .contacto {
        display: none;
    }

    .info-foo {
        padding-top: 5rem;
    }
}

@media only screen and (max-width:768px) {
    .mostrarno {
        display: block;
    }

    .blanco {
        text-align: center;
    }
}