﻿.container {
    width: 100%;
    max-width: 1000px;
    background-color: white;
    padding: 0 !important;
    border-radius: 15px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    margin-top: 1rem;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    padding: 2rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
    justify-content: center;
}

    .header .foto {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid white;
        margin-right: 2rem;
    }

        .header .foto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .header .info {
        flex: 1;
    }

    .header h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .header p {
        font-size: 16px;
    }

    .header .action-area {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

.content-area {
    padding: 3rem;
}

    .content-area h2 {
        color: #333;
        margin-bottom: .75rem;
    }

ul + h2 {
    margin-top: 1.75rem;
}

.content-area li + li {
    margin-top: .5rem;
}

.content-area p {
    font-size: 1rem;
    color: #666;
    margin: 0 !important;
}

.header p {
    color: #bbb;
}

.linkedin-link {
    text-decoration: none;
    font-size: 1.1rem;
}

    .linkedin-link:hover {
        text-decoration: none;
    }

    .linkedin-link i {
        margin-right: .25rem;
        font-weight: normal;
    }

@media (max-width: 768px) {
    .header {
        padding: 1.5rem;
    }

        .header .foto {
            width: 125px;
            height: 125px;
            margin-right: 1rem;
            border-width: 3px;
        }

    .content-area {
        padding: 2rem 1.5rem;
    }
}
