@charset "UTF-8";
/*CÓDIGO EN GENERAL*/
/*DECLARANDO VARIABLES*/
header {
  background-color: #6f2829;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: header;
}

p {
  color: #6f2829;
}

h1 {
  color: #eedd9f;
}

/*USANDO BUCLE*/
h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

form {
  padding-top: 30px;
  padding-bottom: 30px;
  max-width: 400px;
  background-color: #E7E7E7;
  margin: 0 auto;
  border-style: dashed;
  border-color: burlywood;
}

body {
  font-family: 'Ubuntu', sans-serif;
  text-align: center !important;
}

.tiktoks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logoNav {
  height: 65px;
  width: 65px;
  -webkit-transition: all 3s;
  transition: all 3s;
}

.logoNav:hover {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

ul li a:hover {
  font-weight: bold;
}

.bannerIndex {
  -webkit-transition: all 2s;
  transition: all 2s;
}

.bannerIndex:hover {
  -webkit-transform: scale(0.95, 0.95);
          transform: scale(0.95, 0.95);
}

.bloqueNav {
  width: 100%;
  background: #eedd9f;
}

#btn-menu {
  display: none;
}

div label {
  display: none;
  height: 40px;
  width: 40px;
  padding: 10px;
}

div label:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
}

.menu ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.menu li a {
  display: block;
  padding: 10px 15px;
  color: #6f2829;
  text-decoration: none;
}

.menu li:hover {
  background: rgba(0, 0, 0, 0.3);
}

img {
  width: 100%;
}

.guiaLima {
  background-color: #eedd9f;
}

.fondoContacto {
  background-image: -webkit-gradient(linear, left top, right top, from(#6f2829), to(#eedd9f));
  background-image: linear-gradient(to right, #6f2829, #eedd9f);
}

.bloqueFormularioAC {
  background-color: #eedd9f;
  color: #6f2829;
}

.contenedorQS {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: quienesSomos;
  background-color: #eedd9f;
}

.contenedorQS__div {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "titulo foto" "parrafo foto";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 4fr 5fr;
      grid-template-columns: 4fr 5fr;
  -ms-grid-rows: 1fr 3fr;
      grid-template-rows: 1fr 3fr;
}

.contenedorQS__titulo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: titulo;
  color: #6f2829;
}

.contenedorQS__parrafo {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: parrafo;
  padding: 30px 30px;
}

.contenedorQS__foto {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: foto;
}

.contenedorQH {
  background-color: #6f2829;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: queHacemosId;
}

.contenedorQH__div {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "fauna tituQueHace" "fauna textoQueHace";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 5fr 4fr;
      grid-template-columns: 5fr 4fr;
  -ms-grid-rows: 1fr 3fr;
      grid-template-rows: 1fr 3fr;
}

.contenedorQH__titulo, .contenedorQH__parrafo {
  color: #eedd9f;
  padding: 30px 30px;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: tituQueHace;
}

.contenedorQH__parrafo {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: textoQueHace;
}

.contenedorQH__foto {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: fauna;
}

/*BLOQUE DE CÓDIGO PARA EL GRID INDEX*/
.containerIndex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
      grid-template-areas: "nav" "header" "quienesSomos" "queHacemosId" "marcasConfian";
}

#fotografia {
  background-color: #eedd9f;
}

#video {
  background-color: bisque;
}

#marcasConfian {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: marcasConfian;
  background-color: #eedd9f;
  color: #6f2829;
}

.imagenesTop5 {
  width: 60%;
}

h3 {
  color: #6f2829;
}

/*BLOQUE DE CÓDIGO PARA EL GRID ANTOJADDOS STUDIO*/
.container2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
      grid-template-areas: "nav nav" "header header" "fotografia fotografia" "video video";
}

.containerFoto {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "tituFoto fotoStudio" "textoFoto fotoStudio";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#tituFoto {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: tituFoto;
  color: #6f2829;
}

#textoFoto {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: textoFoto;
  padding: 20px 20px;
}

.fotoStudio {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: fotoStudio;
}

.containerVideo {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "videoStudio tituVideo" "videoStudio textoVideo";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#tituVideo {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: tituVideo;
  color: #6f2829;
}

#textoVideo {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: textoVideo;
  padding: 30px 30px;
}

.videoStudio {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: videoStudio;
}

.titulosRojo {
  color: #6f2829;
}

.tituloAmarillo {
  color: #eedd9f;
}

.margenParrafo {
  margin: 0 50px 0 50px;
}

/*BLOQUE DE RESPONSIVE INDEX*/
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .contenedorQS__div {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "titulo titulo" "parrafo parrafo" "foto foto";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 600px) {
  .contenedorQS__div {
    display: -ms-grid;
    display: grid;
    background-color: #eedd9f;
        grid-template-areas: "titulo titulo" "parrafo parrafo" "foto foto";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  .contenedorQH__div {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "tituQueHace tituQueHace" "textoQueHace textoQueHace" "fauna fauna";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu {
    position: absolute;
    background: #eedd9f;
    width: 100%;
    margin-left: -100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tiktoks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  div label {
    display: block;
  }
  #btn-menu:checked ~ .menu {
    margin: 0;
  }
}

/*BLOQUE DE RESPONSIVE ANTOJADDOS STUDIO*/
@media only screen and (max-width: 768px) {
  .containerFoto {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "tituFoto tituFoto" "textoFoto textoFoto" "fotoStudio fotoStudio";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  .containerVideo {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "tituVideo tituVideo" "textoVideo textoVideo" "videoStudio videoStudio";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/*# sourceMappingURL=styles.css.map */