@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;300;400;600;800&display=swap');
*{
    box-sizing: border-box;
    font-family: 'Work Sans';
    margin: 0;
    padding: 0;
}
html{
    /* me permite deslizar cuando hago clic en los links del menu */
    scroll-behavior: smooth;
}
/* MENU */
.contenedor-header{
    background: #031540;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
.contenedor-header header{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.contenedor-header header .logo a{
    font-family: 'Righteous';
    font-size: 36px;
    color: #00abf0;
    text-decoration: none;
}
.contenedor-header header ul{
    display: flex;
    list-style: none;
}
.contenedor-header header nav ul li a{
    text-align: none;
    color: #fff;
    margin: 0 15px;
    padding: 3px;
    transition: .5s;
    text-decoration: none;
}
.contenedor-header header nav ul li a:hover{
    color: #149279;
}
.nav-responsive{
    background-color: #00abf0;
    color:#fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}
/* SECCION I N I C I O */
.inicio{
    background: linear-gradient(to top, #031540, #031540);
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
}
.inicio .contenido-banner{
    padding: 20px;
    background-color: #000f2c;
    max-width: 350px;
    margin: auto;
    text-align: center;
    border-radius: 40px;
    box-shadow: 0px 0px 20px 5px rgba(0, 180, 111, 0.5);
}
.inicio .contenido-banner img{
    margin-top: 40px;
    border: 10px solid #fafafa;
    display: block;
    width: 80%;
    margin: auto;
    border-radius: 100%;
}
.inicio .contenido-banner h1{
    margin-top: 40px;
    font-size: 42px;
    text-shadow: -1px -1px 0px #000, 7px 7px 0px #000, 9px 9px 0px #00abf0;
    font-family: 'Righteous';
}
h1 {
  margin-bottom: 20px; /* Ajusta el valor según el espacio que desees */
}
.slogan {
  font-family: "Caveat", cursive;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fafafa; /* Cambia #FF0000 al código de color que desees */
}
.slogan span{
  font-family: "Caveat", cursive;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #00abf0; /* Cambia #FF0000 al código de color que desees */
}
.inicio .contenido-banner .redes a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 5px 5px;
    font-size: 20px;
    transition: .3s;
}
.inicio .contenido-banner .redes a:hover{
    background-color: #149279;
}
.sobremi{
    background-color: #031540;
    color: #fff;
    padding: 50px 20px;
}
.sobremi .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.sobremi h2{
    font-size: 48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;
}
.sobremi h2 .sobre {
  color: #00abf0; /* Color para "SOBRE" */
  text-shadow: -1px -1px 0px #000, 7px 7px 0px #000, 9px 9px 0px #fafafa;
}

.sobremi h2 .mi {
  color: #fafafa; /* Color para "MÍ" */
  text-shadow: -1px -1px 0px #000, 7px 7px 0px #000, 9px 9px 0px #00abf0;
}
.sobremi .contenido-seccion p{
    font: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}
.sobremi .contenido-seccion p span{
    color: #1CB698;
    font-weight: bold;
}
.sobremi .fila{
    display: flex;
}
.sobremi .fila .col
{
    width: 50%;
}
.sobremi .fila .col h3{
    font-size: 28px;
    font-family: 'Righteous';
    margin-bottom: 25px;
}
.sobremi .fila .col ul{
    list-style: none;
}
.sobremi .fila .col ul li{
    margin: 12px 0;
}
.sobremi .fila .col ul li strong{
    display: inline-block;
    color: #00abf0;
    width: 130px;
}
.sobremi .fila .col ul li span{
    background-color: #00abf0;
    padding: 3px;
    font-weight: bold;
    border-radius: 5px;
}
.sobremi .fila .col .contenedor-intereses{
    display: flex;
    flex-wrap: wrap;
}
.sobremi .fila .col .contenedor-intereses .interes{
    width: 150px;
    height: 100px;
    background-color: #000f2c;
    border-radius: 10px;
    margin: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}.sobremi .fila .col .contenedor-intereses .interes:hover{
    background-color: #1CB698;
}
.sobremi .fila .col .contenedor-intereses .interes i{
    font-size: 30px;
    margin-bottom: 10px;
}
.sobremi button{
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #00abf0;
    width: fit-content;
    display: block;
    margin: 20px auto;
    padding: 10px 22px;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 10;
    border-radius: 25px;
}
.sobremi button .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #00abf0;
    z-index: -1;
    transition: 1s;
    border-radius: 25px;
}
.sobremi button:hover .overlay{
    width: 100%;
}
/* SECCION S K I L L S */
.skills{
    background-color: #031540;
    color: #fff;
    padding: 50px 20px;
}
.skills .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.skills h2{
    font-size: 48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;
}
.skills h2 .sobre {
  color: #00abf0; /* Color para "SOBRE" */
  text-shadow: -1px -1px 0px #000, 7px 7px 0px #000, 9px 9px 0px #fafafa;
}

.skills h2 .mi {
  color: #fafafa; /* Color para "MÍ" */
  text-shadow: -1px -1px 0px #000, 7px 7px 0px #000, 9px 9px 0px #00abf0;
}
.col h3 {
  color: #00abf0; /* Cambia "blue" al color que desees */
}
.skills .fila{
    display: flex;
}
.skills .fila .col{
    width: 50%;
    padding: 0 20px;
}
.skills .fila .col h3{
    font-size: 28px;
    font-family: 'Righteous';
    margin-bottom: 25px;
}
.skills .skill > span{
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.skills .skill .barra-skill{
    height: 8px;
    width: 80%;
    background-color: #fff;
    position: relative;
    margin-bottom: 30px;
}
.skills .skill .progreso{
    background-color: #00abf0;
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
}
.skills .skill .barra-skill span{
    position: absolute;
    height: 40px;
    width: 40px;
    background-color: #00abf0;
    border-radius: 50px;
    line-height: 40px;
    text-align: center;
    top: -17px;
    right: -15px;
    font-size: 14px;
}
/* Estas clases se agregaran dinamicamente mediante javascript */
.skills .skill .javascript{
    width: 0%;
    animation: 2s javascript forwards;
}
@keyframes javascript {
    0%{width: 0%;}
    100%{width: 40%;}
}

.skills .skill .htmlcss{
    width: 0%;
    animation: 2s htmlcss forwards;
}
@keyframes htmlcss {
    0%{width: 0%;}
    100%{width: 50%;}
}

.skills .skill .photoshop{
    width: 0%;
    animation: 2s photoshop forwards;
}
@keyframes photoshop {
    0%{width: 0%;}
    100%{width: 40%;}
}

.skills .skill .wordpress{
    width: 0%;
    animation: 2s wordpress forwards;
}
@keyframes wordpress {
    0%{width: 0%;}
    100%{width: 90%;}
}

.skills .skill .figma{
    width: 0%;
    animation: 2s figma forwards;
}
@keyframes figma {
    0%{width: 0%;}
    100%{width: 80%;}
}
.skills .skill .flutter{
  width: 0%;
  animation: 2s flutter forwards;
}
@keyframes flutter {
  0%{width: 0%;}
  100%{width: 85%;}
}

.skills .skill .mysql{
    width: 0%;
    animation: 2s mysql forwards;
}
@keyframes mysql {
    0%{width: 0%;}
    100%{width: 50%;}
}

.skills .skill .gitHub{
    width: 0%;
    animation: 2s gitHub forwards;
}
@keyframes gitHub {
    0%{width: 0%;}
    100%{width: 55%;}
}

.skills .skill .postman{
    width: 0%;
    animation: 2s postman forwards;
}
@keyframes postman {
    0%{width: 0%;}
    100%{width: 40%;}
}

.skills .skill .sqlserver{
    width: 0%;
    animation: 2s sqlserver forwards;
}
@keyframes sqlserver {
    0%{width: 0%;}
    100%{width: 40%;}
}

.skills .skill .firebase{
    width: 0%;
    animation: 2s firebase forwards;
}
@keyframes firebase {
    0%{width: 0%;}
    100%{width: 50%;}
}
.skills .skill .dbeaver{
  width: 0%;
  animation: 2s dbeaver forwards;
}
@keyframes dbeaver {
  0%{width: 0%;}
  100%{width: 50%;}
}
/*SECCIÓN PORTAFOLIO*/
.containerpor{
    position: relative;
    width: 100%;
    min-height: 50vh;
    padding: 2rem;
    background-color: #031540;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }
  
  .container__card {
    width: calc(33.33% - 40px);
    max-width: 400px;
    height: 85%;
    background-color: #000f2c;
    border-radius: 35px;
    transition: 400ms all ease;
    box-shadow: 10px 10px 16px -5px #000000bf;
    -webkit-box-shadow: 10px 10px 16px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 16px -5px rgba(0, 0, 0, 0.75);
  }
  @media (max-width: 768px) {
    .containerpor {
      flex-direction: column; /* Cambiar a disposición de columna en pantallas más pequeñas */
      align-items: center; /* Centrar elementos en pantallas más pequeñas */
    }
    .container__card {
      width: calc(100% - 40px); /* Cambiar a 2 cartas por fila en pantallas medianas */
    }
    
    @media (max-width: 480px) {
      .container__card {
        width: calc(100% - 40px); /* Cambiar a 1 carta por fila en pantallas pequeñas */
      }
    }
  }
  .container__card:hover {
    transform: translateY(-4%);
    box-shadow: 10px 10px 16px -5px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 16px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 16px -5px rgba(0, 0, 0, 0.75);
  }
  
  .container__card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
  }
  .subcontainer {
    display: flex;
    color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .container__title {
    width: 80%;
    font-weight: bold;
    color: #1abc9c;
    margin-top: 10px;
    font-size: 2em;
  }
  .container__subtitle {
    width: 80%;
    font-weight: bold;
    color: #00abf0;
  }
  .container__description {
    margin-top: 10px;
    width: 80%;
  }
  .button {
    text-decoration: none;
    margin-top: 10px;
    padding: 15px;
    padding-left: 70px;
    padding-right: 70px;
    font-weight: bold;
    border-radius: 2em;
    background-color: #1abc9c;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    margin-bottom: 35px;
  }
  .button:hover {
    transform: translateX(3%);
    box-shadow: 10px 10px 16px -5px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 16px -5px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 16px -5px rgba(0, 0, 0, 0.75);
  }

/* PRUEBAS APP MOVIL */
  .container5{
    position: relative;
    min-height: 40vh;
    background: #031540;
}
.container5 h1{
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 40;
    font-weight: normal;
}
.container5 .video-container{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}
.container5 .video-container .video{
    height: 250px;
    width: 350px;
    border: 5px solid #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .7);
    cursor: pointer;
    overflow: hidden;
}
.container5 .video-container .video video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}
.container5 .video-container .video:hover video{
    transform: scale(1.1);
}
.container5 .popup-video{
    position: fixed;
    top: 0; left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .8);
    height: 100%;
    width: 100%;
    display: none;
}
.container5 .popup-video video{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    border-radius: 5px;
    border: 3px solid #fff;
    object-fit: cover;
}
.container5 .popup-video span{
    position: absolute;
    top: 5px; right: 20px;
    font-size: 50px;
    color: #fff;
    font-weight: bolder;
    z-index: 100;
    cursor: pointer;
}
@media (max-width:768px){
    .container5 .popup-video video{
        width: 95%;
    }

}
/* SECCION CURRICULUM */
.curriculum{
    background-color: #031540;
    color: #fff;
    padding: 50px 20px;
}
.curriculum .contenido-seccion{
    max-width: 1100px;
    margin: auto;
}
.curriculum h2{
    font-size: 48px;
    font-family: 'Righteous';
    text-align: center;
    padding: 20px 0;

}
.curriculum .fila{
    display: flex;
    justify-content: space-between;
}
.curriculum .fila .col{
    width: 49%;
    padding: 0 20px;
}
.curriculum .fila .col h3{
    font-size: 28px;
    font-family: 'Righteous';
    margin-bottom: 25px;
}
.curriculum .fila .izquierda{
    border-right: 2px solid #1CB698;
}
.curriculum .fila .derecha{
    border-left: 2px solid #1CB698;
}
.curriculum .fila .item{
    padding: 25px;
    margin-bottom: 30px;
    background-color: #000f2c;
    position: relative;
}
.curriculum .fila .item h4{
    font-size: 20px;
    margin-bottom: 10px;
}
.curriculum .fila .item .casa{
    color: #1CB698;
    font-size: 22px;
    font-weight: bold;
    display: block;
}
.curriculum .fila .item .fecha{
    display: block;
    color: #1CB698;
    margin-bottom: 10px;
}
.curriculum .fila .item p{
    line-height: 24px;
}
.curriculum .fila .izq{
    border-right: 2px solid #1CB698;
    margin-right: 20px;
}
.curriculum .fila .der{
    border-left: 2px solid #1CB698;
    margin-left: 20px;
}
.curriculum .fila .item .conectori{
    height: 2px;
    background-color: #1CB698;
    width: 47px;
    position: absolute;
    top: 50%;
    right: -47px;
    z-index: 5;
}
.curriculum .fila .item .conectori .circuloi{
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #1CB698;
    float: right;
    position: relative;
    bottom: 4px;
}
.curriculum .fila .item .conectord{
    height: 2px;
    background-color: #1CB698;
    width: 47px;
    position: absolute;
    top: 50%;
    left: -47px;
    z-index: 5;
}
.curriculum .fila .item .conectord .circulod{
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #1CB698;
    float: left;
    position: relative;
    bottom: 4px;
}
/* SECCION PORTFOLIO */
/* SECCION CONTACTO */
.containercon {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 2rem;
    background-image: url(img/contact_bg.png);
    background-color: #031540;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgb(17, 216, 156);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form {
    background-color: #1abc9c;
    position: relative;
  }
  .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #149279);
    position: absolute;
  }
  .circle.one {/*estilo de circulo dentro del formulario*/
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
  }
  .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
  }
  .contact-form:before {/*darle un recorte arriba de divicion*/
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #1abc9c;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }
  form {/*darle un recorte abajo de divicion*/
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }
  .titleconct {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
  }
  .input-container {
    position: relative;
    margin: 1rem 0;
  }
  .inpux {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
  }
  textarea.inpux {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
  }
  .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }
  .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
  }
  .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #1abc9c;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
  }
  .btn:hover {
    background-color: transparent;
    color: #fff;
  }
  .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
  }
  .input-container span:before,
  .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #1abc9c;
    top: 50%;
    transform: translateY(-50%);
  }
  .input-container span:before {
    left: 50%;
  }
  
  .input-container span:after {
    right: 50%;
  }
  
  .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
  }
  .input-container.focus span:before,
  .input-container.focus span:after {
    width: 50%;
    opacity: 1;
  }
  
  .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
  }
  
  .contact-info .titleconct {
    color: #1abc9c;
  }
  .text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
  }
  
  .information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
  }
  
  .icon {
    width: 28px;
    margin-right: 0.7rem;
  }
  
  .social-media {
    padding: 2rem 0 0 0;
  }
  
  .social-media p {
    color: #333;
  }
  
  .social-icons {
    display: flex;
    margin-top: 0.5rem;
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #1abc9c, #149279);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
  }
  
  .social-icons a:hover {
    transform: scale(1.05);
  }
  .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #1abc9c;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
  }
  
  .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1abc9c, #1abc9c);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
  }
  .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #031540;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
  }
  @media (max-width: 850px) {
    .form {
      grid-template-columns: 1fr;
    }
  
    .contact-info:before {
      bottom: initial;
      top: -75px;
      right: 65px;
      transform: scale(0.95);
    }
  
    .contact-form:before {
      top: -13px;
      left: initial;
      right: 70px;
    }
  
    .square {
      transform: translate(140%, 43%);
      height: 350px;
    }
  
    .big-circle {
      bottom: 75%;
      transform: scale(0.9) translate(-40%, 30%);
      right: 50%;
    }
  
    .text {
      margin: 1rem 0 1.5rem 0;
    }
  
    .social-media {
      padding: 1.5rem 0 0 0;
    }
  }
  .confirmation-container {
    background-color: #00abf0; /* Color de fondo */
    border: 1px solid #00abf0; /* Borde */
    padding: 15px; /* Espaciado interno */
    margin-top: 20px; /* Margen superior */
    border-radius: 5px; /* Borde redondeado */
    text-align: center; /* Centrar el texto */
}

/* Estilos para el mensaje de confirmación */
.confirmation-message {
    color: #fafafa; /* Color del texto */
    font-weight: bold; /* Negrita */
}
.error-container {
  background-color: #f2dede; /* Color de fondo */
  border: 1px solid #ebccd1; /* Borde */
  padding: 15px; /* Espaciado interno */
  margin-top: 20px; /* Margen superior */
  border-radius: 5px; /* Borde redondeado */
  text-align: center; /* Centrar el texto */
}

/* Estilos para el mensaje de error */
.error-message {
  color: #a94442; /* Color del texto */
  font-weight: bold; /* Negrita */
}
/* -----------------------------------------------*/
  @media (max-width: 480px) {
    .container {
      padding: 1.5rem;
    }
  
    .contact-info:before {
      display: none;
    }
    
  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }
  .title {
    font-size: 1.15rem;
  }
  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}
footer{
    background-color: #000f2c;
    color: #fff;
    padding: 50px 0 30px 0;
    text-align: center;
    position: relative;
    width: 100%;
}
footer .redes{
    margin-bottom: 20px;
}
footer .redes a{
    color: #fff;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 40px 5px;
    font-size: 20px;
    transition: .3s;
}
footer .arriba{
    display: block;
    width: 50px;
    height: 50px;
    background-color: #00abf0;
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
    border-radius: 50%;
    line-height: 50px;
    font-size: 18px;
}
/* SECCION RESPONSIVE */
@media screen and (max-width:980px){
    nav{
        display: none;
    }
    .nav-responsive{
        display: block;
    }
    nav.responsive{
        display: block;
        position: absolute;
        right: 0;
        top: 75px;
        background-color: #00abf0;
        width: 180px;
    }
    nav.responsive ul{
        display: block !important;
    }
    nav.responsive ul li{
        border-bottom: 1px solid #fafafa;
        padding: 10px 0;
    }
}
@media screen and (max-width:700px){
    .sobremi .fila{
        display: block;
    }
    .sobremi .fila .col{
        width: fit-content;
    }

    .skills .fila{
        display: block;
    }
    .skills .fila .col{
        width: 100%;
    }
    .skills .fila .col .barra-skill{
        width: 100%;
    }

    .curriculum .fila{
        display: block;
    }
    .curriculum .fila .col{
        width: 90%;
    }
    .curriculum .fila .derecha{
        margin-left: 20px;
    }

    .portfolio .galeria{
        display: block;
        width: 100%;
    }
    .portfolio .galeria .proyecto{
        max-width: 100%;
    }
    .portfolio .galeria .proyecto img{
        width: 100%;
    }
    .contacto .fila{
        display: block;
    }
    .contacto .fila .col{
        width: 100%;
    }
}
