/* Estilo geral do corpo da página */
body {
    background-color: #1A1A2E;
    color: #D1D5DB;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 20px;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    text-align: center;
    padding: 20px 0;
}

/* Títulos */
h1, h2, h3 {
    color: #E5E7EB;
}

/* Texto em destaque */
strong {
    color: #C084FC;
}

/* Seção de Apresentação */
.apresentacao {
    max-width: 800px;
    margin: auto;
    padding: 20px 0;
    text-align: center;
}

.apresentacao h2 {
    min-height: 120px; /* Garante espaço para o texto que será digitado */
}

.apresentacao img {
    width: 150px;
    border-radius: 50%;
    margin-top: 20px;
    border: 3px solid #C084FC;
    transition: transform 0.3s ease;
}

.apresentacao img:hover {
    transform: scale(1.05);
}

/* Seção de Habilidades (NOVO) */
.habilidades {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #2a2a4a;
    border-radius: 8px;
    text-align: center;
}

.habilidades-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.skill-badge {
    background-color: #C084FC;
    color: #1A1A2E;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background-color: #A855F7;
    transform: translateY(-3px);
}

/* Seção de Links Sociais */
.links {
    text-align: center;
    margin-top: 30px;
}

.links a {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Espaço entre o ícone e o texto */
    margin: 10px;
    padding: 10px 20px;
    text-decoration: none;
    color: #C084FC;
    font-weight: bold;
    border: 1px solid #C084FC;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.links a:hover {
    background-color: #C084FC;
    color: #1A1A2E;
}

/* Seção de Projetos */
.projetos {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.projetos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.projeto-card {
    background-color: #2a2a4a;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 20px;
    width: 350px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.projeto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.projeto-card h3 {
    color: #C084FC;
    margin-top: 0;
}

.projeto-card p {
    font-size: 0.95em;
    color: #D1D5DB;
    flex-grow: 1;
}

.projeto-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.projeto-card a {
    flex-grow: 1;
    text-align: center;
    padding: 10px 15px;
    background-color: #C084FC;
    color: #1A1A2E;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.projeto-card a.live-demo {
    background-color: #A855F7;
    color: #E5E7EB;
}

.projeto-card a:hover {
    background-color: #6b21a8;
    color: #E5E7EB;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    color: #9CA3AF;
    border-top: 1px solid #374151;
    margin-top: 40px;
}