@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
  margin: 0;
  padding: 0;
}
/* ENCABEZADO */
#logo {
  width: 100%;
  margin: 0%;
  display: inline-block;
  position: relative;
}
h1 {
  color: transparent;
  width: 0;
  height: 0;
}
/* BOTONES DE MENU */
nav {
  background-color: gray;
  margin-bottom: 15px;
  display: flex;
  justify-content: end;
}
ul {
   list-style: none;
 }
ul li {
  display: inline-block;
  padding: 7px;
  width: 120px;
  text-align: center;
  padding: 5px 20px;
  margin: 0px 20px;
  border-radius: 0.5em;
}
ul li a {
  padding: 7px;
  color: white;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  text-decoration: none;
  font-weight: 600;
}
ul li a:hover{
  color:green
}

/* INDEX */

#portada {
  width: 100%;
}
.sloganAzul {
  font-family: "Pacifico", cursive;
  font-size: 5vw;
  color: blue;
  margin-left: 100px;
  margin-top: 0px;
  transform: rotate(-7deg);
  text-shadow: 3px -4px white;
  }
  
.sloganVerde {
  font-family: "Pacifico", cursive;
  font-size: 3vw;
  color: green;
  margin-left: 50%;
  margin-bottom: 5px;
}
/* pie de pagina */
img#whatsapp {
  width: 5%;
  margin-left: 95%;
  position: fixed;
  top: 80%;
}
#copy {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-align: center;
  font-size: 20px;
  color: white;
  background-color: hsl(240, 100%, 50%);
  padding: 10px;
  width: 100%;
 margin: 10px 0 0 0 ;
}

/* PRODUCTOS */
.contenedor {
  height: 300vh;
  width: 100%;
  display: grid;
  justify-items: center;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.prod {
   border: 20px;
  width: 300px;
  height: 510px;
  border: 5px solid black;
  position: relative;
  border-radius: 0.7em;
}
.imgcon {
  width: 250px;
  margin-left: 25px;
  margin-top: 20px;
}
.name {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
#desc {
  position: absolute;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
}

/* CONTACTOS */

.maps {
  width: 100%;
}
.formPadre {
  display: flex;
  justify-content: space-around;
}
form {
  background-color: rgb(127, 228, 127);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  align-items: center;
  width: 40%;
}
.titForm {
  align-items: center;
  font-family: cursive, fantasy;
  font-size: 20px;
}
input {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 5px;
  padding: 3px;
}
label {
  display: flex;
  justify-content:space-between;
  width: 300px;
}
.coment{
  display: block;
  text-align: center;
}
textarea {
  width: 80%;
  height: 180px;
  border-radius: 5px;
}
.boton {
  width: 100px;
  padding: 7px;
  background-color: white;
  border: none;
}

.boton:hover {
  background-color: green;
}
.cont {
  border-radius: 8px;
  background-color: rgb(91, 197, 91);
  height: auto;
  width: 40%;
}
.redes {
  display: flex;
  justify-content: end;
  margin-top: 15px;
  margin-bottom: 80px;
}
.cont p{
  font-size: 20px;
  font-family: "Ubuntu";
 margin-top: 40px;
 text-align: center;
}
