body {
  font-family: "Roboto", monospace, sans-serif;
  background: linear-gradient(white, gray);
}

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

header h1 {
  margin: 25px;
  color: rgb(46, 29, 29);
  font-size: 35px;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*----------Contenedor principal-------*/
.caja {
  position: relative;
  margin: 0 auto;
  width: 940px;
}

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

nav li {
  display: inline;
  margin: 10px 0 0 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

#logo {
  width: 25%;
}

main {
  width: 940px; /*Ancho de pantalla por defecto pantallas estandar*/
  margin: 0 auto;
}

/*---------Servicios-----------*/
.productos {
  width: 940px;
  margin: 0 auto;
  padding: 50px;
}

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

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

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

.productos li:active {
  border-color: blue;
  font-size: 33px; /*no funcionaria porque hay un selector que ya le esta dando propiedades*/
}

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

.prodDescripcion {
  font-size: 18px;
}

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

/*-----------Fomulario Contacto---------*/
form {
  /* Formulario entero */
  margin: 40px 0;
}

form label,
form legend {
  /* Datos de texto del formulario */
  display: block;
  font-size: 20px;
  margin: 0 0 10px;
}

.input-padron {
  /*Cajas para rellenar y boton de enviar*/
  display: block;
  margin: 0 0 20px;
  padding: 10px 25px;
  width: 50%;
}

.checkbox {
  margin: 20px 0;
}

/*Info: En orden de posicionamiento y tipo le dara mas prioridad de la siguiente manera:

+
etiquetas inline(html)
id + etiqueta + ...
id + etiqueta
id
class + etiqueta + ...
class + etiqueta
class
etiqueta + sub etiqueta + ...
etiqueta + sub etiqueta
etiqueta sola
-
*/

/*-------------Ejemplo------------
p.test {
  color: black;
} 
-este tendra mas prioridad-

p{
  color: red;
}
-este tendra menos prioridad-

form p{
  color: blue;
}
*/

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

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

/*------------Tabla--------------*/
table {
  margin: 40px 40px;
}

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

th {
  padding: 8px 15px;
  border: 1px solid black;
}

td {
  padding: 8px 70px 15px 70px;
  text-align: center;
  border: 1px solid black;
}

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

.copyright {
  color: pink;
  font-size: 13px;
}

#logo-pink {
  width: 10%;
}

/*...........CSS para Home.............*/
.tit-principal {
  text-align: center;
  font-size: 2em;
  margin: 1em 0 1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  clear: left;
}

.banner {
  width: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  transition: 400ms;
}

.banner:hover{
  opacity: 0.8;
}

.principal div p {
  font-size: 15px;
  margin: 2em 0em 2em;
  padding-bottom: 0.6em;
  text-align: left;
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.principal strong {
  font-weight: bold;
}

.principal em {
  font-style: italic;
}

.principal div {
  display: inline-block;
  width: 49%;
  text-align: center;
}

.utensilios {
  width: 120px;
  float: inline-start;
  margin: 2em 1em 0 0;
  border: rgb(199, 86, 114) solid;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  transition: 400ms;
}

.utensilios:hover{
  opacity: 0.8;
}

#mision {
  font-size: 20px;
}

.dif {
  display: inline;
  width: 40%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dif-img {
  display: inline;
  width: 40%;
  border: rgb(199, 86, 114) solid;
  box-shadow: 5px 5px 20px rgb(61, 61, 61);
  transition: 400ms;
}

.dif-img:hover{
  opacity: 0.8;
}

.diferenciales {
  background: pink;
  padding: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.diferenciales h3 {
  font-size: 2em;
  margin: 1em 0 1em;
}

.diferenciales ul{
  margin: 0 0 0 1em;
}

.items {
  font-size: 20px;
  padding: 10px 0 10px 0;
  font-style: italic;
}

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

.mapa {
  text-align: center;
  padding: 3em;
}

.mapa p {
  font-weight: bold;
  font-size: 15px;
  margin: 2em 0em 1em; /*em: tamaño de fuente*/
  padding: 1.5em 0.6em;
  letter-spacing: 4px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

@media screen and (max-width:480px){
  body{
    background-color: red;
  }
}