/* Estilos para a página de perfil */
.page-title {
    text-align: center;
    margin-bottom: 20px;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
}

.profile-container {
    padding: 0 15px 80px;
}

/* Cabeçalho do perfil */
.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.profile-title {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.profile-creci {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.profile-rating {
    display: flex;
    align-items: center;
}

.profile-rating i {
    color: #FFD700;
    margin-right: 2px;
    font-size: 14px;
}

.profile-rating span {
    font-size: 14px;
    color: var(--gray-color);
    margin-left: 5px;
}

/* Biografia */
.profile-bio {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.profile-bio h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.profile-bio p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Métodos de contato */
.contact-methods, .social-media {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.contact-methods h3, .social-media h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-buttons, .social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-btn, .social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover, .social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn i, .social-btn i {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-btn span, .social-btn span {
    font-size: 14px;
    font-weight: 500;
}

/* Cores específicas para cada botão de contato */
.contact-btn.phone {
    background-color: #4CAF50;
    color: white;
}

.contact-btn.email {
    background-color: #2196F3;
    color: white;
}

.contact-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.contact-btn.line {
    background-color: #00B900;
    color: white;
}

/* Cores específicas para cada botão de rede social */
.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.social-btn.facebook {
    background-color: #1877F2;
    color: white;
}

.social-btn.linkedin {
    background-color: #0077B5;
    color: white;
}

.social-btn.twitter {
    background-color: #1DA1F2;
    color: white;
}

/* Estatísticas */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
}

/* Responsividade */
@media (min-width: 768px) {
    .profile-container {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .contact-buttons, .social-buttons {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .profile-rating {
        justify-content: center;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
    }
} 