:root {
    --negro: #000000;
    --blanco: #ffffff;
    --gris: #e0e0e0;
    --grisOscuro: #818286;
    --azul: #0345bf;
    --azulFacebook: #3b5998;
    --azulMessenger: #019ffd;
    --rosaInstagram: #e8486c;
    --verdeWhatsapp: #25d366;
    --rojoIntenso: #FF0000;
    --overlayColor: rgba(0, 0, 0, 0.5);
    --funetePrincipal: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 1.6rem;
    font-family: var(--funetePrincipal);
    background-color: var(--blanco);
}


/* Globales */

.boton1 {
    background-color: var(--gris);
    color: var(--negro);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    transition: .5s;
    text-transform: uppercase;
}

.boton1:hover {
    color: var(--blanco);
    background-color: var(--verdeWhatsapp);
    transition: .5s;
}

.icono__flotante {
    position: fixed;
    z-index: 97;
    right: 2rem;
    bottom: 1rem;
    width: 6rem;
    -webkit-filter: drop-shadow(5px 5px 5px var(--negro));
    filter: drop-shadow(5px 5px 5px var(--negro));
}

.contenedor {
    max-width: 100%;
}

img {
    max-width: 100%;
}

.padding-top-10 {
    padding-top: 10rem;
}

.margin-0 {
    margin: 0;
}

.centrar-texto {
    text-align: center;
}

.justificar-texto {
    text-align: justify;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 4.5rem;
}

h3 {
    font-size: 4rem;
}

h4 {
    font-size: 3.5rem;
}

h1,
h2,
h3,
h4 {
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .icono__flotante {
        width: 8rem;
    }
    .contenedor {
        max-width: 120rem;
        margin: 0 auto;
    }
}


/* Font Awesome Hover */

.fa-facebook-square:hover {
    color: var(--azulFacebook);
}

.fa-instagram:hover {
    color: var(--rosaInstagram);
}

.fa-facebook-messenger:hover {
    color: var(--azulMessenger);
}

.fa-whatsapp:hover {
    color: var(--verdeWhatsapp);
}


/* Header */

.site__header {
    background-color: var(--gris);
    padding: 0;
    margin: 0;
    height: 8rem;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}

.nav__media {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav__media--img {
    padding-top: 1rem;
}

.site__header .header__nav {
    display: none;
}

.site__header .header__nav .nav__ul {
    background-color: var(--gris);
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.header__nav--logo {
    display: none;
}

.site__header .header__nav ul li {
    text-transform: uppercase;
    font-size: 2rem;
}

.site__header .header__nav .nav__ul li {
    margin-bottom: 1rem;
}

.site__header .header__nav .nav__ul li a {
    text-decoration: none;
    color: var(--negro);
}

.site__header .header__nav .nav__ul li a:hover,
.site__header .header__nav .nav__ul li a.active {
    color: var(--azul);
    text-shadow: 0 0 1rem var(--blanco), 0 0 2rem var(--blanco);
}

.site__header .header__nav .nav__ul li a.active {
    font-weight: 500;
}

.header__nav--productos a .fa-sort-down {
    display: none;
}

.header__nav--productos span {
    float: right;
    padding-left: .5rem;
}

.header__nav--productos span .fa-minus-circle {
    display: none;
}

.header__nav .nav__productos--menu {
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 20%);
    padding: 20px;
    background-color: var(--blanco);
    position: absolute;
    width: 24rem;
    border-radius: 1rem;
    margin-top: 0rem;
    display: none;
}

.header__nav .nav__productos--menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header__nav .nav__productos--menu ul li {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.header__nav .nav__productos--menu ul li:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 1100px) {
    .site__header .header__nav .nav__ul {
        padding: 0;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-end;
    }
    .site__header .header__nav {
        display: block;
    }
    .header__nav--logo {
        display: block;
    }
    .header__nav--media {
        display: none !important;
    }
    .nav__media {
        display: none;
    }
    .header__nav--productos span .fa-minus-circle,
    .header__nav--productos span .fa-plus-circle {
        display: none;
    }
    .header__nav--productos a .fa-sort-down {
        display: inline-block;
    }
}


/* Overlay */

.overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    z-index: 98;
    background-color: var(--overlayColor);
    display: none;
}


/* Menu icon */

.menu-burger {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--negro);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}


/* Carrousel Inicio */

.inicio__carousel {
    padding-top: 8rem;
    max-width: 100%;
    margin-bottom: 3rem;
}

.owl-theme .owl-nav [class*=owl-] {
    font-size: 8rem;
}

.owl-dots {
    display: none;
}


/* Productos */

.main__inicio {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main__inicio .main__inicio--grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 4rem;
}

@media (min-width: 768px) {
    .main__inicio {
        min-height: 36vh;
    }
    .main__inicio .main__inicio--grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 4rem;
        row-gap: 4rem;
        gap: 4rem;
    }
    .inicio__grid--impresion--a {
        grid-column: 1 / 3;
        margin: 0 auto;
    }
}

@media (min-width: 1100px) {
    .main__inicio .main__inicio--grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .inicio__grid--impresion--a {
        grid-column: 2 / 3;
    }
}


/* Footer */

.footer {
    background-color: var(--negro);
    color: var(--grisOscuro);
    margin-top: 6rem;
    padding: 2rem;
}

.footer .footer__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer__media a {
    color: var(--grisOscuro);
    font-size: 4rem;
    margin-right: 2rem;
}

.footer .footer__media a:last-of-type {
    margin-right: 0;
}

.footer__nav nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: none;
    padding: 0;
}

.footer__nav nav ul li a,
.serviciosdigitaleslink {
    text-decoration: none;
    color: var(--grisOscuro);
}

.footer__nav nav ul li a:hover,
.serviciosdigitaleslink:hover {
    color: var(--blanco);
}

.footer .copy {
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .footer__nav nav ul {
        flex-direction: row;
    }
    .footer__nav nav ul li {
        margin-right: 6rem;
    }
    .footer__nav nav ul li:last-of-type {
        margin-right: 0;
    }
}


/* Productos */

.productos__page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1100px) {
    .productos__page {
        min-height: 80vh;
    }
}


/* Producto Individual  */

.main__productos .productos__yaside {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2rem;
    column-gap: 2rem;
}

.main__productos .productos__yaside .producto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    row-gap: 2rem;
}

.main__productos .productos__yaside .producto a {
    position: relative;
    overflow: hidden;
    transition: .3s linear;
}

.main__productos .productos__yaside .producto a:hover {
    box-shadow: 0rem 0rem 3rem var(--negro);
    transform: scale(1.1);
}

.main__productos .productos__yaside .producto a:hover img {
    transition: .3s linear;
}

.main__productos .productos__yaside .producto a svg {
    font-size: 3rem;
    color: white;
    -webkit-filter: drop-shadow(5px 5px 5px var(--negro));
    filter: drop-shadow(5px 5px 5px var(--negro));
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0;
    transition: .2s linear;
    transition: opacity .3s linear;
}

.main__productos .productos__yaside .producto a:hover svg {
    opacity: 1;
}

.producto__principal--catalogo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--grisOscuro);
}

.producto__principal--catalogo img {
    margin-right: 1rem;
}

@media (min-width: 1020px) {
    .main__productos .productos__yaside .producto a {
        height: 11.6rem;
    }
    .main__productos .productos__yaside {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 1100px) {
    .main__productos .productos__yaside .producto a {
        height: 13.8rem;
    }
}


/* Seccion Contacto  */

.formulario-contacto {
    max-width: 100%;
    margin: 3rem 0;
    padding: 3rem;
    border-radius: 1rem;
    background-color: var(--grisOscuro);
}

.formulario-contacto .campo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-direction: column;
}

.formulario-contacto .campo:last-of-type {
    margin-bottom: 0;
}

.formulario-contacto .campo label {
    flex: 0 0 3rem;
    color: white;
    display: block;
    margin-top: .5rem;
}

.input-control {
    flex: 1;
    border: 1px solid #e1e1e1;
    padding: 1rem;
    outline: 0;
    resize: none;
}

.inputError {
    border: 2px solid #FF0000;
}

.formulario-contacto .enviar {
    display: flex;
    justify-content: flex-end;
}

.formulario-contacto .enviar .submit {
    border: none;
    text-transform: uppercase;
    font-size: 2rem;
    outline: 0;
}

.formulario-contacto .enviar .submit:hover {
    cursor: pointer;
    box-shadow: 0.1rem 0.1rem 1.4rem rgba(255, 255, 255, 0.5);
}

.contacto__mapa {
    width: 100%;
    height: 40rem;
}

.aside__contactobg--pc {
    display: none;
}

@media (min-width: 650px) {
    .formulario-contacto .campo {
        flex-direction: row;
    }
    .formulario-contacto .campo label {
        flex: 0 0 8rem;
    }
}

@media (min-width: 1020px) {
    .formulario-contacto {
        max-width: 100%;
    }
    .aside__contactobg--mobile {
        display: none;
    }
    .aside__contactobg--pc {
        display: block;
    }
}


/* Clientes */

.clientes__page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.clientes__page .clientes__grid {
    display: grid;
    grid-template-columns: 1fr;
}

.clientes__page .owl-carousel img {
    transition: .8s linear;
}

.clientes__page .owl-carousel img:hover {
    transform: scale(1.2);
    transition: .3s linear;
}

.clientes__page .owl-nav {
    display: none;
}

@media (min-width: 768px) {
    .clientes__page .clientes__grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}

@media (min-width: 1020px) {
    .clientes__page .clientes__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Nosotros */

.column-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactenos__enlace {
    text-decoration: none;
    color: black;
}

@media (min-width: 1020px) {
    .column-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
        align-items: flex-start;
    }
}