﻿/* ==========================================================================
   Container Principal do Header
   ========================================================================== */
.headerInfopessoal {
    background: url('../../Imagens/header_bkg.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    min-height: 375px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/* Container Flex que divide Esquerda (Foto/Idade) e Direita (Textos) */
.container-flex-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 95%;
    max-width: 1100px;
    gap: 40px;
}

/* ==========================================================================
   BLOCO DA ESQUERDA: FOTO E IDADE
   ========================================================================== */
.area-perfil-lateral {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 160px;
}

.Foto {
    width: 150px;
    height: 200px;
    border: 3px solid white;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.idade-destaque {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ==========================================================================
   BLOCO DA DIREITA: TEXTOS E LINKS (Onde estava o problema)
   ========================================================================== */
.info-content-direita {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.InformacoesPessoais {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.divContatoNome {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* CORREÇÃO DO LINK DO LINKEDIN: 
   Garante que o link seja branco mesmo se já tiver sido visitado */
.info-content-direita a,
.info-content-direita a:visited {
    color: #ffffff !important;
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

    .info-content-direita a:hover {
        opacity: 1;
        color: #ffffff !important;
        text-decoration: none; /* Remove o sublinhado ao passar o mouse para dar feedback visual */
    }

/* ==========================================================================
   OUTROS ELEMENTOS
   ========================================================================== */

/* Estilo para a área de contatos (quando clicado em Ver Contatos) */
#divContatoExibe {
    background: rgba(0, 0, 0, 0.2); /* Um pouco mais escuro para destaque */
    padding: 15px;
    border-radius: 8px;
    margin: 5px 0;
}

/* ==========================================================================
   RESPONSIVIDADE (Ajuste para Celular)
   ========================================================================== */
@media (max-width: 650px) {
    .container-flex-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .area-perfil-lateral {
        margin-bottom: 20px;
    }
}


/* Estilo Base do Botão */
#VerContatos {
    background-color: #f0ad4e; /* Um laranja/dourado harmônico */
    color: #fff;
    border: 2px solid #eea236;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease; /* Efeito suave ao passar o mouse */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-transform: uppercase;
    font-size: 12px;
}

    /* Efeito ao passar o mouse (Hover) */
    #VerContatos:hover {
        background-color: #ed9c28;
        border-color: #d58512;
        transform: translateY(-1px); /* Leve subida para indicar clique */
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    /* Estilo quando está no modo 'Ocultar' (Opcional) 
   Se quiser que ele mude de cor quando os contatos aparecerem */
    #VerContatos[value="Ocultar Contatos"] {
        background-color: #5bc0de; /* Um azul claro informativo */
        border-color: #46b8da;
    }