* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #e9c6c2;
}

.contenedorGeneral {
  width: 99%;
  font-family: "Lora", serif, "Montserrat", sans-serif;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  grid-row: repeat(5, auto);
  grid-template-areas: "header header header" "inicio aside aside" "inicio galeria galeria" "formulario formulario formulario" "footer footer footer";
}

.contendor {
  padding: 1.5px;
}

.header {
  grid-area: header;
  background-color: #e9c6c2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 0 0 10px 10px;
}

.perfil {
  width: 100px;
  border-radius: 50%;
}

.navbar ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  padding: 0;
  overflow: auto;
}
.navbar ul li {
  margin: 1rem;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.navbar ul li:hover {
  border-color: #050507;
  background-color: #050507;
}

.menuItem a {
  text-decoration: none;
  color: #f21b7f;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 745px) {
  .header {
    flex-wrap: wrap;
    height: 100%;
    overflow: hidden;
  }
  .navbar ul {
    flex-wrap: nowrap;
  }
  .navbar ul li {
    margin: 0.5rem;
  }
}
.inicio {
  grid-area: inicio;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.imgInicio {
  width: 100%;
}

.aside {
  grid-area: aside;
  background-color: #050507;
  color: #e9c6c2;
  margin: 5px;
  padding: 15px;
  overflow: auto;
}

.texto {
  margin: 10px auto;
  padding: 40px;
  height: 25px;
  align-items: center;
  font-size: 18px;
}

.galeria {
  grid-area: galeria;
  background-color: #f21b7f;
  display: flex;
  flex-direction: row;
}

.imgGaleria {
  width: 33.33%;
  margin: 5px;
  padding: 5px;
  overflow: hidden;
}

.formulario {
  grid-area: formulario;
  background-color: #050507;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 2fr, 1fr;
  grid-template-areas: "mapa form";
  padding: 20px;
}

.mapa {
  grid-area: mapa;
}

.contForm {
  grid-area: form;
  padding: 30px;
  background-color: #f21b7f;
  margin: 5px;
  border: 5px solid #e9c6c2;
}

.bloqueFormulario {
  width: 100%;
}

.formControl {
  background-color: #f1f5ef;
  border: 2px solid #aea9b0;
  width: 100%;
  padding: 5px;
}

.formularioControl12 {
  background-color: #f1f5ef;
  border: 2px solid #aea9b0;
  resize: none;
  padding: 5px;
  font-family: "Montserrat";
}

.footer {
  grid-area: footer;
  background-color: #e9c6c2;
}

footer {
  box-sizing: border-box;
  padding: 20px;
  border-top: 1px solid #ccc;
  background-color: #f7f7f7;
  text-align: center;
}
footer h5 {
  margin: 0;
  padding: 10px 0;
  font-size: 12px;
  color: #999;
}

.redessociales {
  margin-bottom: 20px;
}
.redessociales h3 {
  margin-top: 0;
}
.redessociales ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.redessociales li {
  display: inline-block;
  margin-right: 10px;
}
.redessociales a img {
  height: 30px;
  width: 30px;
}
.redessociales i {
  font-size: 30px;
  color: #f21b7f;
}

@media only screen and (max-width: 768px) {
  .contenedorGeneral {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "inicio" "aside" "galeria" "formulario" "footer";
  }
}
@media only screen and (max-width: 480px) {
  .navbar ul li {
    margin: 0.5rem;
  }
  .menuItem a {
    font-size: 16px;
  }
  .aside .texto {
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
  .imgGaleria {
    width: 100%;
  }
  .formulario {
    grid-template-columns: 1fr;
    grid-template-areas: "mapa" "form";
  }
  .contForm {
    padding: 20px;
  }
  .formControl,
  .formularioControl12 {
    font-size: 14px;
  }
  .redessociales a img {
    height: 20px;
    width: 20px;
  }
  .redessociales i {
    font-size: 20px;
  }
  footer h5 {
    font-size: 10px;
  }
}
.idea {
  background-color: #f21b7f;
}

.referencia {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #050507;
  margin: 15px auto;
  padding: 15px 10px;
  height: 250px;
  border: 2px solid #f21b7f;
  color: #f21b7f;
  overflow: hidden;
}
.referencia .aciva {
  margin-top: 20px;
  color: #f21b7f;
  height: 100px;
}

.pintura {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  width: 95%;
  margin: auto;
  grid-gap: 10px;
  padding: 40px 0;
  overflow: hidden;
}
.pintura > a {
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.pintura img {
  width: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.pintura a:hover img {
  filter: blur(2px);
  transform: rotate(20deg) scale(1.3);
}

.consultor {
  background-color: #050507;
}

.mentores {
  background-color: #f21b7f;
  padding: 20px;
  border: 1px solid #000;
  margin: 20px;
  color: #e9c6c2;
}

.guia {
  margin-bottom: 10px;
}

.maestro {
  background-color: #050507;
  padding: 10px;
  border: 1px solid #ccc;
  margin-top: 10px;
  color: #e9c6c2;
}

.deposito {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.tarjeta {
  width: 325px;
  margin: 20px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #eee;
  overflow: hidden;
}
.tarjeta img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.influencia {
  padding: 20px;
}
.influencia h3 {
  color: #f21b7f;
  font-size: 24px;
  margin-bottom: 10px;
}
.influencia p {
  color: #050507;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.boton {
  display: inline-block;
  padding: 10px 20px;
  background-color: #050507;
  color: #f21b7f;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.4s ease;
}
.boton:hover {
  background-color: #aea9b0;
}

.nosotros {
  font-family: "Lora", serif;
  background-color: #f21b7f;
}

.recipiente {
  margin: 30px;
}

.fila {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.figura {
  background-color: #050507;
  position: relative;
  flex: 1;
  max-width: 460px;
  height: 300px;
  margin: 20px;
  overflow: hidden;
}
.figura img {
  opacity: 0.8;
  position: relative;
  vertical-align: top;
  transition: 0.6s;
  transition-property: opacity;
}
.figura:hover img {
  opacity: 1;
}
.figura:hover .details h2 {
  transform: translateY(-30px);
}
.figura:hover .details p {
  opacity: 1;
  transform: translateY(-40px);
}
.figura:hover .mas {
  bottom: 0;
}
.figura .details {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  color: #050507;
  width: 100%;
  height: 100%;
}
.figura .details h2 {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 70px;
  transition: 0.4s;
  transition-property: transform;
}
.figura .details h2 span {
  font-weight: 900;
}
.figura .details p {
  margin: 30px 30px 0 30px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: 0.6s;
  transition-property: opacity, transform;
}

.mas {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  bottom: -60px;
  transition: 0.6s;
  transition-property: bottom;
}
.mas .leer-mas {
  color: #050507;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.mas .leer-mas span {
  font-weight: 900;
}
.mas .iconos i {
  color: #050507;
  font-size: 20px;
}
.mas .iconos a:not(:last-child) i {
  margin-right: 20px;
}

@media (max-width: 1080px) {
  .figura {
    flex: 100%;
    max-width: 480px;
  }
}
@media (max-width: 400px) {
  .figura .details p {
    font-size: 16px;
  }
  .mas .lee-mas,
  mas .iconos a i {
    font-size: 18px;
  }
}
.crea {
  width: 100%;
  height: 100vh;
  font-family: sans-serif;
  color: #aea9b0;
}

.left-form {
  width: 50%;
  height: 100%;
  overflow: hidden;
  float: left;
  background: #eee url(../img/rosa.jpg) no-repeat center;
  background-size: cover;
}

.rigth-form {
  width: 50%;
  height: 100%;
  margin: 0;
  float: left;
  background-color: #050507;
  display: flex;
  justify-content: center;
}
.rigth-form form {
  height: 100%;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.rigth-form form > input {
  width: 100%;
  padding: 10px 0;
  font-style: 1.2em;
}
.rigth-form form input[type=submit] {
  width: 100%;
  background-color: #f21b7f;
  color: #050507;
  border: none;
  font-size: 18px;
  padding: 8px 30px;
}
.rigth-form h2 {
  font-size: 2rem;
  color: #aea9b0;
  margin: 20px 0;
  font-weight: bold;
}
.rigth-form label {
  width: 100%;
  font-weight: 700;
  margin: 20px 0;
}

.check {
  width: 100%;
  margin: 20px 0;
}/*# sourceMappingURL=estilo.css.map */