@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@300;400&display=swap');

:root {
    --primary-color: #000000; /* Preto */
    --secondary-color: #000000; /* Preto */
    --background-color: #F4F7F6; /* Cinza muito claro */
    --text-color: #000000; /* Preto */
    --card-background: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    /* A sobreposição usa as cores do tema com transparência para garantir a legibilidade */
    background-image: url('./img/download\ \(9\).png');
    background-size: cover; /* Faz a imagem cobrir todo o espaço */
    background-position: center center; /* Centraliza a imagem */
    background-attachment: fixed; /* Mantém a imagem fixa durante o scroll */
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 960px;
    margin: 40px auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Deixa a imagem redonda */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    margin-bottom: 20px; /* Espaço entre a foto e o título */
    border: 4px solid #8A2BE2; /* Borda roxa */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.05); /* Aumenta levemente a imagem */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Aumenta a sombra para dar profundidade */
    cursor: pointer;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -1px;
}

header .subtitle {
    font-size: 1.2em;
    color: var(--secondary-color);
    font-weight: 400;
}

.card {
    background: var(--card-background);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border: 2px solid #8A2BE2; /* Borda roxa */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.strengths-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.strengths-list li {
    background-color: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 15px;
    border-radius: 4px;
}

.strengths-list li strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 0.9em;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-links a {
    font-size: 1.8em; /* Aumenta o tamanho do ícone */
    margin: 0 15px; /* Espaçamento entre os ícones */
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* Necessário para a transformação */
}

.social-links a:hover {
    color: var(--primary-color); /* Muda a cor ao passar o mouse */
    text-decoration: none; /* Remove o sublinhado dos ícones */
    transform: scale(1.2); /* Aumenta o ícone ao passar o mouse */
}

/* Animação de entrada para os cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-card {
    opacity: 0; /* Começa invisível */
    animation: fadeInUp 0.6s ease-out forwards;
}

.animated-card:nth-of-type(2) { animation-delay: 0.2s; }
.animated-card:nth-of-type(3) { animation-delay: 0.4s; }
