*{
  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;
}

::selection {
      background: black;
      color: white;
    }

::-webkit-selection {
    background: black;
    color: white;
}

  
  p {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 120%;
  }
  
  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{
    /* display: block; */
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--negro);
  }

  a:hover, .socials a:hover, .links a:hover{
    color: var(--azul);
    cursor: pointer;
  }


/* --------- NAVBAR -------- */

  #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: 18px 20px 11px;
      letter-spacing: -.3px;

      cursor:default;
    }

    .logo {
      white-space: normal;
      
      color: var(--negro);
      font-weight: 400;
      line-height: 110%;
    }

    .hover_bea:hover{
      color: var(--azul);
    }

    .links{
        display: flex;
        flex-direction: row;
        gap: 3em;
    }

    .links a {
      text-decoration: none;
      color: var(--negro);
      font-weight: regular;
      font-size: 0.938em;
    }

    #icono_menu_mobile{
      display: none;
    }

    #icono_menu_mobile img{
      border-radius: 0px;
    }

    #desplegable_mobile{
      display: none;
    }


/* ------- IMAGEN YO ---------- */

 .hover_bea:hover{
      color: var(--azul);
    }

.about_me{
    padding: 20px 20px 20px;
    display: flex;
    flex-direction: column;
    object-fit: cover;
    width: 100%;
    overflow: visible;

    margin-top: 21px;
}

.yo_contenedor{
  width: 500px;
  overflow: hidden;

  position: fixed;
  top: 41px;
  bottom: 20px;
}

.yo_contenedor img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.info_about_me{
    display: flex;
    flex-direction: column;
    gap: 200px;

    margin-left: 520px;
    margin-top: 70px;
}

.info_copy_desc{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-right: 150px;
}

.info_copy_desc h1{
  cursor: default;
}

.info_desc_tags{
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.about_desc{
    max-width: 460px;
}

.about_tags{
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 230px;
}

.info_cv{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 50px;
}

.cv_columns{
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.cv_interior{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cv_interior_text{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 460px;
}

.pegatinas{
  height: 65vh;
  display: flex;
  justify-content: end;
  margin-bottom: 50px;

  margin-top: 100px;
}

.pegatinas img{
  display: block;
  height: 100%;
  object-fit: contain ;
}


/* ---------- FOOTER ---------- */

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--blanco);
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
  gap: 30px;
  padding: 15px 20px;


  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.footer.visible {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

#footerMessage {
  display: none;
  transform: translateY(20px);
  height: 0;
  opacity: 0;
}

#footerEmail {
  font-size: 1em;
}

.socials{
  display: flex;
  gap: 3em;
}

.socials a {
  text-decoration: none;
  color: var(--negro);
  font-weight: regular;
  font-size: 1em;
}

/* ------- */

.footer_mobile{
  display: none;
}


@media (max-width: 1276px) and (min-width: 1024px) {

  .yo_contenedor{
  width: 400px;
}

.info_copy_desc{
    padding-right: 0px;
}

.info_about_me {
  margin-left: 420px;
  gap: 130px;
  margin-top: 60px;
}

}

@media (max-width: 1024px) and (min-width: 768px) {

  /* ------------- */

.links{
  gap: 2em;
}

/* --------- */

  .yo_contenedor{
  width: 350px;
}

.info_desc_tags {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info_copy_desc{
    padding-right: 0px;
}

.info_about_me {
  margin-left: 370px;
  gap: 100px;
  margin-top: 60px;
}

.info_copy_desc {
    gap: 30px;
}

.info_copy_desc h1 {
  font-size: 2em;
  max-width: 460px;
}

.info_cv {
    flex-direction: column;
    gap: 50px;
  }
  
.pegatinas{
  height: 35vh;
}

}


@media (max-width: 880px) and (min-width: 768px) {

/* --------- */

.about_me {
  padding: 20px 10px 20px;
}

.yo_contenedor {
    width: 100%;
    height: 85vh;
    position: relative;
    top: 0px;
    bottom: 0px;
}

.info_desc_tags {
    display: flex;
    flex-direction: row;
    gap: 0px;
    justify-content: space-between;
}

.info_copy_desc{
    padding-right: 0px;
}

.info_about_me {
  margin-left: 0px;
  gap: 140px;
  margin-top: 30px;
}

.info_copy_desc {
    gap: 30px;
}

.info_copy_desc h1 {
  font-size: 2.5em;
  margin-right: 0px;
  max-width: 100%;
}

.info_cv{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;

}
  
.pegatinas{
  margin-top: 70px;
  height: 55vh;
}
}


@media (max-width: 768px) and (min-width: 425px) {

  #navbar{
          padding: 18px 10px 11px;
  }

.links{
  gap: 1.2em;
}


/* --------- */

.about_me {
  padding: 20px 10px 20px;
}

.yo_contenedor {
    width: 100%;
    height: 85vh;
    position: relative;
    top: 0px;
    bottom: 0px;
}

.info_desc_tags {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info_copy_desc{
    padding-right: 0px;
}

.info_about_me {
  margin-left: 0px;
  gap: 80px;
  margin-top: 30px;
}

.info_copy_desc {
    gap: 30px;
}

.info_copy_desc h1 {
  font-size: 2em;
  margin-right: 20px;
}

.info_cv {
    flex-direction: column;
    gap: 50px;
  }
  
.pegatinas{
  margin-top: 70px;
  height: 55vh;
}


/* --------- 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;

  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.footer_mobile.visible {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: auto;
}

.icons_mobile{
  display: flex;
  flex-direction: row;
  gap: 14px;
}

}

@media (max-width: 424px) {

#navbar {
  padding: 12px 10px 9px;
}

#icono_menu_mobile{
  display: block;
}

#desplegable_mobile{
  z-index: 1;
  width: 100vw;
  position: fixed;
  padding: 50px 10px 0px;
  display: none;
  flex-direction: column;
  background-color: var(--blanco);
}

.desplegable_int{
  padding: 36px 0px 16px;
  text-align: right;
}

.desplegable_int_borde{
  border-top: 2px solid #d9d9d9;
  padding: 16px 0px 16px;
}

.links{
  display: none;
}


/* --------- */

.about_me {
    padding: 20px 10px 20px;
}

.yo_contenedor {
    z-index: 0;
    width: 100%;
    height: 80vh;
    position: relative;
    top: 0px;
    bottom: 0px;
}

.info_desc_tags {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info_copy_desc{
    padding-right: 0px;
}

.info_about_me {
  margin-left: 0px;
  gap: 80px;
  margin-top: 30px;
}

.info_copy_desc {
    gap: 30px;
}

.info_copy_desc h1 {
  font-size: 1.8em;
  margin-right: 20px;
}

.info_cv {
    flex-direction: column;
    gap: 50px;
  }
  
.pegatinas{
  margin-top: 70px;
  height: 55vh;
}




/* 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;
}

}
