/*CSS RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
}

html {
  font-size: 10px; /*Referente tamaño fuente*/
  scroll-behavior: smooth;
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*HEADER*/
header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../Images/Header_BG_60_v2.jpg) center/cover no-repeat;
  animation: zoomBackground 50s ease;
  animation-iteration-count: infinite;
  z-index: -1; 
}

/* animaciones para el fondo de header */
@keyframes zoomBackground {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.navbar {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  margin-top: 5vh;
}

.logo-navbar img {
  width: 50px; /*tamano logo navbar*/
}

.burger {
  display: none; /*oculta menu burger movil en desktop*/
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-link {
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 2rem;
  padding: 5px 20px;
  margin-left: 1vw;
  margin-right: 1vw;
  transition: all .3s ease;
}

.nav-link:hover {
  color: rgb(0, 0, 0);
  background-color: #fff;
  transition: all .3s ease;
}

.filler-navbar { 
  width: 2%;/*esto es un div invisible, que ayuda a centrar el navbar sin intervenir el resto del codigo, el width queda en porcentaje para garantizar buena posicion en cualquier pantalla*/
}

.Indicador-seccion {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5%; /*esto se agrega para compenzar y dejar la LINEA en el horizonte de la imagen en DESKTOP, irrelevante para mobil*/
  gap: 20px;
  text-align: center;
}

#indicador-index {
  margin-top: 2%; /*esto es solo para la el indicador en index, compenza desplazamiento por BR*/
}

.Titulo-seccion {
  font-family: 'Satoshi', sans-serif;
  color: #ffffff;
  font-size: 5rem;
  line-height: 4rem;
  font-weight: 600;
  opacity: 0;
  animation: fadeDown 0.8s ease forwards;
}

.Linea {
  width: 230px;
  height: 2px;
  opacity: 0;
  background-color: rgb(255, 255, 255);
  animation: fadeDown 0.8s ease 0.2s forwards;
}

.Subtitulo-seccion {
  font-family: 'Satoshi', sans-serif;
  color: #ffffff;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeDown 0.8s ease 0.4s forwards;
}

@keyframes fadeDown { /*animacion para seccion de Titulo */
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

 /*BOTON ID header*/
.btn-container { 
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 5vh;
}

.down-btn {
  cursor: pointer;
}

.down-btn img {
  width: 35px;
  scale: 1;
  transition: all .3s ease;
}

.down-btn img:hover {
  scale: 1.5;
  transition: all .3s ease;
}

/*FOOTER*/
footer {
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.logo-footer {
  padding-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80px;
}

.contenedor-info-footer {
  width: 100%;
  height: auto;
  padding-top: 10px;
  padding-bottom: 40px;
}

.contenedor-lista-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.contenedor-lista-footer li {
  font-family: 'Work sans', sans-serif;
  font-size: 1.5rem;
  color: #000000;
}

.contenedor-lista-footer li img {
  width: 20px;
}

.whatsapp-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/*INDEX*/
.contenedor-index-1 {
  display: flex;
  height: 100vh;
  width: auto;
  overflow: hidden;
  scroll-margin-top: -100px; /*esto es para compensar por el scroll down y animacion AOS, la animacion te desplaza el contenido 100 px de arriba a abajo, esto asegura que el boton del header te pone esta seccion 100% en pantalla sin problemas*/
}

.texto-index-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  gap: 15px;
  padding: 0% 12%;
}

.titulo-index-1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5.5rem;
}

.linea-index-1 {
  height: 1.5px;
  width: 250px;
  background-color:  #000000;
}

.parrafo-index-1 {
  font-family:'Work Sans', sans-serif;
  font-size: 1.7rem;
  line-height: 2.8rem;
  font-weight: 400;
}

.imagen-index-1 {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.imagen-index-1 img {
  height: 100%;
  width: auto;
}

.contenedor-index-2 {
  display: flex;
  width: 100%;
  height: 100vh;
}

.texto-index-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../Images/Foto_Interior_Reunion.jpg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  gap: 20px;
  
}

.titulo-index-2 {
  font-family: 'Satoshi', sans-serif;
  font-size: 8rem;
  line-height: 8rem;
  font-weight: 400;
  color: #ffffff;
  text-align: start;
}

.linea-index-2 {
  height: 1.5px;
  margin-right: 3vw;
  width: 250px;
  background-color: #ffffff;
}

.servicios-index-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.titulo-responsivo-index-2 {
  display: none;
}

.servicios-index-2 ul {
  display: flex;
  flex-direction: column;
  gap: 3.5vh;
  margin: 0;
  padding: 0;
}

.servicios-index-2 ul li a {
  display: block;
  padding: 20px;
  font-family: 'Satoshi', sans-serif;
  font-size: 2.5rem;
  color: #000000;
  transition: all .5s ease;
}

.servicios-index-2 ul li a:hover {
  color: #ffffff;
  background-color: #000000;
  transition: all .5s ease;
}

.contenedor-index-3 {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.texto-index-3 {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  align-items: center;
  padding-right: 11vw;
  padding-left: 11vw;
}

.parrafo-jib {
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.7rem;
  line-height: 2.8rem;
  font-weight: 400;
}

#firma-jib {
  width: 100%;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: end;
  margin-top: 2vw;
}

#cargo-jib {
  width: 100%;
  font-family: 'Satoshi', sans-serif;
  font-size: 2.5rem;
  text-align: end;
}

.imagen-index-3 {
  width: 50%;
  background-image: url(../Images/JIB_pel-v3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*SERVICIOS*/
.info-servicios {
  padding: 2rem; 
  background-color: #ffffff;
  height: auto;
  margin: 0;
  padding: 0;
}

/* navbar de los servicios disponibles */
.lista-servicios {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 10vh;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #E5E5E5;
  overflow: hidden;
}

.lista-servicios button {
  font-family: 'Satoshi', sans-serif;
  color: black;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.15s ease;
  background-color: transparent;
}

.lista-servicios button:hover {
  font-weight: bold;
  transition: all 0.15s ease;
  background-color: transparent;
 
}

.lista-servicios button.active {
  font-weight: bold;
  background-color: transparent;
}

.secciones {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  height: auto;
}

.seccion-izq {
  display: flex;
  width: 50%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden; 
  padding-left: 10%;
  padding-right: 10%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  gap: 10px;
  z-index: 1;
}

#bg-1 {
  background-image: url(../Images/Foto_Interior_Reunion.jpg);
}

#bg-2 {
  background-image: url(../Images/estrategia_corporativa.jpg);
}

#bg-3 {
  background-image: url(../Images/estrategia_financiera.jpg);
}

#bg-4 {
  background-image: url(../Images/finanzas.jpg);
}

#bg-5 {
  background-image: url(../Images/legal_corporativo.jpg);
}

#bg-6 {
  background-image: url(../Images/defensa_judicial.jpg);
}

#bg-7 {
  background-image: url(../Images/contabilidad.jpg);
}


.seccion-izq h1 {
  font-family: 'Satoshi', sans-serif;
  font-size: 4rem;
  line-height: 5rem;
  text-align: start;
  color: white;
}

.line {
  height: 1px;
  width: 36rem;
  background-color: white;
}

.seccion-izq p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: start;
  color: white;
}

/* seccion derecha */
.seccion-der {
  display: flex;
  width: 50%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  font-family: 'Satoshi', sans-serif;
  position: relative;
  overflow: hidden; 
  background-position: center;
  background-size: cover;
  padding-left: 14%;
  padding-right: 12%;
  z-index: 1;
}

.seccion-der h1 {
  font-size: 2.5rem;
  line-height: 2.8rem;
}

.content-block {
  display: flex;
  flex-direction: row;
  width: 100%;
}

/*NOSOTROS*/
.contenedor-nosotros {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#pilares {
  background-image: url(../Images/Pilares.jpg);
  background-size: cover;
  background-position: center;
}

#vision {
  background-image: url(../Images/Vision.jpg);
  background-size: cover;
  background-position: center;
}

#mision {
  background-image: url(../Images/Mision.jpg);
  background-size: cover;
  background-position: center;
}

#nuestros-valores {
  background-image: url(../Images/Valores.jpg);
  background-size: cover;
  background-position: center;
}

.contenido-principal {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 45px;
  transition: width 0.5s ease;
  background-color: rgba(255, 255, 255, 0.7);
}

.boton-abrir {
    border: none;
    background-color: transparent;
    font-family: 'Satoshi', sans-serif;
    font-size: 3rem;
    cursor: pointer;
}

.boton-abrir:hover {
    font-weight: 600;
}

.boton-cerrar {
  border: none;
  color: #ffffff;
  background-color: transparent;
  font-family: 'Satoshi', sans-serif;
  font-size: 3rem;
  cursor: pointer;
}

.titulo-contenido {
  font-family: 'Satoshi', sans-serif;
  font-size: 4rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.subtitulos-contenido {
  font-family: 'Satoshi', sans-serif;
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 400;
}

.panel-principal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  background-color: transparent;
  transition: transform 0.5s ease;
}

.nosotros-parrafo {
  font-family: 'Work sans', sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  color: #ffffff;
  padding-left: 20%;
  padding-right: 20%;
  text-align: justify;
}

#parrafo-grande {
  font-size: 1.7rem;
  line-height: 2.4rem;
  padding-left: 12%;
  padding-right: 12%;
}

/*HISTORIA*/ 
.contenedor-historia-1 {
  display: flex;
  width: 100%;
  height: 100vh;
  scroll-margin-top: -100px;
  overflow: hidden;
}

.texto-historia-1 {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  padding-right: 10%;
  gap: 10px; 
}

.titulo-texto-historia-1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 5rem;
  line-height: 5rem;
}

.linea-historia-1 {
  height: 2px;
  width: 200px;
  background-color: #000000;
}

.parrafo-historia-1 {
  font-family: 'Work sans', sans-serif;
  font-size: 1.7rem;
  line-height: 2.8rem;
}

.imagen-historia-1 {
  width: 50%;
  background-image: url(../Images/cartel_historia_recepcion.jpg);
  background-position: center;
  background-size: cover;
}

.contenedor-historia-2 {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.izq-historia-2 {
  display: flex;
  width: 50%;
  justify-content: end;
  align-items: center;
}

.posicion-izq-2 {
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.imagen-historia-2 {
  width:  300px;
  height: 550px;
  background-image: url(../Images/JoseSoler.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.subtitulo-imagen-historia-2 {
  font-family: 'Satoshi', sans-serif;
  font-size: 2rem;
  text-align: center;
  width: 300px;
}

.der-historia-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  gap: 15px;
  padding-left: 3%;
}

.titulo-historia-2 {
  font-family: 'Satoshi', sans-serif;
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 400;
}

.linea-historia-2 {
  width: 300px;
  height: 2px;
  background-color: #000000;
}

.contenedor-historia-3 {
  width: 100%;
  height: auto;
  padding-left: 5vw;
  padding-right: 5vw;
  margin-bottom: 50px;
}

.titulos-historia {
  font-family: 'Work sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 10px;
}

.parrafos-historia {
  font-family: 'Work sans', sans-serif;
  font-size: 1.7rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-align: justify;
}

/*CONTACTO*/ 
.contenedor-contacto {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  scroll-margin-top: -100px;
}

.contenedor-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15vw;
  width: 50%;
  background-color: #000000;
}

.titulo-info {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 4rem;
  color: #ffffff;
}

.contenido-info {
  font-family: 'Satoshi', sans-serif;
  text-wrap: wrap;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.contenedor-linkedin {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.contenedor-linkedin a img{
  width: 40px;
}


.contenedor-maps {
  display: flex;
  width: 50%;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-left: 5%;
  padding-right: 5%;
}




@media only screen and (max-width: 1100px) {

  .texto-index-1 {
    padding: 0% 5%;
  }

  .texto-index-3 {
    padding-right: 8vw ;
    padding-left: 8vw;
  }

  .parrafo-jib {
    font-size: 1.5rem;
    line-height: 3rem;
  }

  #firma-jib {
    font-size: 2rem;
  }
  
  #cargo-jib {
    font-size: 2rem;
  }

   /*SERVICIOS*/
   .seccion-izq {
    width: 65%;
  }

  .seccion-der {
      width: 35%;
      padding: 30px;
  }

  .seccion-izq h1 {
      font-size: 5.2rem;
  }

  .seccion-izq p {
      font-size: 1.3rem;
      line-height: 1.5;
  }

  .line {
      width: 35rem;
  }

  .lista-servicios {
      height: auto;
      padding: 15px 0;
  }

  .lista-servicios button {
      font-size: 1.5rem;
      padding: 10px;
  }

  /*NOSOTROS*/
  .nosotros-parrafo {
    font-size: 1.7rem;
    line-height: 2.7rem;
    padding-left: 15%;
    padding-right: 15%;
  }

  #parrafo-grande {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
 
  /*HISTORIA*/
  .texto-historia-1 {
    padding-left: 6%;
    padding-right: 6%;
  }

  .titulo-texto-historia-1 {
    font-size: 4rem;
  }

  .parrafo-historia-1 {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }

  /*CONTACTO*/
  .contenedor-info {
    padding-left: 10vw;
  }

}

@media only screen and (max-width: 750px) { /*PRIMER BREAKPOINT PARA PANTALLAS CHICAS*/

  /*NAVBAR HEADER*/
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 12rem; /*la distancia desde top al inicio del menu*/
      flex-direction: column;
      background-color: #2f2f2f;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      z-index: 1;
  }

  .nav-menu.active {
      left: 0;
  }

  .nav-item {
      width: 100%;
      padding-top: 40px;
      padding-bottom: 40px;
      border-top: 1px solid #808080;
      border-bottom: 1px solid #808080;
  }

  .nav-link:hover {
      color: #ffffff;
      background-color: #2f2f2f;
      transition: all .3s ease;
  }

  .burger {
      display: block;
      cursor: pointer;
  }

  .burger.active .bar:nth-child(2) {
      opacity: 0;
  }

  .burger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }

  .burger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  .Titulo-seccion {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 4rem;
    line-height: 4rem;
  }
  
  .Linea {
    width: 200px;
    height: 1px;
  }
  
  .Subtitulo-seccion {
    font-size: 2rem;
    line-height: 2rem;
  }

/*FOOTER*/
  .contenedor-lista-footer li {
    font-size: 1.3rem;
  }

 /*INDEX*/
  .contenedor-index-1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }

  .texto-index-1 {
    width: 100%;
    height: auto;
    align-items: center;
    text-align: center;
    padding: 100px 50px;
  }

  .titulo-index-1 {
    font-size: 4.5rem;
    line-height: 5rem;
  }

  .parrafo-index-1 {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }

  .imagen-index-1 {
    display: none;
  }

  .contenedor-index-2 {
    height: 100vh;
  }

  .texto-index-2 {
    display: none;
  }

  .titulo-responsivo-index-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
  }

  .titulo-responsivo-index-2 h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 3rem;
    text-align: center;
    color: #ffffff;
  }

  .linea-responsiva-index-2 {
    display: block;
    background-color: #ffffff;
    height: 1px;
    width: 150px;
  }

  .servicios-index-2 {
    width: 100%;
    background-image: url(../Images/Foto_Interior_Reunion.jpg);
    background-position: center;
    background-size: cover;
  }

  .servicios-index-2 ul {
    gap: 10px;
  }

  .servicios-index-2 ul li a {
    text-align: center;
    color: #ffffff;
  }

  #ver-mas{
    font-weight: 600;
  }

  .texto-index-3 {
    width: 100%;
  }

  .imagen-index-3 {
    display: none;
  }

  /*SERVICIOS*/
  .secciones {
    height: auto;
  }

  .seccion-izq {
    width: 65%;
    height: 85vh;
    gap: 5px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .seccion-der {
      width: 35%;
      height: 85vh;
      padding-left: 3%;
      padding-right: 2%;
  }

  .seccion-der h1 {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }

  .seccion-izq h1 {
      font-size: 3rem;
      line-height: 3.5rem;
  }

  .seccion-izq p {
      font-size: 1.2rem;
      line-height: 1.7;
  }

  .line {
      width: 70%;
  }

  .lista-servicios {
    flex-direction: column;
      padding: 10px 0;
      height: auto;
  }

  .lista-servicios button {
      padding: 5px;
      font-size: 1.4rem;
  }
  
/*NOSOTROS*/
.panel-principal {
  width: 100%;
  right:-100%;
  background-size: cover;
  background-position: center;
}

#panel-bg-1 {
  background-image: url(../Images/Pilares.jpg);
}

#panel-bg-2 {
  background-image: url(../Images/Vision.jpg);
}

#panel-bg-3 {
  background-image: url(../Images/Mision.jpg);
}

#panel-bg-4 {
  background-image: url(../Images/Valores.jpg);
}

.titulo-contenido {
  font-size: 3rem;
}

.subtitulos-contenido {
  font-size: 2.5rem;
  line-height: 3rem;
}

.nosotros-parrafo {
  font-size: 1.7;
}

/*HISTORIA*/
  .texto-historia-1 {
    align-items: center;
    width: 100%;
    text-align: center;
    padding-left: 8%;
    padding-right: 8%;
  }

  .imagen-historia-1 {
    display: none;
  }

  .imagen-historia-2 {
    width: 50vw;
  }

  .subtitulo-imagen-historia-2 {
    width: 50vw;
  }

  .titulo-historia-2 {
    font-size: 3rem;
    line-height: 3rem;
  }

  .linea-historia-2 {
    width: 175px
  }

  /*CONTACTO*/
  .contenedor-contacto {
    flex-direction: column;
    height: auto;
  }

  .contenedor-info {
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    align-items: center;
    text-align: center;
  }

  .contenedor-maps {
    width: 100%;
    padding: 50px;
  }
}


  

