

/*------------generales--------*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
i{
    color: #DB946A;
}
body{

   font-family: 'Catamaran', sans-serif;
}
h2{
    color: #494b4d;
    font-size: 24px;

 font-family: 'Merriweather', serif;
 
   font-weight: 700;/* bold */
}
.box-left{
    color: white;
    background-color:  #494b4d;
}
/*------------boton  print--------*/
/*------------botón imprimir--------*/
.boton-imprimir {
    transition: transform 0.6s ease, box-shadow 0.6s ease;

}

.boton-imprimir:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(219, 148, 106, 0.6);
}

main  ul li{
        list-style: none;
        border-top: 1px solid white;
        }
        .printerer{
            color:#DB946A;
        }
/*------------media print--------*/

.spinner {        
    border: 9px solid #494b4d;
    border-right-color: #DB946A;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color:#494b4d;
    transition: transform 0.5s ease;
}
.spinner:hover {
    transform: scale(1.07);
    color: #DB5C19;

}
/*-----experiencia profesional y academica--------*/
.box-flecha{
    margin-top: 30px;
    position: relative;
    display: block;
    width:180px;
    background-color: transparent;
}
.texto-flecha {
    display: block;
    border: 1px solid #DB946A;
    background-color:  #DB946A;
    color: black;
    padding: 10px;
    width: 60%;
}
.flecha{
    width: 0%;
    height: 0%;
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-left: 30px solid  #DB946A;
    position: absolute;
    top: 0px;
    right: 42px;
}
.circulo{
margin-top: 46px;
display: block;
    border: 7px solid black;
    border-radius: 100%;
    width: 5px;
}
.linea{
    height: 310px;
    width: 2px;
    background-color:black;
    display: inline-block;
    margin-left: 5px;
}
/* 📱 Para pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    .linea {
        height: 570px; /* aumenta la altura */
    }
}

/* 📱📱 Para pantallas muy pequeñas (por ejemplo, celulares chicos) */
@media (max-width: 480px) {
    .linea {
        height: 350px;
    }
}
.linea-dos{
    height: 50px;
    width: 2px;
    background-color:black;
    display: inline-block;
    margin-left: 5px;
}
/*------------software----------*/
.porcentaje{
    position: relative;
    width: 600px;
    background-color: red;
}
.medida{
    width: 50%;
    background-color: yellow;
}
.progress {
    background-color: #d5dce1;
    border-radius: 6px;
    height: 25px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 80%; /* ejemplo de porcentaje */
    height: 100%;
    background: linear-gradient(270deg, #494b4d, #6a6c6e, #494b4d);
    background-size: 200% 100%;
    transition: all 0.3s ease;
}

/* Al hacer hover, activa la animación */
.progress:hover .progress-bar {
    animation: moverGradiente 3s linear infinite;
    transform: scale(1.05);
}

@keyframes moverGradiente {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.nativo{
    background-color: #d5d0d0;
    width: 100px;
    height: 55px;
 
}
.intermedio{
    background-color:rgb(145, 145, 156);
    width: 100px;
    height: 120px;
}
.basico{
    background-color:#2C7A90;
    width: 100px;
    height: 160px;
}
.box-idiomas{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #2C7A90;
}
.idiomas div .box-idiomas{
    background-color: #d5d0d0;
}
.nativo{
    transition: transform 0.9s easy;
}
.nativo:hover{
    transform: scale(1.1);
}
.basico{
    transition: transform 0.9s easy;
}
.basico:hover{
    transform: scale(1.1);
}
.intermedio{
    transition: transform 0.9s easy;
}
.intermedio:hover{
    transform: scale(1.1);
}

/*------------media print--------*/
@media print{
    body{
        color: black !important;
        background-color: #fff !important;
    }
    .oculto{
        display: none !important;
    }
    img {
        filter: grayscale(100%);
        display: block;              /* permite centrar */
        margin: 0 auto;              /* centra horizontalmente */
        max-width: 150px;            /* ajusta el tamaño máximo */
        height: auto;                /* mantiene la proporción */
    }
    .spinner {
         border-right-color: grey;
    }
    h2{
        color: #000 !important;
    }
    button{
        display: none !important;
    }
    .perfil{
        border: 8px solid #000;
    }
    .flecha{
        border-left: 30px solid  #000;
    }
    .texto-flecha{
        border: 1px solid transparent;
    }
    i{
        color: #000;
    }
    .software{
        display: none;
    }
    .software-dos{
        display: none;
    }
    .box-right{
        margin-top: 0px;
        margin-left: 0px;
    }
}
/*------------fin media print--------*/       