/*GENERALES*/

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

body{
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
}

.contenedor{
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.titulo-seccion{
  text-align: center;
  margin-bottom: 40px;
}

.titulo-seccion h2{
  color: #BE894A;
  font-size: 3.125rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.titulo-seccion p{
  color: #979797;
  font-size: 1rem;
  font-weight: 400;
}

/*Boton Volver Arriba*/
.btn-volver-arriba{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border-radius: 30%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  margin-right: -60px;
  transition: all .4s ease;
}

.btn-volver-arriba a{
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 30%;
  text-align: center;
}

.btn-volver-arriba a i{
  font-size: 1rem;
  color: #fff;
  line-height: 40px;
}

/* ------ ENCABEZADO ------ */

.menu-bar-pc{
  width: 100%;
  min-height: 68px;
  border-bottom: 1px solid rgba(255,255,255, 0.15);
  padding: 0 36px;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.logo{
  display: inline-block;
  width: 150px;
}

.logo img{
  width: 100%;
  vertical-align: top;
}

.menu-principal a, .top-redes a{
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.876rem;
  letter-spacing: 0;
  line-height: 1.5em;
  transition: all .3s ease;
}

.menu-principal a:last-child, .top-redes a:last-child{
  padding-right: 0;
}

.top-redes a i{
  font-size: 1rem;
}

.menu-principal a:hover, .top-redes a:hover{
  color: #BE894A;
}

.fixed-header{
  width: 100%;
  min-height: 68px;
  border-bottom: 1px solid rgba(204,204,204,0.5);
  padding: 0 36px;
  background:rgba(0, 0, 0, 0.7);
  color: #f7f7f7;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all .4s ease;
  margin-top: -68px;
}



.fixed-header .menu-principal  a, .fixed-header .top-redes a{
  color: #fff;
}

.fixed-header .menu-principal  a:hover, .top-redes a:hover{
  color: #BE894A;
}

.fixed-header .menu-principal ul a, .fixed-header .top-redes a{
  color: #ffffff;
}

.fixed-header .menu-principal ul a:hover, .top-redes a:hover{
  color: #BE894A;
}





   /* menu desplegable */

   .fixed-header .menu-principal ul ul {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    padding:0;
   }
   
   /* menu */

   .menu-principal ul {
  list-style:none;
  margin:0;
  padding:0;
 }
 
 /* items del menu */
 
 
 
 /* enlaces del menu */
 
 .menu-principal ul a {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.876rem;
  letter-spacing: 0;
  line-height: 1.5em;
  transition: all .3s ease;
 }
 
 /* items del menu */
 
 .menu-principal ul li {
  position:relative;
  float:left;
  margin:0;
  padding:0;
 }
 
 /* efecto al pasar el ratón por los items del menu */
 
 .menu-principal ul li:hover {
  color: #BE894A;
 }


 /* menu desplegable */

 .menu-principal ul ul {
  display:none;
  position:absolute;
  top:100%;
  left:0;
  color: #BE894A;
  background:rgb(0, 0, 0);
  padding:0;
 }
 
 /* items del menu desplegable */
 
 .menu-principal ul ul li {
  float:none;
  width:150px
 }
 
 /* enlaces de los items del menu desplegable */
 
 .menu-principal ul ul a {
  line-height:120%;
  padding:10px 15px;
 }
 
 /* items del menu desplegable al pasar el ratón */
 
 .menu-principal ul li:hover > ul {
  display:block;
 }


/*Mobile menu*/
.menu-mobile{
  display: none;
}


.fixed-header .menu-mobile ul ul li a {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.876rem;
  letter-spacing: 0;
  line-height: 1.5em;
  transition: all .3s ease;
 }


/* ------ MAIN ------ */

/*Banner principal*/

.main{
  width: 100%;
  margin-top: -68px;
}

.main .banner-principal{
  width: 100%;
  position: relative;
}

.main .banner-principal .banner{
  width: 100%;
  height: 100vh;
  background-image: url('../img/bg-proce');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.main .banner-principal .texto-banner{
  display: inline-block;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.main .banner-principal .texto-banner h2{
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
}

.main .banner-principal .texto-banner h1{
  font-size: 6.0625rem;
  font-weight: 700;
  line-height: 90px;
  color: #fff;
  margin-bottom: 30px;
}

.main .banner-principal .texto-banner a{
  text-decoration: none;
  display: inline-block;
  padding: 8px 20px;
  background: #BE894A;
  color: #fff;
  transition: all .7s ease;
}

.main .banner-principal .texto-banner a:hover{
  background: #fff;
  color: #BE894A;
}



/*Sección banner servicios*/

.main .info-extra{
 
  padding: 130px 0;
  background-image: url('../img/bg-ser.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.main .info-extra .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .info-extra .contenedor .info{
  width: 50%; 
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}


.main .info-extra .contenedor .info .contenido-info .texto-info{
  width: 90%;
  margin-top: 50px;
  text-align: center;
}

.main .info-extra .contenedor .info .contenido-info .texto-info h4{
 font-size: 3.125rem;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}



/*Sección servicios*/

.main .servicios{
  /* background: #191919; */
  padding: 130px 0;
}

.main .servicios .contenedor{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.main .servicios .contenedor .info{
  width: 50%;
}

.main .servicios .contenedor .info .servicios-info{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

/* .main .servicios .contenedor .info .servicios-info:first-child{
  margin-bottom: 30px;
} */


.main .servicios .contenedor .info .servicios-info .texto-servicios{
  margin-left: 2%;
  margin-right: 4%;
}

.main .servicios .contenedor .info .servicios-info .texto-servicios h4{
  font-size: 1.875rem;
  line-height: 24px;
  color: #BE894A;
  font-weight: 500;
  margin-bottom: 15px;
}

.main .servicios .contenedor .info .servicios-info .texto-servicios p{
  color: #979797;
  font-size: 1rem;
  font-weight: 400;
}

.main .servicios .contenedor .foto1{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce1.jpg');
  background-position: center;
  background-size: cover;
}

.main .servicios .contenedor .foto2{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce2.jpg');
  background-position: center;
  background-size: cover;
}

.main .servicios .contenedor .foto3{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce3.jpg');
  background-position: center;
  background-size: cover;
}

.main .servicios .contenedor .foto4{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce4.jpg');
  background-position: center;
  background-size: cover;
}

.main .servicios .contenedor .foto5{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce5.jpg');
  background-position: center;
  background-size: cover;
}

.main .servicios .contenedor .foto6{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce6.jpg');
  background-position: center;
  background-size: cover;
}

.main .servicios .contenedor .foto7{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce7.jpg');
  background-position: center;
  background-size: cover;
}

.main .servicios .contenedor .foto8{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce8.jpg');
  background-position: center;
  background-size: cover;
}

.main .servicios .contenedor .foto9{
  width: 50%;
  height: 300px;
  box-shadow: 0px 9px 32px -1px rgba(0,0,0,0.5);
  background-image: url('../img/proce9.jpg');
  background-position: center;
  background-size: cover;
}





/* ------ PIE DE PÁGINA ------ */

footer{
  background: #f3f4fa;
  padding: 54px 0;
  text-align: center;
}

footer .copy{
  color: #979797;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 15px;
}

footer .footer-redes a{
  display: inline-block;
  padding: 0 10px;
  color: #979797;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.5em;
  transition: all .3s ease;
}

footer .footer-redes a:hover{
  color: #2a7de1;
}


/* ----- MEDIA QUERIES ----- */

@media screen and (max-width:1040px){
  

  /*servicios*/
  .main .info-extra .contenedor .info{
    width: 100%;
  }
  .main .info-extra .contenedor .foto{
    display: none;
  }
}

@media screen and (max-width: 900px){
  /*Encabezado*/
  .menu-bar-pc{
    display: none;
  }

  .menu-mobile{
    display: block;
    width: 100%;
    padding: 5px 18px;
    background: #fff;
    color: #444444;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .menu-mobile .barra{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-mobile .barra .logo{
    width: 40px;
  }
  .menu-mobile .barra a i{
    font-size: 1.4rem;
    color: #444444;
  }

  .menu-mobile .menu-principal{
    width: 80%;
    display: block;
    position: fixed;
    top: 56px;
    left: -100%;
    border-bottom: 1px solid rgba(204,204,204,0.5);
    border-right: 1px solid rgba(204,204,204,0.5);
    box-shadow: 0px 1px 5px -1px rgba(0,0,0,0.2);
    background: #fff;
    text-align: center;
  }

  .menu-mobile .menu-principal a{
    display: block;
    padding: 10px;
    color: #444444;
    border-bottom: 1px solid rgba(204,204,204,0.5);
  }

  .menu-mobile .menu-principal a:hover{
    background: #f7f7f7;
  }
  .fixed-header{
    display: none;
  }

  /*Main*/
  .main{
    margin-top: 0;
  }


}

@media screen and (max-width:550px){
  /*Banner principal*/
  .main .banner-principal .texto-banner h1{
    font-size: 4rem;
  }
  /*Titulo secciones*/
  .titulo-seccion h2{
    font-size: 2.125rem;
  }
  
  /*servicios*/

  .main .servicios .contenedor .info{
    width: 50%;
    align-items: center;
  }

  .main .servicios .contenedor .foto1{
    display: none;
  }
 
 
}
