@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
:root{
    --Oscuro:#00287e;
    --Claro:#5C8CA8;
    --Transparencia: #a9c5d3;
    --Transparencia2: #8cb1bf;
    --textConFondo:#ffffff;
    --letrasDestacadas:#fff;
    --text:#000;
    --text_font:montserrat, sans-serif;
}
*{
    box-sizing: border-box;
    font-family: var(--text_font);
    color: var(--textConFondo);
}
body {
    background-image: url("img/fondo.png");
    background-size: cover;
    display: flex;
    flex-direction: row;
    backdrop-filter: blur(1px);
    padding: 0;
    margin: 0;
}
body.principal{
  background-image: url("img/fondo_principal.png");
}
header{
    padding: 20px;
    background-color: var(--Transparencia);
    width: fit-content;
    height: fit-content;
    position:absolute;
}
ul{
    list-style: none;
    margin:0;
}
main.principal{
    width: 100vw;
    height: 100vh;
}


/*Estilos de los botones conocimientos y portfolio hasta un mínimo de 1265mm*/

div.apartadosPrincipal{
  position: absolute;
  top: 0;
  right: 40px;
  display:flex;
}
section.principal {
    position: relative;
    width: 30vw;
    height: fit-content;
}

div.tittles{
  position: relative;
    top: 40px;
    left: 0;
    width: 100%;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    padding: 45px;
    cursor:pointer;
}
section.principal:nth-of-type(1) div.tittles:hover{
  /*-webkit-box-shadow: inset 10px 0px 43px 6px rgba(255,255,255,0.37);
  -moz-box-shadow: inset 10px 0px 43px 6px rgba(255,255,255,0.37);*/
  box-shadow: inset -20px 0 20px -20px rgba(255,255,255,0.5);
}
section.principal:nth-of-type(2) div.tittles:hover{
  /*-webkit-box-shadow: inset 10px 0px 43px 6px rgba(255,255,255,0.37);
  -moz-box-shadow: inset 10px 0px 43px 6px rgba(255,255,255,0.37);*/
  box-shadow: inset 20px 0 20px -20px rgba(255,255,255,0.5);
}
h2.principal{
    font-size: 40px;
    color: #a4c8dc;
    text-transform: uppercase;
    text-shadow: 0px 0px 8px rgb(124 131 255 / 94%);
    position: absolute;
}




/*Estilos carta Nombre*/

.card {
    display: flex;
    flex-direction: column;
    isolation: isolate;
    position: absolute;
    top: 25px;
    left:25px;
    z-index: 50;
    width: fit-content;
    height: fit-content;
    background: #29292c;
    border-radius: 1rem;
    overflow: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
    --color: #32a6ff;
    cursor: grab;
  }
  
  .card:before {
    position: absolute;
    content: "";
    inset: 0.0625rem;
    border-radius: 0.9375rem;
    background: #18181b;
    z-index: 2
  }
  
  .card:after {
    position: absolute;
    content: "";
    width: 0.25rem;
    inset: 0.65rem auto 0.65rem 0.5rem;
    border-radius: 0.125rem;
    background: var(--gradient);
    transition: transform 300ms ease;
    z-index: 4;
  }
  
  .card:hover:after {
    transform: translateX(0.15rem)
  }
  
  .cardtitle {
    color: var(--color);
    padding: 0 0 0 20px;
    margin: 0;
    font-weight: 500;
    font-size: 26px;
    transition: transform 300msease;
    z-index: 5;
    text-transform: uppercase;
  }
  
  .card:hover .cardtitle {
    transform: translateX(0.15rem)
  }
  
  .cardbody {
    color: #99999d;
    padding: 0 1.25rem;
    transition: transform 300ms ease;
    z-index: 5;
  }
  
  .card:hover .cardbody {
    transform: translateX(0.25rem)
  }
  
  .cardglow,
  .cardborderglow {
    position: absolute;
    width: 20rem;
    height: 20rem;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle closest-side at center, white, transparent);
    opacity: 0;
    transition: opacity 300ms ease;
  }
  
  .cardglow {
    z-index: 3;
  }
  
  .cardborderglow {
    z-index: 1;
  }
  
  .card:hover .cardglow {
    opacity: 0.1
  }
  
  .card:hover .cardborderglow {
    opacity: 0.1
  }
  
  .note {
    color: var(--color);
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.9rem;
    width: 75%;
  }

  #seeMore{
    cursor: pointer;
    font-size: 25px;
    /* line-height: 14px; */
    position: relative;
    top: 2px;
    left: 3px;
  }