@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #0f0f0f;
    color: #e0e0e0;
    -webkit-text-size-adjust: 100%;
}

/* Header */
.header-equipe {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-bottom: 2px solid #e67e22;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    margin: 0 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a.active { color: #e67e22; }

/* Grade */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 120px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.advogado-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(230, 126, 34, 0.3);
}

.advogado-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advogado-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.advogado-info h3 { font-family: 'Cinzel', serif; margin: 0; font-size: 18px; }
.advogado-info p { color: #e67e22; margin: 5px 0; font-size: 12px; font-weight: 600; }

/* Perfil Detalhado */
.perfil-secao {
    display: none;
    padding: 120px 20px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.btn-voltar {
    background: none;
    border: 1px solid #e67e22;
    color: #e67e22;
    padding: 8px 15px;
    cursor: pointer;
    margin-bottom: 30px;
    font-weight: bold;
}

.foto-perfil-flow {
    width: 320px;
    float: left;
    margin: 0 40px 20px 0;
    border: 1px solid #e67e22;
    padding: 5px;
    background: #1a1a1a;
}

.texto-perfil-flow h1 { font-family: 'Cinzel', serif; font-size: 32px; margin: 0; color: #fff; }
.cargo-premium { color: #e67e22; font-size: 18px; margin: 10px 0; font-weight: 600; }
.oab-premium, .email-premium { color: #bbb; font-size: 14px; display: block; margin-bottom: 5px; }

.titulo-bio {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 22px;
    margin-top: 30px;
    border-bottom: 1px solid #e67e22;
    padding-bottom: 10px;
}

.bio-texto { font-size: 16px; line-height: 1.8; color: #ccc; text-align: justify; }

/* AJUSTE IPHONE / MOBILE */
@media (max-width: 768px) {
    .header-equipe { height: 70px; }
    .nav-links a { font-size: 9px; margin: 0 5px; }
    .equipe-grid { padding-top: 100px; }
    
    .foto-perfil-flow {
        float: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
        display: block;
    }
    
    .texto-perfil-flow h1 { font-size: 24px; text-align: center; }
    .cargo-premium, .oab-premium, .email-premium { text-align: center; }
    .titulo-bio { text-align: center; }
}

.whatsapp-fixo {
    position: fixed; bottom: 20px; right: 20px;
    background: #25d366; color: white; width: 60px; height: 60px;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 30px; z-index: 9999; text-decoration: none;
}