/* ---------------------------------- */
/* 1. VARIÁVEIS DE CORES E FONTES */
/* ---------------------------------- */
:root {
    /* Paleta Neutra e Suave */
    --color-primary: #8C8C8C; /* Cinza Greige/Neutro para Textos e Bordas */
    --color-secondary: #BFA89E; /* Bege/Pêssego Suave (Para Destaques e Botões Secundários) */
    --color-cta: #594D4D; /* Marrom Profundo/Carvão (CTA Principal) */
    --color-background: #F8F8F8; /* Fundo Off-white/Muito Claro */
    --color-text: #333333; /* Texto Principal */
    --color-light-text: #666666; /* Texto Secundário */

    /* Tipografia */
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ---------------------------------- */
/* 2. RESET E ESTILO GERAL */
/* ---------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
    padding: 20px 10px; /* Padding para telas maiores */
}

.bio-container {
    width: 100%;
    max-width: 450px; /* Largura ideal para visualização em mobile */
    margin: 0 auto;
    padding: 0 15px; /* Padding interno do container */
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.85;
}

/* ---------------------------------- */
/* 3. SEÇÃO DE CABEÇALHO (HEADER) */
/* ---------------------------------- */
.header-section {
    text-align: center;
    padding: 20px 0;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Formato circular como no exemplo */
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--color-secondary); /* Borda suave para destaque */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

h1 {
    font-family: var(--font-header);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1em;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.tagline {
    font-style: italic;
    font-size: 0.95em;
    color: var(--color-light-text);
    max-width: 80%;
    margin: 0 auto;
}

/* ---------------------------------- */
/* 4. SEÇÃO DE BOTÕES DE AÇÃO (CTAs) */
/* ---------------------------------- */
.cta-section {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-button {
    display: block;
    padding: 18px 25px;
    border-radius: 12px;
    text-align: center;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.05em;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.1em;
}

/* Estilo do Botão Principal (Mais Escuro, Foco) */
.cta-button.primary {
    background-color: var(--color-cta);
    color: white;
}
.cta-button.primary:hover {
    background-color: #453B3B; /* Tom levemente mais escuro no hover */
    transform: translateY(-2px);
}

/* Estilo dos Botões Secundários (Neutros/Bege) */
.cta-button.secondary {
    background-color: var(--color-secondary);
    color: var(--color-cta);
    border: 1px solid var(--color-secondary);
}
.cta-button.secondary:hover {
    background-color: #d8c2b7; /* Tom levemente mais escuro no hover */
    transform: translateY(-2px);
}

/* ---------------------------------- */
/* 5. SEÇÃO DE ESPECIALIDADES */
/* ---------------------------------- */
.specialties-section {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.specialties-section h2 {
    font-family: var(--font-header);
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-cta);
    text-align: center;
    margin-bottom: 20px;
}

.specialties-section h2 i {
    margin-right: 8px;
    color: var(--color-secondary);
}

.specialty-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1); /* Linha tracejada suave */
}

.specialty-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.specialty-title {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.1em;
}

.specialty-item p {
    font-size: 0.9em;
    color: var(--color-light-text);
    margin-top: 3px;
}

/* ---------------------------------- */
/* 6. RODAPÉ E CRÉDITO */
/* ---------------------------------- */
.footer-section {
    text-align: center;
    padding: 10px 0 20px 0;
}

.footer-section h3 {
    font-family: var(--font-header);
    font-size: 1.2em;
    color: var(--color-light-text);
    margin-bottom: 10px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 10px;
}

.contact-links i {
    font-size: 2em;
    color: var(--color-primary);
}

.credit {
    text-align: center;
    font-size: 0.75em;
    color: var(--color-light-text);
    opacity: 0.6;
    padding: 10px 0;
}

.credit i {
    color: var(--color-secondary);
}