body {
    font-family: 'Source Code Pro', monospace;
    margin: 0;
}

header {
    background: url(img/bg.jpg);
    color: #fff;
    padding: 1em 0;
    text-align: left;
}

.caja {
    width: 80%;
    position: relative;
    margin: 0 auto;
}

.logo {
    width: 10%;
}

nav {
    position: absolute;
    top: 1em;
    right: 0;
}

nav li {
    display: inline;
    margin: 0 1em;
}

nav a {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.5s color;
}

nav a:hover {
    color: deepskyblue;
}

nav a:active {
    color: deeppink;
}

 /*CSS pagina Home*/
.banner {
    width: 100%;
}

.principal {
    margin: 0 auto;
    padding: 1em 2em;
    background: linear-gradient(deeppink, deepskyblue);
}

.titulo-principal {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    text-shadow: #0C0C0C 2px 2px 12px;
    margin: 1em 0;
    clear: left;
}

.titulo-principal::before {
    content: "{";
}

.titulo-principal::after {
    content: "}";
}

.principal p {
    margin: 1em 0;
    color: #fff;
}

.principal strong {
    font-weight: 700;
}

.androide {
    width: 200px;
    float: left;
    margin: 0 1em;
    filter: drop-shadow(0 0 20px #0C0C0C);
}

.mapa {
    padding: 1em 0;
    text-align: center;
    background: linear-gradient(deepskyblue, deeppink);
}

.mapa p {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.diferenciadores {
    padding: 1em 0;
    background: linear-gradient(deeppink, deepskyblue);
}

.contenido-diferenciadores{
    color: #fff;
    width: 70%;
    margin: 0 auto;
}

.lista-diferenciadores {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.items {
    line-height: 1em;
    list-style: none;
}

.items::before {
    content: "\2726";
    padding: 7px;
}

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

.imagen-diferenciadores {
    width: 60%;
    box-shadow: #0C0C0C 2px 2px 12px;
    transition: 0.5s;
}

.imagen-diferenciadores:hover {
    opacity: 0.5;
}

.video {
    margin: 0 auto;
    background: linear-gradient(deepskyblue, deeppink);
    text-align: center;
}

/*CSS pagina Productos*/
.productos {
    margin: 0 auto;
    padding: 2em 0;
    text-align: center;
    background: linear-gradient(deepskyblue, deeppink);
}

.productos li {
    display: inline-block;
    width: 30%;
    text-align: center;
    text-shadow: #fff 2px 2px 12px;
    vertical-align: top;
    margin: 1em 1em;
    padding: 1em 1em;
    box-sizing: border-box;
    border: 3px solid #0C0C0C;
    border-radius: 24px;
}

.productos li:hover {
    border-color: deepskyblue;
}

.productos li:active {
    border-color: deeppink;
}

.productos h2 {
    font-size: 2rem;
    font-weight: 700;
}

.productos li:hover h2 {
    font-size: 2.4rem;
}

.productos img {
    width: 200px;
    margin: 0 auto;
}

.producto-descripcion {
    font-size: 1.5rem;
    font-weight: 700;
}

.producto-precio {
    font-size: 1.5rem;
    font-weight: 700;
}

/*CSS footer*/
footer {
    background: url(img/bg.jpg);
    color: #fff;
    margin: 0 auto;
    padding: 3em 0;
    text-align: center;
}

footer img {
    width: 10%;
}

.copyright {
    font-size: 1rem;
    font-weight: 700;
}

/*CSS pagina Contacto*/
form {
    padding: 2em 2em;
    color: #fff;
    background: linear-gradient(deepskyblue, deeppink);
}

form label, form legend {
    display: block;
    font-size: 1.4rem;
}

form fieldset {
    width: 50%;
    border: none;
}

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

.checkbox {
    margin: 1em 0;
}

.enviar {
    width: 40%;
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: deepskyblue;
    border: none;
    border-radius: 24px;
    transition: 0.5s all;
    cursor: pointer;
}

.enviar:hover {
    background: dodgerblue;
    transform: scale(1.1);
}

.contacto {
    background: linear-gradient(deeppink, deepskyblue);
}

table {
    width: 30%;
    margin: 0 auto;
    padding: 2em;
}

thead {
    background: deepskyblue;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

td {
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

/*CSS Media Querys*/
@media screen and (max-width:480px){
    h1 {
        text-align: center;
    }

    nav {
        position:static;
    }

    .caja, .principal, .mapa, .contenido-diferenciadores, .lista-diferenciadores{
        width: auto;
    }

    .imagen-diferenciadores {
        width: 100%;
    }

    .video {
        width: auto;
    }

    .productos, .productos li {
        width: auto;
    }

    .input-padron {
        width: 100%;
        padding: 1em 0;
    }

    .enviar {
        width: 100%;
    }

    form fieldset, .contacto, table {
        width: auto;
    }
}