/* 1. RESET E CONFIGURAÇÕES GERAIS */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background-color: #fff0f5;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 9.25C15 6.1 11.5 4 8.5 4 5 4 3 6.5 3 9.5c0 4.25 5.5 8.75 12 13.5 6.5-4.75 12-9.25 12-13.5 0-3-2-5.5-5.5-5.5-3 0-6 2.1-6 5.25z' fill='%23e8227e' fill-opacity='0.05'/%3E%3C/svg%3E");
    color: #222;
    display: flex;
    justify-content: center;
    padding: 10px; 
    min-height: 100vh;
    font-family: 'Cormorant Garamond', serif;
}

/* CORREÇÃO DO EMOJI: Força o navegador a exibir o emoji original do sistema operacional */
.emoji-fix {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Android Emoji", sans-serif !important;
    font-size: 18px;
    display: inline-block;
    margin-right: 6px;
}

/* 2. CONTAINER PRINCIPAL */
.container {
    max-width: 480px; 
    width: 100%;
    text-align: center;
    background: #f8bbd0; 
    border-radius: 40px;
    padding: 35px 22px;
    box-shadow: 0 20px 45px rgba(232, 34, 126, 0.2);
    border: 1px solid rgba(232, 34, 126, 0.15);
}

/* 3. TEXTOS DO PERFIL */
.frase-entrada {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 28px;
    margin-top: 18px;
    color: #111;
}

.bio { 
    margin-top: 10px;
    margin-bottom: 25px; 
    font-style: italic; 
    font-size: 17px; 
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

/* 4. FOTO DE PERFIL PRINCIPAL (MOLDURA 1) */
.foto-moldura {
    width: 240px; 
    height: 240px; 
    margin: 0 auto;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(45deg, #e8227e, #ffffff, #e8227e);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 34, 126, 0.25);
}

.foto-moldura img {
    width: 100%; 
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.foto-moldura img:hover {
    transform: scale(1.08);
}

/* 5. LINKS E BOTÕES */
.links-container { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-top: 25px; 
}

.card-link {
    display: flex;
    align-items: center;
    justify-content: center; /* CORREÇÃO: Garante a centralização de todo o bloco de texto */
    background: white;
    padding: 16px;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(232, 34, 126, 0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(232, 34, 126, 0.25);
}

.texto {
    display: flex;
    flex-direction: column;
    text-align: center; /* Mantém o alinhamento centralizado do bloco */
    width: 100%;
}

.titulo-link { 
    display: flex;
    align-items: center;
    justify-content: center; /* CORREÇÃO: Junta o emoji e o título bem no centro */
    font-family: 'Playfair Display', serif;
    font-weight: 800; 
    color: #111; 
    font-size: 16px; 
}

.subtitulo-link { 
    display: block; 
    font-size: 13px; 
    color: #555; 
    margin-top: 3px;
    font-weight: 400;
    text-align: center; /* CORREÇÃO: Garante que a descrição também fique no meio */
}

/* 6. SEÇÃO DA FOTO 2 (CARICATURA INTEIRA SEM CORTAR) */
.sessao-banner {
    margin-top: 30px; 
    padding: 25px 18px;
    background: #fff; 
    border-radius: 30px;
    border: 2px dashed #e8227e;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset 0 0 15px rgba(232, 34, 126, 0.02);
}

/* Caixa proporcional baseada no site antigo */
.caricatura-quadrada {
    width: 100%;
    max-width: 320px; 
    background: #ffffff;
    border-radius: 20px; 
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid #fce4ec;
    box-shadow: 0 8px 20px rgba(232, 34, 126, 0.15);
}

/* Ajustado para preencher de forma correta (contain) sem cortar as bordas da caricatura */
.img-caricatura {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; 
    transition: transform 0.4s ease;
}

.caricatura-quadrada:hover .img-caricatura {
    transform: scale(1.04);
}

/* Texto Negrito e Justificado */
.texto-recrutamento {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 25px;
    text-align: justify;
    font-weight: 600; 
}

/* 7. BOTÃO DE RECRUTAMENTO PULSANTE */
.card-link.destaque { 
    background-color: #e8227e; 
    color: white; 
    width: 100%;
    padding: 18px; 
    justify-content: center;
    border: none;
}

.card-link.destaque .titulo-link, 
.card-link.destaque .subtitulo-link { 
    color: white; 
    text-align: center;
}

.emoji-destaque { 
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-size: 24px; 
    margin-right: 10px; 
}

/* Animação de Pulsar Elegante */
.botao-pulsar {
    animation: pulsar-suave 2s infinite ease-in-out;
}

@keyframes pulsar-suave {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(232, 34, 126, 0.3);
    }
    50% {
        transform: scale(1.03); 
        box-shadow: 0 10px 25px rgba(232, 34, 126, 0.5); 
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(232, 34, 126, 0.3);
    }
}

/* 8. RODAPÉ */
footer { 
    margin-top: 35px; 
    font-size: 13px; 
    opacity: 0.9; 
    line-height: 1.6; 
}

.frase-final {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 900; 
    color: #111;
    margin-bottom: 8px;
}