.about-me {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px;
    text-align: justify;
    padding: 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    margin: 0 auto;
}

.about-me h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-me p {
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--light-text);
}

.about-me-logo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin-top: 1rem;
    align-self: center;
}

.skills-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: white;
}

.skills-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skills-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.skill-category {
    background-color: #000;
    border-radius: 10px;
    padding: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--secondary-color);
    text-align: center;
}

.skill-category h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.skill-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

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

.skill-item i {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.skill-item:hover i {
    color: var(--primary-color);
}

/* Para laptops menores e tablets na horizontal */
@media (max-width: 1024px) {
    .about-me-main {
        padding: 3rem 1rem;
        gap: 3rem;
    }

    .about-me {
        width: 90%;
        padding: 2rem;
    }

    .about-me-logo {
        width: 220px;
        height: 220px;
    }

    .skills-section {
        width: 90%;
        gap: 2rem;
    }

    .skill-category {
        padding: 1.5rem;
    }

    .skill-category h3 {
        font-size: 1.4rem;
    }

    .skill-item i {
        font-size: 2.5rem;
    }
}

/* Para tablets na vertical e celulares maiores */
@media (max-width: 768px) {
    .about-me-main {
        padding: 2.5rem 1rem;
        gap: 2rem;
    }
    .about-me {
        width: 95%;
        padding: 1.5rem;
        gap: 1rem;
        text-align: center;
    }

    .about-me p {
        text-align: center;
        font-size: 1rem;
    }

    .about-me h1 {
        font-size: 2rem;
    }

    .about-me-logo {
        width: 180px;
        height: 180px;
        margin-top: 1.5rem;
    }

    .skills-section {
        width: 95%;
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .skills-section h2 {
        font-size: 1.8rem;
    }

    .skill-category {
        padding: 1rem;
    }

    .skill-category h3 {
        font-size: 1.2rem;
    }

    .skill-icons {
        gap: 1rem;
    }

    .skill-item i {
        font-size: 2rem;
    }

    .skill-item {
        font-size: 0.85rem;
    }
}

/* Para celulares menores */
@media (max-width: 480px) {
    .about-me-main {
        padding: 2rem 0.8rem;
        gap: 1.5rem;
    }
    .about-me {
        width: 98%;
        padding: 1rem;
        gap: 0.8rem;
    }

    .about-me h1 {
        font-size: 1.8rem;
    }

    .about-me-logo {
        width: 150px;
        height: 150px;
    }

    .skills-section {
        width: 98%;
    }

    .skills-section h2 {
        font-size: 1.5rem;
    }

    .skill-category h3 {
        font-size: 1rem;
    }

    .skill-item i {
        font-size: 1.8rem;
    }

    .skill-item {
        font-size: 0.8rem;
    }
}
