/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #4a148c;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 15px;
}

.container {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.2);
    padding: 35px 25px;
    text-align: center;
    border: 2px solid #f3e5f5;
}

/* Título */
.titulo-principal {
    font-family: 'Pacifico', cursive;
    color: #6a1b9a;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(106, 27, 154, 0.1);
}

/* Seção da Foto e Qualidades */
.secao-perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.moldura-foto {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ba68c8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: #e1bee7;
    flex-shrink: 0;
}

.foto-perfil {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-qualidades {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.qualidade {
    background-color: #f3e5f5;
    color: #7b1fa2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Seção Final (Versículo e Pergunta) */
.secao-final {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 2px dashed #f3e5f5;
}

/* Estilo do Versículo */
.versiculo {
    font-size: 0.95rem;
    font-style: italic;
    color: #7b1fa2;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 10px;
}

.texto-coracao {
    font-size: 1.8rem;
    animation: pulsar 1.5s infinite;
    margin-bottom: 8px;
}

/* Pergunta final reduzida e mais delicada */
.pergunta-final {
    color: #4a148c;
    font-size: 0.8rem; /* Reduzi bastante o tamanho da fonte */
    font-weight: 600;
    line-height: 1.3;
}

/* Animação do coração */
@keyframes pulsar {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}