.about,
.skills,
.projects,
.contact {
    padding: 25px;
}

/* Skills */
.skills-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.skills-icons img {
    width: 60px;
    transition: transform 0.2s ease-in-out;
}

.skills-icons img:hover {
    transform: scale(1.2) rotate(5deg);
}

/* Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 204, 255, 0.2);
}

.project-card h3 {
    color: #00ccff;
    margin-bottom: 10px;
}

.project-card p {
    color: #ccc;
    font-size: 0.95em;
    margin-bottom: 15px;
}

/* Contato */
.contact a {
    color: #66ccff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Certificados */
.certificado {
    width: 300px;
    padding-left: 2rem;
}

.certificadoTitulo {
    padding-left: 1rem;
}