@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(./fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw5aXo.woff2) 
    format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }



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

header {
    background-color: #BBBBBB;
    padding: 20px 0;
}

.caja {
    width: 940px;
    position: relative;
    margin: 0 auto;
}

nav {
    position: absolute;
    top: 110px;
    right: 0;
}

nav li {
    display: inline;
    margin: 0 0 0 15px;
}

nav a {
    text-transform: uppercase;
    color: #000000;
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
}

nav a:hover {
    color: #c78c19;
    text-decoration: underline;
}

.productos {
    width: 940px;
    margin: 0 auto;
    padding: 2em 3%;
}


.productos li {
    display: inline-block;
    text-align: center;
    width: 30%;
    vertical-align: top;
    margin: 0 1.5%;
    padding: 10% 2%;
    box-sizing: border-box;
    border: 4px solid #000000;
    border-radius: 10px;
}

.productos li:hover {
    border-color: #c78c19;
}

.productos li:active {
    border-color: #088c19;
}

.productos h2 {
    font-size: 28px;
    font-weight: bold;
}

.productos li:hover h2 {
    font-size: 30px;
}

.producto-descripcion {
    font-size: 18px;
}

.producto-precio {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

footer {
    text-align: center;
    background: url(imagenes/bg.jpg);
    padding: 40px;
}

.copyright {
    color: #FFFFFF;
    font-size: 13px;
    margin: 20px;
}

/*CSS para pagina Contacto*/

form {
    margin: 5vw;
}

form label,
form legend {
    display: block;
    font-size: 20px;
    margin: 0 0 10px;
}

.input-padron {
    display: block;
    margin: 0 0 20px;
    padding: 10px 25px;
    width: 50%;
}

.checkbox {
    margin: 20px 0;
}

.enviar {
    width: 20%;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: orange;
    border: none;
    border-radius: 5px;
    transition: .5s all ease-in-out;
    cursor: pointer;
}

.enviar:hover {
    background: darkorange;
    transform: scale(1.02);
}

table {
    margin: 5vw;
}

thead {
    background: #555555;
    color: white;
    font-weight: bold;
}

td,
th {
    border: 1px solid #000000;
    padding: 8px 15px;
}

/*CSS para pagina home*/

.imgLogo{
    aspect-ratio: 1/1;
    max-width: 266px;
    width: 100%;
}
.imgLogoFooter{
    max-width: 100px;
    aspect-ratio: 100/153;
    width: 100%;
}
.banner {
    width: 100%;
}
.principal {
    padding: 3em 0;
    background: #fefefe;
    width: 940px;
    margin: 0 auto;
}
.titulo-principal {
    text-align: center;
    font-size: 2em;
    margin: 0 0 1em;
    clear: left;
}

.principal p {
    margin: 0 0 1em;

}

.principal strong {
    font-weight: bold;
}

.principal em {
    font-style: italic;
}

.untencilios {
    width: 120px;
    float: left;
    margin: 0 20px 20px 0;
}
.mapa {
    padding: 3em 0;
    background: linear-gradient(#fefefe, #BBBBBB)
}
.mapa p {
    margin: 0 0 2em 0;
    text-align: center;
}

.mapa-contenido {
    width: 940px;
    margin: 0 auto;

}

.diferenciales {
    padding: 3em 0;
    background: #BBBBBB;

}

.contenido-diferenciales {
    width: 640px;
    margin: 0 auto;
}

.lista-diferenciales {
    width: 40%;
    display: inline-block;
    vertical-align: top;

}
.imagen-diferenciales{
    max-width: 354px;
    aspect-ratio: 3/2;
}

.items {
    line-height: 1.5;
}

.items:before {
    content: "★";
}

.items:first-child {
    font-weight: bold;
}

.imagen-diferenciales {
    width: 60%;
    transition: 400ms;
    aspect-ratio: 3/2;
    box-shadow: 10px 10px 30px 15px #000;

}

.imagen-diferenciales:hover {
    opacity: 0.3;
}

.video {
    width: 560px;
    margin: 1em auto;
}

.aCreditos {
    width: 2rem;
    height: auto;
    margin:  1.5rem;
    padding: 2px;
    border-radius: .2rem;
    background-color: var(--color-white);
    display: inline-block; 
}

.aCreditos img {
    width: 100%; 
    height: auto;
    display: block;
}

@media screen and (max-width:912px) {
    h1 {
        text-align: center;
    }

    nav {
        position: static;
        text-align: center;

    }

    nav ul li {
        margin: 0 7.5px;
    }

    .enviar {
        width: 60vw;
    }

    .caja,
    .principal,
    .mapa-contenido,
    .contenido-diferenciales,
    .video,
    .productos {
        width: auto;
    }

    .lista-diferenciales,
    .imagen-diferenciales {
        width: 100%;
        box-shadow: none;
    }

    .productos li {
        width: 100%;
        margin: 3em auto;
    }

}