/* CSS para Página Individual do Profissional - Plugin WordPress - DESIGN MODERNO */

/* Reset CSS para remover estilos do tema */
.pc-single-profissional * {
    box-sizing: border-box;
}

/* Remover qualquer cabeçalho do tema */
.pc-single-profissional header, 
.pc-single-profissional .header, 
.pc-single-profissional .site-header, 
.pc-single-profissional .main-header, 
.pc-single-profissional .top-bar, 
.pc-single-profissional .navigation {
    display: none !important;
}

/* Container principal com design moderno */
.pc-single-profissional {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Botões de Navegação com design elegante */
.pc-botoes-navegacao {
    text-align: center;
    margin: 0;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pc-botao-voltar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block !important;
    margin: 0 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.pc-botao-voltar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pc-botao-voltar:hover::before {
    left: 100%;
}

.pc-botao-voltar:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white !important;
    text-decoration: none;
}

/* Header do Profissional com design premium */
.pc-header-profissional {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 40px;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.pc-header-profissional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.pc-foto-profissional {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.pc-foto-profissional:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.pc-foto-profissional img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.pc-nome-profissional {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.pc-btn-mensagem {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: inline-block;
}

.pc-btn-mensagem::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pc-btn-mensagem:hover::before {
    left: 100%;
}

.pc-btn-mensagem:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Seções de Conteúdo com design moderno */
.pc-secao {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    margin: 40px 20px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pc-secao:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.pc-secao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pc-secao h3 {
    color: #2d3748;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    letter-spacing: -0.01em;
}

.pc-secao h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.pc-texto {
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.2em;
    text-align: justify;
    font-weight: 400;
}

.pc-texto p {
    margin-bottom: 20px;
}

.pc-texto p:last-child {
    margin-bottom: 0;
}

/* Botão WhatsApp com design premium */
.pc-botao-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 22px 45px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.pc-botao-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pc-botao-whatsapp:hover::before {
    left: 100%;
}

.pc-botao-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

/* Animações de entrada */
.pc-secao {
    animation: slideInUp 0.8s ease-out;
}

.pc-header-profissional {
    animation: fadeInDown 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade melhorada */
@media (max-width: 1024px) {
    .pc-single-profissional {
        padding: 0;
    }
    
    .pc-header-profissional {
        padding: 60px 30px;
    }
    
    .pc-nome-profissional {
        font-size: 3em;
    }
    
    .pc-secao {
        margin: 30px 15px;
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .pc-header-profissional {
        padding: 50px 20px;
    }
    
    .pc-foto-profissional {
        width: 150px;
        height: 150px;
    }
    
    .pc-nome-profissional {
        font-size: 2.5em;
    }
    
    .pc-secao {
        margin: 20px 10px;
        padding: 40px 30px;
    }
    
    .pc-secao h3 {
        font-size: 1.8em;
    }
    
    .pc-texto {
        font-size: 1.1em;
    }
    
    .pc-botao-voltar {
        padding: 15px 30px;
        font-size: 14px;
        margin: 5px;
    }
    
    .pc-btn-mensagem {
        padding: 18px 35px;
        font-size: 16px;
    }
    
    .pc-botao-whatsapp {
        padding: 20px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pc-header-profissional {
        padding: 40px 15px;
    }
    
    .pc-foto-profissional {
        width: 120px;
        height: 120px;
    }
    
    .pc-nome-profissional {
        font-size: 2em;
    }
    
    .pc-secao {
        margin: 15px 5px;
        padding: 30px 20px;
    }
    
    .pc-secao h3 {
        font-size: 1.6em;
    }
    
    .pc-texto {
        font-size: 1em;
    }
}
