*{
  margin: 0;
  padding: 0;
  box-sizing:border-box;

  /* trim both sides to the capital letters */
  text-box: trim-both cap alphabetic;
  /* trim both sides to the lowercase letter x */
  text-box: trim-both cap alphabetic;
}

html, body{
    background-color: rgb(249, 249, 249);
    /* cursor: none; */
    overflow: overlay;
    overflow-x: hidden;

    font-family: bdo;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body::-webkit-scrollbar {
  display: none;
}

  
  :root {
    --negro: #101010;
    --blanco: #f9f9f9;
    --azul: #0000FF;
  }
  

  @font-face {
    font-family: 'bdo';
    src: url('/font/BDOGrotesk-VF.woff2')format('woff2-variations');
    font-weight: 100 900;
}

  
  p {
    display: block;
    margin: 0;
    padding: 0;
  }
  
  h1 {
    font-size: 2.5em;
    margin: 0;
    padding: 0;
    letter-spacing: -.7px;

    font-weight: 400;
    line-height: 110%;
  }
  
  h2{
    font-size: 2em;
    margin: 0;
    padding: 0;
  }
  
  img{
    display:inherit;
    margin: 0;
    padding: 0;
    border-radius: 5px;

    object-fit: cover;
    object-position: center center;
  }
  
  svg, path{
    display: block;
    margin: 0;
    padding: 0;
  }
  
  a{
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--negro);
  }

  a:hover, .socials a:hover, .links a:hover{
    color: var(--azul);
    cursor: pointer;
  }

  #navbar {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      background-color: var(--blanco);
      z-index: 1000;

      padding: 130px 20px 20px;
      letter-spacing: -.7px;

      cursor:default;
    }

    .logo {
        /* white-space: pre-line; */
      white-space: normal;
      
      color: var(--negro);
      font-weight: 400;
      line-height: 110%;
      /* transition: font-size 0.3s ease; */
    }

    .hover_bea:hover{
      color: var(--azul);
    }

    .links{
        display: flex;
        flex-direction: row;
        gap: 4.3em;
    }

    .links a {
      text-decoration: none;
      color: var(--negro);
      font-weight: regular;
      font-size: 2.5em;
    }

    #icono_menu_mobile{
      display: none;
    }

    #icono_menu_mobile img{
      border-radius: 0px;
    }

    #desplegable_mobile{
      display: none;
    }



/* ---------- PROYECTOS ---------- */

.proyectos{
   padding: 225px 20px 20px;
   margin-bottom: 420px;
   display: flex;
   flex-direction: column;
   object-fit: cover;
   gap: 10px;
   width: 100%;

   overflow: visible;
}


.dos_proy{
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
}

.dos_proy_int {
  width: 50%;
  height: 70vh;
  overflow: hidden;
}

.dos_proy_int img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.proy_int{
  width: 100%;
  height: 750px;
  overflow: hidden;
}

.proy_int img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ---------- FOOTER ---------- */

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--blanco);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 30px;
  padding: 15px 20px;


  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.footer.visible, .footer_laptop_peq.visible,.footer_mobile.visible {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.footer_laptop_peq, .footer_mobile{
  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

/* ------- */

.footer_mobile, .footer_laptop_peq{
  display: none;
}

/* ------- */

#footerMessage {
  display: none;
  transform: translateY(20px);
  height: 0;
  opacity: 0;
}

#footerEmail {
  font-size: 1em;
}

.arrows {
  display: inline-flex;
  gap: 4px;
}

.arrows img {
  width: 27px;
  height: auto;
}

.contenedor_socials{
  display: flex;
  justify-content: space-between;
}

.socials{
  display: flex;
        gap: 4.3em;
}

.socials a {
  text-decoration: none;
  color: var(--negro);
  font-weight: regular;
  font-size: 1em;
}

@media (max-width: 1225px) and (min-width: 1024px) {

.proyectos{
  padding: 210px 20px 0px;
  margin-bottom: 358px;
}

}



@media (max-width: 1024px) and (min-width: 768px) {

.proyectos{
  padding: 210px 20px 20px;
  margin-bottom: 25px;
}
  
.dos_proy_int {
  width: 50%;
  height: 50vh;
  overflow: hidden;
}

#logo , #navLinks a{
  font-size: 2em;
}

/* -------- FOOTER --------- */

.footer{
  display: none;
}

.footer_mobile{
  display: none;
}

.footer_laptop_peq{
  position: fixed;
  bottom: 0;
  width: 100vw;
  background-color: var(--blanco);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.icons_mobile{
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.footer_laptop_peq.visible {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.footer_laptop_peq{
  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}


  
}

@media (max-width: 767px) and (min-width: 425px) {

.proyectos{
padding: 145px 10px 10px;
margin-bottom: 34px;
}
 
.proy_int{
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.dos_proy{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.dos_proy_int {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

#navbar{
  padding: 100px 10px 12px;
}

#logo , #navLinks a{
  font-size: 1.1em;
}

.links{
  gap: 2em;
}

/* --------- FOOTER --------- */

.footer{
  display: none;
}

.footer_mobile{
  position: fixed;
  bottom: 0;
  width: 100vw;
  background-color: var(--blanco);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}

.icons_mobile{
  display: flex;
  flex-direction: row;
  gap: 14px;
}
  
}

@media (max-width: 424px) {

#navbar {
  padding: 100px 10px 10px;
}

#icono_menu_mobile{
  display: block;
}

#desplegable_mobile{
  width: 100vw;
  position: fixed;
  padding: 140px 10px 0px;
  display: none;
  flex-direction: column;
  background-color: var(--blanco);
}

.desplegable_int{
  padding: 40px 0px 16px;
  text-align: right;
}

.desplegable_int_borde{
  border-top: 2px solid #d9d9d9;
  padding: 16px 0px 16px;
}

.proyectos{
  padding: 138px 10px 10px;
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  object-fit: cover;
  gap: 10px;
  width: 100%;

  overflow: visible;
}
 
.proy_int{
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.dos_proy{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.dos_proy_int {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.logo{
  line-height: 120%;
}

#logo, #navLinksMobile a{
  font-size: 1.1em;
}

.links{
  display: none;
}

/* FOOTER */

.footer{
  display: none;
}

.footer_mobile{
  position: fixed;
  bottom: 0;
  width: 100vw;
  background-color: var(--blanco);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}

.icons_mobile{
  display: flex;
  flex-direction: row;
  gap: 14px;
}
  
}

