/* styles.css */
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Estilos do cabeçalho */
.header {
    background: #333;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #1da1f2;
}

/* Hero section */
.hero {
    background: linear-gradient(to right, #1da1f2, #0077cc);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #eee;
}

/* Seção Sobre */
.sobre {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.sobre img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    flex: 0 0 200px;
}
.sobrerodape img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    flex: 0 0 200px;
}

.texto {
    flex: 1;
    max-width: 700px;
}

.texto ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.texto li {
    background: #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    list-style: none;
}

/* Seção Projetos */
.projetos {
    padding: 4rem 2rem;
    background: #fff;
}

.projetos h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.projeto-card {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.projeto-card:hover {
    transform: translateY(-5px);
}

.projeto-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Seção Contato */
.contato {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato-form input,
.contato-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contato-form button {
    padding: 0.75rem;
    background: #1da1f2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contato-form button:hover {
    background: #0077cc;
}

/* Rodapé */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .nav-list {
        flex-direction: column;
        background: #444;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        display: none;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sobre-content {
        flex-direction: column;
        align-items: center;
    }
    
    .texto {
        text-align:sha
}