/* =========================================
   ESTILOS EXCLUSIVOS DA PÁGINA SOBRE MIM
   ========================================= */

/* Reutilizando o header cinza (padrão criado no contato.css) */
.page-header {
    background-color: #e9e9e9;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.page-header h1 {
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.page-header p { color: var(--text-light); font-size: 1.1rem; }

/* --- SEÇÃO DA BIOGRAFIA --- */
.bio-section {
    padding: 80px 0;
    background-color: var(--white);
}

.bio-grid {
    display: grid;
    /* Coluna da foto fixa em 400px, texto ocupa o resto */
    grid-template-columns: 450px 1fr; 
    gap: 80px;
    align-items: center; /* Centraliza verticalmente se o texto for curto, ou topo se longo */
}

/* Foto com Moldura */
.photo-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.photo-frame::before {
    /* Detalhe decorativo (borda deslocada) */
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    z-index: -1;
    border-radius: 8px;
    display: none; /* Ativar se quiser um efeito gráfico */
}
.photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.photo-frame:hover img { transform: scale(1.03); }

/* Conteúdo de Texto */
.bio-text-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.2;
}
.subtitle {
    font-size: 1.1rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.divider-left {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.text-body p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    text-align: justify; /* Alinhamento justificado para elegância */
    line-height: 1.8;
}

/* Citação em destaque */
.highlight-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #333;
    font-size: 1.1rem;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

/* Assinatura */
.signature-area {
    margin-top: 40px;
}
.signature-area p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}
/* Fonte manuscrita simulada (ou usar uma webfont como 'Dancing Script') */
.signature-font {
    font-family: 'Montserrat', sans-serif; /* Fallback */
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic; /* Simula assinatura */
}

/* --- SEÇÃO EXTRA: FILOSOFIA --- */
.philosophy-section {
    background-color: #f8f5f2; /* Um bege bem clarinho */
    padding: 80px 0;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.phil-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.phil-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}
.phil-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}
.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .bio-grid {
        grid-template-columns: 1fr; /* Empilha foto e texto */
        gap: 50px;
    }
    .photo-frame {
        max-width: 400px;
        margin: 0 auto;
    }
    .bio-text-content {
        text-align: center; /* Centraliza tudo no mobile */
    }
    .divider-left {
        margin: 0 auto 30px auto; /* Centraliza divisor */
    }
    .text-body p {
        text-align: left; /* Mantém legibilidade */
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}