*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}
:root{
    --Color1: rgba(228, 23, 23);
    --Color2: rgba(33, 44, 58);
    --Color3: rgba(71, 85, 105);
    --Color4: rgba(203, 213, 225);
    --Color5: rgba(221, 228, 236);
    --Color6: rgba(255, 255, 255);
    --Color7: rgba(10, 57, 73);
}
html{
    scroll-behavior: smooth;
}
#inicio{
    background: linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.9)), url(images/Portada-1-bc870d20.webp);
    background-size: cover;
    background-position: 73% center;
    height: 100vh;
    background-attachment: fixed;
}
#inicio .contenido header{
    background-color: rgba(0,0,0,.8);
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0%;
}
#inicio .contenido header .contenido-header{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}
#inicio .contenido header .contenido-header h1{
    text-align: center;
    color: var(--Color6);
}
#inicio .contenido header .contenido-header h1 span{
    color: rgb(3, 0, 190);
}
#inicio .contenido header .contenido-header nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    margin: 5px;
}
#inicio .contenido header .contenido-header nav ul li a{
    text-decoration: none;
    color: var(--Color6);
    margin: 0px 12px;
    font-weight: 400;
    transition: .5s;
}
#inicio .contenido header .contenido-header nav ul a:hover{
    color: var(--Color1);
}
#inicio .contenido .presentacion{
    max-width: 1100px;
    color: var(--Color6);
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#inicio .contenido .presentacion .bienvenida{
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}
#inicio .contenido .presentacion h2{
    font-size: 55px;
    margin-bottom: 25px;
    text-align: center;
}
#inicio .contenido .presentacion h2 span{
    color: var(--Color1);
}
#inicio .contenido .presentacion .descripcion{
    max-width: 700px;
    margin: 25px auto;
    font-size: 18px;
    text-align: center;
    color: var(--Color6);
}
#inicio .contenido .presentacion a{
    text-decoration: none;
    display: inline-block;
    margin: 25px;
    padding: 20px 25px;
    border: 2px solid var(--Color6);
    border-radius: 50px;
    color: var(--Color6);
    font-weight: bold;
    text-transform: uppercase;
    transition: .5s;
}
#inicio .contenido .presentacion a:hover{
    background-color: var(--Color1);
}
#icono-nav{
    color: var(--Color6);
    display: none;
}

/* SECCION DE NOSOTROS */
#nosotros{
    max-width: 800px;
    margin: auto;
    padding: 100px 15px;
    color: rgba(0,0,0);
}
#nosotros .contenedor-nosotros{
    display: flex;
    justify-content: center;
    align-items: center;
}
#nosotros .contenedor-foto{
    max-width: 400px;
    min-width: 250px;
    margin-right: 80px;
}
#nosotros .contenedor-foto img{
    padding: 0px;
    width: 100%;
    border-radius: 20px;
}
#nosotros .nosotros{
    margin: 0px 40px;
}
#nosotros .titulo-nosotros{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
#nosotros .titulo-nosotros h2{
    font-size: 34px;
    font-weight: bold;
    color: var(--Color7);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: var(--Color1);
    text-decoration-thickness: 5px;
}
#nosotros .nosotros h2{
    font-size: 34px;
    font-weight: bold;
    margin: 20px 0px;
    letter-spacing: 2px;
}
#nosotros .nosotros h2 span{
    color: var(--Color7);
}
#nosotros .nosotros p{
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 12px;
    color: var(--Color3);
    text-align: justify;
}
#servicios{
    width: 100%;
    padding: 100px 25px;
    background-color: var(--Color7);
    margin: auto;
    display: flex;
    flex-direction: column;
}
#servicios .titulo-serv{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
#servicios .titulo-serv h2{
    font-size: 34px;
    font-weight: bold;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: var(--Color1);
    text-decoration-thickness: 5px;
}
#servicios .cards{
    display: grid;
    gap: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
}
#servicios .cards .card{
    background-color: var(--Color6);
    max-width: 300px;
    padding: 30px;
    border-radius: 12px;
    transition: height .3s ease-in-out;
    margin: 30px 15px;
    box-shadow: -5px 5px 10px rgba(0,0,0);
}
#servicios .cards .card .content-imagen{
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all .3s ease-in-out;
}
.card:nth-child(1) .content-imagen{
    background-image: url(./images/Corte.webp);
    background-position: center center;
    background-size: cover;
}.card:nth-child(2) .content-imagen{
    background-image: url(./images/Grabado.webp);
    background-position: center center;
    background-size: cover;
}
.card:nth-child(3) .content-imagen{
    background-image: url(./images/Sublimacion.webp);
    background-position: center center;
    background-size: cover;
}
#servicios .cards .card .content-imagen img{
    width: 100%;
    image-rendering: auto;
}
#servicios .cards .card .content-card h2{
 margin-bottom: 15px;
}
.content-card p{
    opacity: 0;
    transition: all .3s ease-in-out;
    transition-delay: .1s;
    text-align: justify;
}
.card:hover .content-imagen{
    transform: scale(.9);
    margin-top: -120px;
    min-width: 250px;
}
.content-card{
    height: 25px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.card:hover .content-card{
    height: 200px;
    overflow: visible;
}
.card:hover p{
    opacity: 1;
}
#articulos{
    width: 100%;
    padding: 100px 25px;
    margin: auto;
    display: flex;
    flex-direction: column;
}
#articulos .titulo-prod{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
#articulos .titulo-prod h2{
    font-size: 34px;
    font-weight: bold;
    color: var(--Color7);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: var(--Color1);
    text-decoration-thickness: 5px;
}
#articulos .container-products{
    max-width: 1100px;
    margin: auto;
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#articulos .container-products .product{
    max-width: 300px;
    min-height: 350px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 1px 1px 5px black;
    border-radius: 12px;
    transition: all .3s ease-in-out;
    padding: 0px 20px;
    background-color: rgba(223, 223, 223, 0.13);
    color: var(--Color2);
}
#articulos .container-products .product h2{
    padding: 15px 15px;
    font-size: 24px;
    font-weight: bold;
}
#articulos .container-products .product .cont-img{
    max-width: 200px;
    height: 180px;
    align-items: center;
    margin-bottom: 10px;
}
#articulos .container-products .product .cont-img img{
    width: 100%;
    height: 100%;
}
#articulos .container-products .product:hover{
    scale: 1.1;
    box-shadow: -3px 3px 5px var(--Color7);
    background-color: var(--Color6);
    color: var(--Color2)
}
.product:hover h2{
    color: var(--Color7);
}
#articulos .container-products .product p{
    text-align: justify;
    font-size: 18px;
    margin-bottom: 20px;
}
#contacto{
    width: 100%;
    margin: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--Color3);
    color: var(--Color6);
}
#contacto .redes{
    max-width: 1100px;
    margin: 30px 25px;
}
#contacto .redes a{
    margin: 0px 30px;
    font-size: 24px;
    text-decoration: none;
    font-style: none;
    color: var(--Color6);
}
#contacto .redes a:hover .fa-whatsapp{
    color: rgb(0, 255, 0);
    scale: 1.4;
    transition: all .3s;
}
#contacto .redes a:hover .fa-tiktok{
    color: rgb(0, 132, 255);
    scale: 1.4;
    transition: all .3s;
}
#contacto .redes a:hover .fa-location-dot{
    color: rgb(255, 0, 0);
    scale: 1.4;
    transition: all .3s;
}
#contacto .derechos{
    padding-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 10px;
}










/* PRUEBAS DE RESPONSIVE */
@media screen and (max-width: 980px){
    #servicios .cards{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0px;
    }
    #servicios .cards .card{
        margin: 55px 15px;
    }
}
@media screen and (max-width: 720px){
    #nosotros .contenedor-foto{
        margin-right: 0px;
    }
}
@media screen and (max-width: 640px){
    #nosotros .contenedor-nosotros{
        display: flex;
        flex-direction: column-reverse;
    }
    #nosotros .contenedor-foto{
        margin-right: 0%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px 20px;
    }
    #nosotros .nosotros p{
        margin-bottom: 35px;
    }
    #nav{
        position: fixed;
        background-color: var(--Color2);
        width: 250px;
        height: 100vh;
        top: 0;
        right: -250px;
        padding: 40px;
        z-index: 1;
        transition: all .5s;
    }
    #nav ul{
        flex-direction: column;
    }
    #nav .links li{
        margin-top: 45px;
    }
    #inicio .contenido header .contenido-header nav ul li a{
        color: var(--Color6);
    }
    .back_menu{
        position: fixed;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,.8);
        display: none;
    }
    #icono-nav{
        display: block;
        cursor: pointer;
        padding-top: 5px;
        transition: .5s;
    }
    #icono-nav:hover{
        color: var(--Color1);
    }
    #inicio .contenido .presentacion .bienvenida{
        padding-top: 70px;
    }
    #articulos .container-products .product{
        margin: 20px 0px;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (max-width: 415px){
    #inicio .contenido .presentacion h2{
        margin: 0px 25px;
    }
    #inicio .contenido .presentacion .descripcion{
        margin: 0px 20px;
    }
}