@charset "UTF-8";
/*VARIABLES*/
/*COLORES*/
/*IMPORTS DEL RESET CSS*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth; /*ANIMACION DEL SCROLL*/
  scroll-padding-top: 60px; /*SOLUCIÓN AL ANCLAJE POR ARRIBA*/
  letter-spacing: 2px;
}

a,
li {
  list-style: none;
  font-style: none;
  text-decoration: none;
  display: inline-block;
}

body { /*HACEMOS CON FLEX COLUMN Y MIN HEIGHT PARA QUE SIEMPRE OCUPE EL 100% DEL ALTO*/
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /*FOOTER ABAJO*/
  min-height: 100vh; /*FOOTER ABAJO*/
  color: #333;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section {
  width: 100%;
  padding: 0 4%;
  max-width: 1600px;
  height: 100vh;
  border-bottom: 2px solid rgba(129, 129, 129, 0.137);
}

#WSP {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px 10px;
  position: fixed;
  z-index: 10;
}
#WSP img {
  width: 65px;
}

/*IMPORTS DEL BODY*/
/*FONT STYLE HEADER*/
.header {
  position: fixed;
  top: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 1.3rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  z-index: 1000;
  transition: 0.5s;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(5px);
}

/*ANIMACION HEADER CON JS*/
header.sticky {
  background: rgba(255, 255, 255, 0.6588235294);
  padding: 0 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  height: 60px;
  border-bottom: 1.5px solid rgba(209, 213, 219, 0.3);
}
header.sticky .logo {
  color: black;
}
header.sticky .navbar a {
  color: black;
  transition: 0.3s;
}
header.sticky .navbar a:hover {
  font-weight: 500;
  font-size: 23px;
  transition: 0.3s;
  color: #062755;
}
header.sticky .navbar-redes a {
  color: black;
  transition: 0.3s;
}
header.sticky .navbar-redes a:hover {
  font-weight: 500;
  font-size: 23px;
  transition: 0.3s;
  color: #062755;
}
header.sticky .icons #menu-icon,
header.sticky .icons #close-icon {
  color: black;
}

/**/
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.589), transparent);
  transition: 0.5s;
}

.header:hover::after {
  left: 100%;
}

.logo {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

.navbar a {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 500;
  margin-left: 2.5rem;
  font-family: "Nunito Sans", sans-serif;
  transition: 0.3s;
}
.navbar a:hover {
  font-weight: 500;
  font-size: 23px;
  transition: 0.3s;
  color: #062755;
}

#check {
  display: none;
}

.icons {
  font-size: 2.8rem;
  right: 5%;
  color: #fff;
  cursor: pointer;
  display: none;
}

.navbar-redes a {
  color: #fff;
  font-size: 20px;
  margin-left: 5px;
  transition: 0.3s;
}
.navbar-redes a:hover {
  font-weight: 500;
  font-size: 23px;
  transition: 0.3s;
  color: #062755;
}

/*RESPONSIVE*/
@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}
@media (max-width: 768px) {
  .navbar a {
    color: rgb(255, 255, 255);
  }
  .icons {
    display: inline-flex;
  }
  #check:checked ~ .icons #menu-icon {
    display: none;
  }
  .icons #close-icon {
    display: none;
  }
  #check:checked ~ .icons #close-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.747);
    backdrop-filter: blur(50px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s ease;
  }
  header.sticky .navbar {
    background-color: rgba(255, 255, 255, 0.6235294118);
  }
  #check:checked ~ .navbar {
    height: 19.7rem;
  }
  .navbar a {
    display: block;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: 0.3s ease;
  }
  #check:checked ~ .navbar a {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: calc(0.15s * var(--i));
  }
}
.footer {
  width: 100%;
  padding: 40px 0;
  background-color: #fff;
  margin-top: auto; /*JUNTO CON PROPIEDADES DEL BODY SE AJUSTA AUTO*/
}

.footer .social {
  text-align: center;
  padding-bottom: 25px;
  color: #4b4c4d;
}

.footer .social a {
  font-size: 25px;
  color: inherit;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  opacity: 0.75;
  transition: 0.3s;
}

.footer .social a:hover {
  opacity: 0.9;
  transition: 0.3s;
  color: #062755;
}

.footer .list {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.footer .list li a {
  color: inherit;
  opacity: 0.8;
  transition: 0.3s;
}

.footer .list li a:hover {
  opacity: 1;
  transition: 0.3s;
  color: #062755;
  font-weight: 500;
  font-size: 23px;
}

.footer .list li {
  display: inline-block;
  padding: 0 15px;
}

.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 15px;
  color: #aaa;
}

/*IMPORTS DEL MAIN*/
#PERFIL {
  background-image: url(../images/perfil/fondo4.jpg);
  background-size: cover;
  background-position: center;
  padding: 0;
}

.perfil {
  padding: 0 4%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(3px);
  /*EDICION DE PERFIL CON IMAGEN*/
  /*EDICION DEL CONTENEDOR DE CONTENIDO*/
  /*ANIMACION TITULO*/
  /* Estilo base para el título */
  /* Simula el cursor parpadeante */
  /* Animación del cursor parpadeante */
  /*CONTENIDO REDES*/
  /*CONTENIDO PARRAFO*/
  /*CONTENIDO BOTON*/
}
.perfil .perfil__img {
  position: relative;
  width: 280px;
  height: 377px;
}
.perfil .perfil__img img {
  width: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255)); /* Degradado transparente a sólido */
  border-radius: 50px;
}
.perfil .perfil__img:hover img {
  transition: 0.3s;
  transform: translateY(-10px); /* Mover la tarjeta hacia arriba */
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3); /* Cambiar la sombra */
}
.perfil .perfil__contenido {
  width: 60%;
}
.perfil .perfil-contenido__titulos {
  height: 100px;
}
.perfil .perfil-contenido__titulos h1 {
  font-size: 35px;
  color: #0f4892;
  text-shadow: 2px 2px rgba(100, 100, 100, 0.3215686275);
  margin-top: 30px;
}
.perfil .maquina {
  display: inline-block;
  overflow: hidden;
}
.perfil .maquina::after {
  content: "|";
  display: inline-block;
  animation: blink-caret 0.7s step-end infinite;
  vertical-align: middle;
}
@keyframes blink-caret {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.perfil .perfil-contenido-redes {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.perfil .perfil-contenido-redes a {
  margin-left: 30px;
  transition: 0.3s;
}
.perfil .perfil-contenido-redes a:hover {
  transition: 0.3s;
  transform: translateY(-10px); /* Mover la tarjeta hacia arriba */
}
.perfil .perfil-contenido__parrafo p {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 5px;
  margin-top: 5px;
  color: rgb(32, 32, 32);
}
.perfil .perfil-contenido__parrafo p img {
  width: 40px;
}
.perfil .perfil-contenido__cv {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.perfil .perfil-contenido__cv .btn-perfil {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #183153;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.perfil .perfil-contenido__cv .btn-perfil:hover {
  transition: 0.3s;
  transform: translateY(-2px); /* Mover la tarjeta hacia arriba */
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3); /* Cambiar la sombra */
}
.perfil .perfil-contenido__cv .btn-perfil:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #658aa0;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
.perfil .perfil-contenido__cv .btn-perfil:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.perfil .perfil-contenido__cv .btn-perfil span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 25px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.perfil .perfil-contenido__cv .btn-perfil:hover span {
  color: #183153;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 860px) {
  #PERFIL {
    height: auto;
  }
  .perfil {
    padding-top: 80px;
    flex-direction: column;
  }
  .perfil .perfil__img {
    margin-top: 30px;
  }
  .perfil .perfil__contenido {
    text-align: center;
    width: 100%;
    padding-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .perfil-contenido__titulos {
    height: 134px !important;
  }
}
#SKILLS {
  background-color: #e0e0e0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 4%;
}
#SKILLS .h1-skills {
  color: #1766a3;
  font-size: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.skills {
  display: grid;
  padding: 0 4%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "skills-lenguajes skills-framework skills-herramientas" "skills-lenguajes skills-framework skills-herramientas" "skills-lenguajes skills-framework skills-herramientas";
}

/*GRILLA DE SKILL LENGUAJES*/
.skills-lenguajes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 125px 200px auto 80px;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "skill-logo_lenguaje skill-logo_lenguaje skill-logo_lenguaje" "skill-titulo_lenguaje skill-titulo_lenguaje skill-titulo_lenguaje" "skill-cont_lenguaje skill-cont_lenguaje skill-cont_lenguaje" "skill-boton_lenguaje skill-boton_lenguaje skill-boton_lenguaje";
  grid-area: skills-lenguajes;
}

.skill-logo_lenguaje {
  grid-area: skill-logo_lenguaje;
  margin: auto;
}

.skill-titulo_lenguaje {
  grid-area: skill-titulo_lenguaje;
  margin: auto;
}

.skill-cont_lenguaje {
  grid-area: skill-cont_lenguaje;
  margin: auto;
}

.skill-boton_lenguaje {
  grid-area: skill-boton_lenguaje;
  margin: auto;
}

/*GRILLA DE SKILL FRAMEWORK*/
.skills-framework {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 125px 200px auto 80px;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "skill-logo_framework skill-logo_framework skill-logo_framework" "skill-titulo_framework skill-titulo_framework skill-titulo_framework" "skill-cont_framework skill-cont_framework skill-cont_framework" "skill-boton_framework skill-boton_framework skill-boton_framework";
  grid-area: skills-framework;
}

.skill-logo_framework {
  grid-area: skill-logo_framework;
  margin: auto;
}

.skill-titulo_framework {
  grid-area: skill-titulo_framework;
  margin: auto;
}

.skill-cont_framework {
  grid-area: skill-cont_framework;
  margin: auto;
}

.skill-boton_framework {
  grid-area: skill-boton_framework;
  margin: auto;
}

/*GRILLA DE SKILL HERRAMIENTAS*/
.skills-herramientas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 125px 200px auto 80px;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "skill-logo_herramientas skill-logo_herramientas skill-logo_herramientas" "skill-titulo_herramientas skill-titulo_herramientas skill-titulo_herramientas" "skill-cont_herramientas skill-cont_herramientas skill-cont_herramientas" "skill-boton_herramientas skill-boton_herramientas skill-boton_herramientas";
  grid-area: skills-herramientas;
}

.skill-logo_herramientas {
  grid-area: skill-logo_herramientas;
  margin: auto;
}

.skill-titulo_herramientas {
  grid-area: skill-titulo_herramientas;
  margin: auto;
}

.skill-cont_herramientas {
  grid-area: skill-cont_herramientas;
  margin: auto;
}

.skill-boton_herramientas {
  grid-area: skill-boton_herramientas;
  margin: auto;
}

/*ESTRUCTURA DE CAJAS SKILL*/
.skills-lenguajes,
.skills-framework,
.skills-herramientas {
  text-align: center;
  height: auto;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.87);
  border-top: 1px solid rgba(121, 117, 117, 0.39);
  border-bottom: 1px solid rgba(121, 117, 117, 0.39);
}

/*SOMBREADOS*/
.skills-lenguajes {
  border-left: 1px solid rgba(121, 117, 117, 0.39);
  border-radius: 30px 0 0 30px;
}

.skills-herramientas {
  border-right: 1px solid rgba(121, 117, 117, 0.39);
  border-radius: 0 30px 30px 0;
}

.skills-lenguajes,
.skills-framework {
  border-right: 2px solid rgba(66, 66, 66, 0.459);
}

/*IMAGEN PRINCIPAL*/
.skills-lenguajes .skill-logo_lenguaje img,
.skills-framework .skill-logo_framework img,
.skills-herramientas .skill-logo_herramientas img {
  width: 100px;
}

/*ICONOS*/
.skills-lenguajes img,
.skills-framework img,
.skills-herramientas img {
  width: 80px;
}

/*EDICIÓN DE LOS BOTONES DE SKILLS*/
.skill-link_lenguaje::before,
.skill-link_framework::before,
.skill-link_herramientas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 15px;
  background-color: #658aa0;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}

.skill-link_lenguaje:hover,
.skill-link_framework:hover,
.skill-link_herramientas:hover {
  color: #e8e8e8;
}

.skill-link_lenguaje:hover::before,
.skill-link_framework:hover::before,
.skill-link_herramientas:hover::before {
  width: 100%;
}

/*MEDIA QUERIES DE SKILLS*/
@media (max-width: 1215px) {
  .skills {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "skills-lenguajes skills-framework" "skills-lenguajes skills-framework" "skills-lenguajes skills-framework" "skills-herramientas skills-herramientas" "skills-herramientas skills-herramientas" "skills-herramientas skills-herramientas";
  }
  .skills-lenguajes {
    border-left: 1px solid rgba(121, 117, 117, 0.39);
    border-top: 1px solid rgba(121, 117, 117, 0.39);
    border-radius: 30px 0 0 0;
    grid-template-rows: auto;
    row-gap: 30px;
  }
  .skills-framework {
    border-top: 1px solid rgba(121, 117, 117, 0.39);
    border-right: 1px solid rgba(121, 117, 117, 0.39);
    border-radius: 0 30px 0 0;
    grid-template-rows: auto;
    row-gap: 30px;
  }
  .skills-herramientas {
    border-left: 1px solid rgba(121, 117, 117, 0.39);
    border-right: 1px solid rgba(121, 117, 117, 0.39);
    border-bottom: 1px solid rgba(121, 117, 117, 0.39);
    border-radius: 0 0 30px 30px;
    grid-template-rows: auto;
    row-gap: 30px;
  }
}
@media (max-width: 650px) {
  .skills {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "skills-lenguajes" "skills-lenguajes" "skills-lenguajes" "skills-framework" "skills-framework" "skills-framework" "skills-herramientas" "skills-herramientas" "skills-herramientas";
  }
  .skills-lenguajes {
    border-left: 1px solid rgba(121, 117, 117, 0.39);
    border-right: 1px solid rgba(121, 117, 117, 0.39);
    border-top: 1px solid rgba(121, 117, 117, 0.39);
    border-bottom: 1px solid rgba(121, 117, 117, 0.39);
    border-radius: 30px 30px 0 0;
  }
  .skills-framework {
    border-left: 1px solid rgba(121, 117, 117, 0.39);
    border-right: 1px solid rgba(121, 117, 117, 0.39);
    border-top: 1px solid rgba(121, 117, 117, 0.39);
    border-bottom: 1px solid rgba(121, 117, 117, 0.39);
    border-radius: 0;
  }
  .skills-herramientas {
    border-left: 1px solid rgba(121, 117, 117, 0.39);
    border-right: 1px solid rgba(121, 117, 117, 0.39);
    border-top: 1px solid rgba(121, 117, 117, 0.39);
    border-bottom: 1px solid rgba(121, 117, 117, 0.39);
    border-radius: 0 0 30px 30px;
  }
}
/*MODAL SKILLS*/
.modal__lenguajes {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.7411764706);
  display: flex;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s 0.9s;
  --transform: translateY(-100vh);
  --transition: transform .8s;
  height: auto;
}

.modal--show-lenguajes {
  opacity: 1;
  pointer-events: unset;
  transition: opacity 0.6s;
  --transform: translateY(0);
  --transition: transform .8s .8s;
}

.modal__container-lenguajes {
  margin: auto;
  width: 90%;
  max-width: 600px;
  max-height: 100%;
  margin-top: 70px;
  background-color: white;
  border-radius: 6px;
  padding: 20px;
  display: grid;
  gap: 1em;
  place-items: center;
  text-align: center;
  grid-auto-columns: 100%;
  transform: var(--transform);
  transition: transform 0.3s;
  transition: var(--transition);
}
.modal__container-lenguajes .modal__img {
  width: 30%;
  min-width: 140px;
  max-width: 170px;
}
.modal__container-lenguajes .modal__title {
  font-size: 2.5rem;
  color: rgb(98, 199, 111);
}
.modal__container-lenguajes .modal__paragraph {
  margin-bottom: 10px;
}
.modal__container-lenguajes .modal__close-lenguajes {
  color: white;
  background-color: #658aa0;
  padding: 1em 3em;
  border: 1px solid white;
  border-radius: 6px;
  display: inline-block;
  font-weight: 300;
  transition: background-color 0.3s;
}
.modal__container-lenguajes .modal__close-lenguajes:hover {
  font-weight: 500;
  color: black;
  background-color: white;
}

/*MODAL DE SKILL FRAMEWORK*/
.modal__framework {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.7411764706);
  display: flex;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s 0.9s;
  --transform: translateY(-100vh);
  --transition: transform .8s;
  height: auto;
}

.modal--show-framework {
  opacity: 1;
  pointer-events: unset;
  transition: opacity 0.6s;
  --transform: translateY(0);
  --transition: transform .8s .8s;
}

.modal__container-framework {
  margin: auto;
  width: 90%;
  max-width: 600px;
  max-height: 100%;
  margin-top: 70px;
  background-color: white;
  border-radius: 6px;
  padding: 20px;
  display: grid;
  gap: 1em;
  place-items: center;
  text-align: center;
  grid-auto-columns: 100%;
  transform: var(--transform);
  transition: transform 0.3s;
  transition: var(--transition);
}
.modal__container-framework .modal__img {
  width: 30%;
  min-width: 140px;
  max-width: 170px;
}
.modal__container-framework .modal__title {
  font-size: 2.5rem;
  color: rgb(98, 199, 111);
}
.modal__container-framework .modal__paragraph {
  margin-bottom: 10px;
}
.modal__container-framework .modal__close-framework {
  color: white;
  background-color: #658aa0;
  padding: 1em 3em;
  border: 1px solid white;
  border-radius: 6px;
  display: inline-block;
  font-weight: 300;
  transition: background-color 0.3s;
}
.modal__container-framework .modal__close-framework:hover {
  font-weight: 500;
  color: black;
  background-color: white;
}

/*MODAL DE SKILL FRAMEWORK*/
.modal__herramientas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.7411764706);
  display: flex;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s 0.9s;
  --transform: translateY(-100vh);
  --transition: transform .8s;
  height: auto;
}

.modal--show-herramientas {
  opacity: 1;
  pointer-events: unset;
  transition: opacity 0.6s;
  --transform: translateY(0);
  --transition: transform .8s .8s;
}

.modal__container-herramientas {
  margin: auto;
  width: 90%;
  max-width: 600px;
  max-height: 100%;
  margin-top: 70px;
  background-color: white;
  border-radius: 6px;
  padding: 20px;
  display: grid;
  gap: 1em;
  place-items: center;
  text-align: center;
  grid-auto-columns: 100%;
  transform: var(--transform);
  transition: transform 0.3s;
  transition: var(--transition);
}
.modal__container-herramientas .modal__img {
  width: 30%;
  min-width: 140px;
  max-width: 170px;
}
.modal__container-herramientas .modal__title {
  font-size: 2.5rem;
  color: rgb(98, 199, 111);
}
.modal__container-herramientas .modal__paragraph {
  margin-bottom: 10px;
}
.modal__container-herramientas .modal__close-herramientas {
  color: white;
  background-color: #658aa0;
  padding: 1em 3em;
  border: 1px solid white;
  border-radius: 6px;
  display: inline-block;
  font-weight: 300;
  transition: background-color 0.3s;
}
.modal__container-herramientas .modal__close-herramientas:hover {
  font-weight: 500;
  color: black;
  background-color: white;
}

.skill-link_lenguaje,
.skill-link_framework,
.skill-link_herramientas {
  padding: 15px 25px;
  border: unset;
  border-radius: 15px;
  color: #212121;
  z-index: 1;
  background: #e8e8e8;
  position: relative;
  font-weight: 1000;
  font-size: 17px;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  overflow: hidden;
  cursor: pointer;
}

/*MEDIA QUERIES*/
@media (max-width: 800px) {
  .modal__container-lenguajes,
  .modal__container-framework,
  .modal__container-framework {
    padding: 2em 1.5em !important;
  }
  .modal__title {
    font-size: 2rem !important;
  }
}
@media (max-width: 800px) {
  .modal__container-lenguajes,
  .modal__container-framework,
  .modal__container-framework {
    padding: 2em 1.5em !important;
  }
  .modal__title {
    font-size: 2rem !important;
  }
}
@media (max-width: 530px) {
  .modal__container-lenguajes .modal__paragraph {
    height: 270px;
    overflow: auto;
  }
  .modal__container-framework .modal__paragraph {
    height: 270px;
    overflow: auto;
  }
  .modal__container-herramientas .modal__paragraph {
    height: 270px;
    overflow: auto;
  }
}
#PORTAFOLIO {
  display: flex;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  background-color: #ebeaea;
  padding: 20px 4%;
}
#PORTAFOLIO .h1-portafolio {
  color: #1766a3;
  font-size: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.portafolio {
  width: 100%;
  height: 100%;
  padding: 0 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.portafolio .card__portafolio1,
.portafolio .card__portafolio2,
.portafolio .card__portafolio3 {
  position: relative;
  overflow: hidden;
  margin: 20px;
}
.portafolio .card__portafolio1 img,
.portafolio .card__portafolio2 img,
.portafolio .card__portafolio3 img {
  width: 340px;
}
.portafolio .card__portafolio1 .card__portafolio1-info,
.portafolio .card__portafolio1 .card__portafolio2-info,
.portafolio .card__portafolio1 .card__portafolio3-info,
.portafolio .card__portafolio2 .card__portafolio1-info,
.portafolio .card__portafolio2 .card__portafolio2-info,
.portafolio .card__portafolio2 .card__portafolio3-info,
.portafolio .card__portafolio3 .card__portafolio1-info,
.portafolio .card__portafolio3 .card__portafolio2-info,
.portafolio .card__portafolio3 .card__portafolio3-info {
  text-align: center;
  width: 80%;
  background-color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  border-radius: 1.5rem;
  position: absolute;
  bottom: -9rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
}
.portafolio .card__portafolio1 .card__portafolio1-info span,
.portafolio .card__portafolio1 .card__portafolio2-info span,
.portafolio .card__portafolio1 .card__portafolio3-info span,
.portafolio .card__portafolio2 .card__portafolio1-info span,
.portafolio .card__portafolio2 .card__portafolio2-info span,
.portafolio .card__portafolio2 .card__portafolio3-info span,
.portafolio .card__portafolio3 .card__portafolio1-info span,
.portafolio .card__portafolio3 .card__portafolio2-info span,
.portafolio .card__portafolio3 .card__portafolio3-info span {
  display: block;
  font-size: 20px;
  margin-bottom: 0.25rem;
}
.portafolio .card__portafolio1 .card__portafolio1-info h3 a,
.portafolio .card__portafolio1 .card__portafolio2-info h3 a,
.portafolio .card__portafolio1 .card__portafolio3-info h3 a,
.portafolio .card__portafolio2 .card__portafolio1-info h3 a,
.portafolio .card__portafolio2 .card__portafolio2-info h3 a,
.portafolio .card__portafolio2 .card__portafolio3-info h3 a,
.portafolio .card__portafolio3 .card__portafolio1-info h3 a,
.portafolio .card__portafolio3 .card__portafolio2-info h3 a,
.portafolio .card__portafolio3 .card__portafolio3-info h3 a {
  font-size: 16px;
  font-weight: 500;
  color: grey;
  margin-bottom: 0.75rem;
  transition: 0.3s;
}
.portafolio .card__portafolio1 .card__portafolio1-info h3 a:hover,
.portafolio .card__portafolio1 .card__portafolio2-info h3 a:hover,
.portafolio .card__portafolio1 .card__portafolio3-info h3 a:hover,
.portafolio .card__portafolio2 .card__portafolio1-info h3 a:hover,
.portafolio .card__portafolio2 .card__portafolio2-info h3 a:hover,
.portafolio .card__portafolio2 .card__portafolio3-info h3 a:hover,
.portafolio .card__portafolio3 .card__portafolio1-info h3 a:hover,
.portafolio .card__portafolio3 .card__portafolio2-info h3 a:hover,
.portafolio .card__portafolio3 .card__portafolio3-info h3 a:hover {
  color: #062755;
  transition: 0.3s;
  text-decoration: underline;
}
.portafolio .card__portafolio1 .card__portafolio1-info a,
.portafolio .card__portafolio1 .card__portafolio2-info a,
.portafolio .card__portafolio1 .card__portafolio3-info a,
.portafolio .card__portafolio2 .card__portafolio1-info a,
.portafolio .card__portafolio2 .card__portafolio2-info a,
.portafolio .card__portafolio2 .card__portafolio3-info a,
.portafolio .card__portafolio3 .card__portafolio1-info a,
.portafolio .card__portafolio3 .card__portafolio2-info a,
.portafolio .card__portafolio3 .card__portafolio3-info a {
  font-size: 30px;
  font-weight: 500;
  color: black;
  transition: 0.3s;
}
.portafolio .card__portafolio1 .card__portafolio1-info a:hover,
.portafolio .card__portafolio1 .card__portafolio2-info a:hover,
.portafolio .card__portafolio1 .card__portafolio3-info a:hover,
.portafolio .card__portafolio2 .card__portafolio1-info a:hover,
.portafolio .card__portafolio2 .card__portafolio2-info a:hover,
.portafolio .card__portafolio2 .card__portafolio3-info a:hover,
.portafolio .card__portafolio3 .card__portafolio1-info a:hover,
.portafolio .card__portafolio3 .card__portafolio2-info a:hover,
.portafolio .card__portafolio3 .card__portafolio3-info a:hover {
  transition: 0.3s;
  color: #062755;
}
.portafolio .card__portafolio1 .card__portafolio1-info .fa-brands,
.portafolio .card__portafolio1 .card__portafolio2-info .fa-brands,
.portafolio .card__portafolio1 .card__portafolio3-info .fa-brands,
.portafolio .card__portafolio2 .card__portafolio1-info .fa-brands,
.portafolio .card__portafolio2 .card__portafolio2-info .fa-brands,
.portafolio .card__portafolio2 .card__portafolio3-info .fa-brands,
.portafolio .card__portafolio3 .card__portafolio1-info .fa-brands,
.portafolio .card__portafolio3 .card__portafolio2-info .fa-brands,
.portafolio .card__portafolio3 .card__portafolio3-info .fa-brands {
  font-size: 30px;
  margin-left: 10px;
}

/*animacion del hover*/
.card__portafolio1:hover .card__portafolio1-info,
.card__portafolio2:hover .card__portafolio2-info,
.card__portafolio3:hover .card__portafolio3-info {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity 0.3s;
}

.card__portafolio1:hover,
.card__portafolio2:hover,
.card__portafolio3:hover {
  animation: remove-overflow 2s forwards;
}

.card__portafolio1:not(:hover),
.card__portafolio2:not(:hover),
.card__portafolio3:not(:hover) {
  animation: show-overflow 2s forwards;
}

.card__portafolio1:not(:hover) .card__portafolio1-info,
.card__portafolio2:not(:hover) .card__portafolio2-info,
.card__portafolio3:not(:hover) .card__portafolio3-info {
  animation: remove-data 1s forwards;
}

/*ANIMACIÓN DE TARJETAS*/
@keyframes show-data {
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}
@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}
@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-10rem);
  }
  100% {
    transform: translateY(0.5rem);
  }
}
@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }
  50% {
    overflow: hidden;
  }
}
/*MEDIA QUERIES*/
@media (max-width: 1337px) {
  #PORTAFOLIO {
    height: auto;
  }
}
@media (max-width: 450px) {
  .card__portafolio1 img,
  .card__portafolio2 img,
  .card__portafolio3 img {
    width: 260px !important;
  }
}
#TRABAJO {
  display: flex;
  height: auto;
  flex-direction: column;
  background-color: #ebeaea;
  padding: 20px 0;
}
#TRABAJO .h1-trabajo {
  color: #1766a3;
  font-size: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.trabajo {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.trabajo .trabajo-img {
  width: 300px;
  background-color: rgba(255, 255, 255, 0.87);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1), -2px 0 5px rgba(0, 0, 0, 0.1), 2px 0 5px rgba(0, 0, 0, 0.1); /* Sombra derecha */
  border-radius: 30px;
  border: 1px solid rgba(209, 213, 219, 0.3);
  margin: 20px;
  transition: 0.3s;
}
.trabajo .trabajo-img:hover {
  transition: 0.3s;
  transform: translateY(-10px); /* Mover la tarjeta hacia arriba */
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3); /* Cambiar la sombra */
}
.trabajo .trabajo-img a, .trabajo .trabajo-img img {
  width: 100%;
  height: 100%;
}

#TESTIMONIOS {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebeaea;
  flex-direction: column;
  height: auto;
  padding: 20px 4%;
}
#TESTIMONIOS .h1-testimonios {
  color: #1766a3;
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.testimonios {
  position: relative;
  max-width: 990px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.87);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1), -2px 0 5px rgba(0, 0, 0, 0.1), 2px 0 5px rgba(0, 0, 0, 0.1); /* Sombra derecha */
  border-radius: 30px;
  border: 1px solid rgba(209, 213, 219, 0.3);
}
.testimonios .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonios .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
}
.testimonios .slide p {
  text-align: center;
  padding: 0 100px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
.testimonios .slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}
.testimonios .slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonios .slide .details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.testimonios .slide .details .job {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}

/*SWIPPER BUTTON CSS*/
.nav-testi-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.nav-testi-btn :hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-testi-btn ::after,
.nav-testi-btn ::before {
  font-size: 20px;
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
  background-color: #4070f4;
}

@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }
  .nav-testi-btn {
    display: none;
  }
}
#CONTACTO {
  background-color: #ffffff;
  position: relative;
  /*CENTRADO CON GRILLAS MAS RAPIDO*/
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 20px 0;
}

/*CONT FORM DE CONT*/
.contactForm {
  position: relative;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  padding: 40px;
  width: 90%;
  height: 90%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.87);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1), -2px 0 5px rgba(0, 0, 0, 0.1), 2px 0 5px rgba(0, 0, 0, 0.1); /* Sombra derecha */
  border-radius: 30px;
  border: 1px solid rgba(209, 213, 219, 0.3);
  /*CONT DE INFO*/
}
.contactForm .form {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 85%;
  margin-left: 30px;
  /*TIT Y DESCRIP*/
}
.contactForm .form form {
  width: 100%;
  /*CAJAS DE TEXTO*/
}
.contactForm .form form .inputBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  /*ETIQUETAS E INPUTS*/
}
.contactForm .form form .inputBox label {
  color: #1766a3;
  font-weight: 700;
}
.contactForm .form form .inputBox input[type=text],
.contactForm .form form .inputBox input[type=email],
.contactForm .form form .inputBox textarea {
  border: none;
  background: #cbebfb;
  padding: 10px;
  border-radius: 15px;
  color: #1766a3;
  resize: none;
}
.contactForm .form form .inputBox input[type=text]:focus,
.contactForm .form form .inputBox input[type=email]:focus,
.contactForm .form form .inputBox textarea:focus {
  outline: 2px solid #1766a3;
}
.contactForm .form form input[type=submit] {
  background: #1766a3;
  display: inline-block;
  text-align: center;
  width: 250px;
  padding: 10px;
  border-radius: 15px;
  color: #fff;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 1px 9px 20px -5px rgba(0, 0, 0, 0.59);
  transition: 0.3s;
}
.contactForm .form form input[type=submit]:hover {
  background: #0b426c;
}
.contactForm .form .texto h2 {
  color: #1766a3;
  font-size: 2em;
  margin-bottom: 10px;
}
.contactForm .form .texto p {
  color: #0b426c;
  line-height: 1.5;
  margin-bottom: 20px;
}
.contactForm .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  /*REDES SOCIALES*/
}
.contactForm .info .imgBox {
  position: relative;
  width: 100%;
  height: 350px;
}
.contactForm .info .imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contactForm .info .textBox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.contactForm .info .textBox .infoContact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.contactForm .info .textBox .infoContact img {
  width: 80px;
}
.contactForm .info .textBox .infoContact .fa-solid {
  font-size: 2em;
  margin-right: 10px;
  color: #0b426c;
}
.contactForm .info .textBox .infoContact p {
  color: #0b426c;
  font-size: 18px;
  font-weight: bold;
}
.contactForm .info .rrss a {
  padding: 20px;
  font-size: 2em;
  color: #1766a3;
  transition: 0.3s;
}
.contactForm .info .rrss a :hover {
  color: #062755;
  transition: 0.3s;
}

/*BREAKPOINT*/
/*PANTALLAS LARGAS*/
@media only screen and (max-width: 1280px) {
  .contactForm {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
/*TABLETS*/
@media only screen and (max-width: 815px) {
  #CONTACTO {
    height: auto;
  }
  .contactForm {
    padding: 20px 80px !important;
  }
  .contactForm .info {
    height: auto;
    padding: 20px 10px 0px 10px;
  }
  .contactForm .info .imgBox {
    display: none;
  }
  .contactForm .info .textBox {
    align-items: center;
  }
}
/*CELULARES*/
@media only screen and (max-width: 600px) {
  .contactForm {
    padding: 0;
    gap: 0;
  }
  .contactForm .form {
    margin-left: 0px;
    width: 100%;
  }
  .infoContact {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
