body, html {
    font-family: 'Segoe UI', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    animation: floating 4s ease-in-out infinite;
    color: #101010;
}

.logo span {
    color: #00dFC4;
}

.logo a {
    text-decoration: none;
    cursor: pointer;
    color: #FFFFFF;
}

.nav-item a {
    color: #FFFFFF;
    font-size: 14pt;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.hero {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

/* Seção Sobre Mim */
.about-me {
    text-align: center;
    margin-bottom: 40px;
}
.about-me h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.about-me p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.project-card {
    transition: transform 0.3s;
}

.project-card:hover {
    transform: scale(1.05);
}

.projeto-imagem {
    width: 10px;
    height: auto;
}

/* Seção Habilidades */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.skill-item {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    color: #2c3e50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

.redes {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.redes a {
    color: #00DFC4;
    text-decoration: none;
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr; 
    }
}