#leiloeiro-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    margin: auto;
}

#leiloeiro-container-imagem {
    width: 37%;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 50px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

#leiloeiro-about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#leiloeiro-profile-info {
    display: flex;
    flex: 1;
    width: 1500px;
    align-items: center;
    padding: 0 20px;
}

@media screen and (max-width: 425px) {
    #leiloeiro-profile-info {
        flex-direction: column;
        width: 100%;
    }

    #leiloeiro-container-imagem {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
    }

    #leiloeiro-content-profile {
        width: 100% !important;
    }

    #leiloeiro-profile-name {
        font-size: 2em !important;
    }

    #leiloeiro-profile-text {
        font-size: 1.2em !important;
    }

    #leiloeiro-profile-list li strong,
    #span-leiloeiro-perfil,
    #leiloeiro-profile-url {
        font-size: 1.2em !important;
    }

    #h2-matriculas {
        font-size: 2em !important;
    }

    #matriculas {
        flex-direction: column;
        align-items: center;
    }
}

#leiloeiro-content-profile {
    width: 60%;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

#leiloeiro-profile-name {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

#leiloeiro-profile-list {
    list-style: none;
    padding: 0;
}

#leiloeiro-profile-list li {
    margin-bottom: 10px;
}

#leiloeiro-profile-list li strong,
#span-leiloeiro-perfil {
    font-weight: bold;
    font-size: 1.5em;
}

#leiloeiro-profile-url {
    text-decoration: none;
    margin-left: 10px;
    font-size: 1.5em;
    color: #032c35;
}

#leiloeiro-profile-url:hover {
    color: #021e28;
}

#leiloeiro-profile-list li #span-leiloeiro-perfil {
    margin-left: 10px;
}

#matriculas {
    margin-bottom: 60px;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

#leiloeiro-titulo-matriculas {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

#leiloeiro-titulo-matriculas #h2-matriculas {
    font-size: 2.5em;
    font-weight: bold;
}

#no-matriculas {
    margin-top: 20px;
    font-style: italic;
    font-size: 16px;
    font-weight: bold;
}

#leiloeiro-profile-text {
    text-align: justify;
    font-size: 1.5em;
}

#url-matricula {
    display: block;
    width: 250px;
    margin: 10px;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    color: white;
    border: none;
    border-radius: 12px;
    background-color: #032c35;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

#url-matricula:hover {
    background-color: #021e28;
    transform: translateY(3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

#url-matricula a {
    font-size: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.4s linear;
}