body{
    background: linear-gradient(180deg, #6f85ff 0%, #cad1f8 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.main{
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a237e 100%);
    border-radius: 40px;
    padding: 3rem 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 40px;
    pointer-events: none;
}


.apresentacao{
    font-family: "Nunito", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.descricao{
    font-family: "Nunito", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.fotoPrincipal{
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    padding: 30px;
    padding-right: 30px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.fotoPrincipal:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.main-cabeca {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

h4{
    font-family: "Nunito", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.RedesSociais{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "Nunito", sans-serif;
    width: 3rem;
    height: 3rem;
    transition: all 0.3s ease;
}

.RedesSociais:hover{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #1a237e;
}

/* Responsividade para telas menores */
@media (max-width: 900px) {
    .main {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1.5rem;
        max-width: 95vw;
    }
    .fotoPrincipal {
        max-width: 250px;
        padding: 15px;
    }
    .main-cabeca {
        align-items: center;
        text-align: center;
    }
    .descricao {
        max-width: 90vw;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .main {
        padding: 1rem 0.5rem;
        border-radius: 20px;
        margin: 1rem auto;
    }
    .apresentacao {
        font-size: 1.5rem;
    }
    .descricao {
        font-size: 1rem;
    }
    .fotoPrincipal {
        max-width: 150px;
        padding: 8px;
    }
    .RedesSociais {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.2rem;
    }
}