.profile-info{
  /*  margin-bottom: 25px;*/
    max-width: 95%;
    margin: 0 auto;
    
}



.profile-img{
    width: 80%;
    max-width: 350px;
}


.profile-img-section{
    position: relative; /*relativo y en profile-img-line absolute */
}
.profile-img-line{
    background-color: var(--secundary-color);
    height: 15px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;

}

.profile{
    text-align: center;
}

.profile-title{
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: var(--primary-color);
    margin-bottom: 15px;
}


.profile-btn{
    background-color: var(--navbar-shallow-color);
    color: var(--text-color-inverse);
    border: none;
    font-size: 15px;
    padding: 0.5em 1em;
   
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
   
}

.profile-btn:hover{
    filter: brightness(130%);
}

.profile-details{
    font-size: 20px;
    margin: 30 0;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
}


.profile-details-div{
    margin-bottom: 0px;
    padding: 0.5em 1em;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
   
    border-radius: 5px;
    padding: 0.5em 0.7em;
    margin: 10px;
    border: 1px solid var(--profile-border-color);

    background-color: var(--profile-suave-color);

}


/*********tablas**************/
  table {
    border-collapse: collapse;
    width: 100%;
  }
  th, td {
    padding: 0.25rem;
    text-align: left;
    border: 1px solid #ccc;
  }
  tbody tr:nth-child(odd) {
    background: #eee;
  }

/*****************/
@media(min-width:950px){

    /*
    body{
        padding-top: 180px;
    }*/

    .profile-info{
        margin-bottom: 0px;
        padding: 0.5em 1em;
        font-size: 20px;
        font-weight: 500;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
        border-radius: 10px;
        padding: 0.5em 0.7em;
      /*  margin: 10px;*/
        margin: 0 auto; 
    }


   


    .profile-details-div{
        margin-bottom: 0px;
        padding: 0.5em 1em;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
       
        border-radius: 5px;
        padding: 0.5em 0.7em;
        margin: 10px;
        border: 1px solid var(--profile-border-color);

        background-color: var(--profile-suave-color);

    }
    
    
    
    .profile-img{
        width: 80%;
        max-width: 350px;
    }
    
    
    .profile-img-line{
        background-color: var(--secundary-color);
        height: 15px;
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
    
    }
    
    .profile{
        text-align: left;
        display: flex;
        justify-content: space-between;/*espacio separado entre elementos*/
        
        max-width: 980px;
        margin: 0 auto;
        align-items: center;
    }

    .profile-tit{
        display: flex;
        justify-content: space-between;/*espacio separado entre elementos*/
        margin-bottom: 10px;
    }
    
    .profile-title{
        font-size: 20px;
       
    }
    
    .profile-details{
        font-size: 20px;
        margin: 30 0;
        display: flex;
        justify-content:center;
    }


    .profile-btn{        
        font-size: 15px;
        
    }
    
    .profile-btn:hover{
        filter: brightness(130%);
    }


}