.profile-card {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    margin: 20px;
}

.profile-card img {
    width: 100%;
    max-width: 350px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
    flex: 1;
}

.profile-info h2 {
    margin-bottom: 5px;
}

.profile-info h4 {
    color: #181a9a;
    margin-bottom: 10px;
}

.description {
    margin-bottom: 15px;
    color: #555;
}

.details p {
    font-size: 14px;
    text-align: justify;
    margin: 5px 0;
}

.skills {
    margin: 15px 0;
}

.skills span {
    display: inline-block;
    background: #181a9a;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 5px 5px 0 0;
    font-size: 12px;
}



.btn-1 {
    display: inline-block;
    background-color: #181a9a;
    margin-top: 20px;
    margin-bottom: 60px;
    padding: 15px 25px;
    color: #ffffff;
    border-radius: 10px;
}

.btn-1:hover {
    background-color: #919191;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
    }

    .profile-card img {
        max-width: 100%;
    }
}
