/* RESET BÁSICO (evita bugs idiotas de browser) */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }

        /* CONTAINER PADRÃO */
        .container {
            width: 90%;
            max-width: 1000px;
            margin: auto;
        }

        /* HEADER */
        header {
            background: #111827;
            color: #fff;
            padding: 60px 0;
            text-align: center;
        }

        header h1 {
            font-size: 2.5rem;
        }

        header p {
            margin-top: 10px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* SECTIONS */
        section {
            padding: 60px 0;
        }

        section h2 {
            margin-bottom: 20px;
            font-size: 2rem;
            color: #111827;
        }

        /* SOBRE */
        .about p {
            max-width: 700px;
        }

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

        .project-card {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }

        .project-card h3 {
            margin-bottom: 10px;
        }

        .project-card p {
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .project-card a {
            text-decoration: none;
            color: #2563eb;
            font-weight: bold;
        }

        /* SKILLS */
        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .skill {
            background: #111827;
            color: #fff;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        /* CONTATO */
        .contact p {
            margin-bottom: 10px;
        }

        .contact a {
            color: #2563eb;
            text-decoration: none;
            font-weight: bold;
        }

        /* FOOTER */
        footer {
            background: #111827;
            color: #fff;
            text-align: center;
            padding: 20px 0;
            font-size: 0.9rem;
        }

        .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #111827;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;

    transition: transform 0.2s ease;
}

.skill:hover {
    transform: translateY(-2px);
}

.skill img {
    width: 20px;
    height: 20px;
}
