/* Estilos para páginas de profissionais */

/* Seção de perfil profissional */
.professional-profile {
    padding: 140px 0;
    background-color: #343732;
    position: relative;
    overflow: hidden;
}

.profile-image {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 366px;
    height: 366px;
    border: 1px solid #cdab7d;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.profile-image:hover::after {
    opacity: 1;
    width: 376px;
    height: 376px;
}

.profile-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border: 8px solid #cdab7d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.profile-image img:hover {
    transform: scale(1.02);
    border-color: #57ccc3;
    box-shadow: 0 15px 40px rgba(87,204,195,0.3);
}

.profile-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.profile-name {
    font-size: 2.5rem;
    color: #cdab7d;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-specialty {
    font-size: 1.2rem;
    color: #57ccc3;
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Seção de currículo */
.trat_single {
    padding: 0px 0;
    background-color: #343732;
}

.trat_single_content {
    max-width: 800px;
    margin: 0 auto;
}

.trat_single_title {
    margin-bottom: 30px;
    text-align: center;
}

.trat_single_title h2 {
    font-size: 2rem;
    color: #cdab7d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trat_single_text {
    line-height: 1.8;
    color: #e7e2e2;
}

.trat_single_text ul li {
    margin-bottom: 15px;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
    color: #e7e2e2;
    font-size: 16px;
}

.trat_single_text ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #57ccc3;
    font-size: 1.2em;
}

/* Responsividade */
@media (max-width: 991px) {
    .profile-info {
        text-align: center;
        padding-top: 0;
    }
    
    .profile-image img {
        width: 280px;
        height: 280px;
    }

    .profile-image::after {
        width: 296px;
        height: 296px;
    }

    .profile-image:hover::after {
        width: 306px;
        height: 306px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .professional-profile {
        padding: 40px 0;
    }
    
    .profile-image img {
        width: 220px;
        height: 220px;
    }

    .profile-image::after {
        width: 236px;
        height: 236px;
    }

    .profile-image:hover::after {
        width: 246px;
        height: 246px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-specialty {
        font-size: 1.1rem;
    }
}