@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: #f8faff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.menu-nav {
    width: 240px;
    height: 100vh;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow-y: auto;
}

.menu-vertical::-webkit-scrollbar { width: 5px; }
.menu-vertical::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); }
.menu-vertical::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 5px; }

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.logo span { color: #ffd700; }

.menu-toggle { display: none; }

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-links li a:hover,
.nav-links li a.ativo {
    background: rgba(255,255,255,0.2);
    color: white;
}

.dropdown { position: relative; }

.submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    display: none;
    flex-direction: column;
    gap: 3px;
}

.dropdown:hover .submenu,
.dropdown.aberto .submenu { display: flex; }

.submenu a {
    display: block;
    padding: 8px 15px ;
    color: rgba(255,255,255,0.75);
    font-size: 0.83rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.submenu a:hover,
.submenu a.ativo {
    background: rgba(255,255,255,0.15);
    color: white;
}

main {
    margin-left: 240px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
 
footer.footer,
.footer {
    background: #111;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-left: 240px;
    width: calc(100% - 240px);
}
.footer p { color: #ccc; margin: 4px 0; font-size: 0.85rem; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img { width: 100%; height: 100%; object-fit: cover; }

.hero {
    width: 100%;
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
}

.hero h1 
{ font-size: 2.5rem; 
    margin-bottom: 12px; 
    font-weight: 700; 
    color: white; 
}
.hero .descricao 
{ font-size: 1rem; 
    max-width: 650px; 
    margin: 0 auto 20px; 
    line-height: 1.6; 
    color: rgba(255,255,255,0.9); 
}

.hero .nomes 
{ font-size: 1rem; 
    color: rgba(255,255,255,0.85); 
    margin-bottom: 10px; font-weight: 500;
}

.hero-tags { 
    display: flex; 
    justify-content: center; 
    gap: 12px; 
    flex-wrap: wrap; 
    margin-top: 15px; 
}

.hero-tag {
    background: rgba(255,255,255,0.2); 
    color: white; 
    padding: 7px 16px; 
    border-radius: 25px; 
    font-size: 0.82rem; 
    font-weight: 500; 
    border: 1px solid rgba(255,255,255,0.3); 
}

.section-title { 
    text-align: center; 
    font-size: 1.8rem; 
    margin: 40px 0 25px; 
    color: #1a1a2e; 
    position: relative; 
    padding-bottom: 15px; 
}

.section-title::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 60px; 
    height: 3px; 
    background: linear-gradient(135deg, #667eea, #764ba2); 
    border-radius: 2px; 
}

.section-title span { color: #667eea; }

.cards-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
    margin: 30px 0 50px; 
}
.card-integrante { 
    background: white; 
    border-radius: 20px; 
    padding: 25px 20px; 
    text-align: center; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.07); 
    transition: all 0.3s; 
}
.card-integrante:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(102,126,234,0.15);
}

.card-integrante h3 { 
    font-size: 1.1rem; 
    margin-bottom: 5px; 
    color: #1a1a2e; 
}

.card-integrante .cargo { 
    color: #667eea; 
    font-weight: 600; 
    font-size: 0.8rem; 
    margin-bottom: 10px; 
}

.card-integrante .descricao { 
    color: #555; 
    font-size: 0.82rem; 
    line-height: 1.5; 
    margin-bottom: 15px; 
}

.redes-sociais { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin-top: 10px; 
}

.redes-sociais a { 
    width: 35px; 
    height: 35px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, #667eea, #764ba2); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-decoration: none; 
    font-size: 0.85rem; 
    transition: all 0.3s; 
}

.redes-sociais a:hover { transform: scale(1.15); box-shadow: 0 4px 12px rgba(102,126,234,0.4); }

.stats-section { 
    background: linear-gradient(135deg, #667eea, #764ba2); 
    padding: 50px 0; 
    margin: 40px 0; 
    border-radius: 20px; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    text-align: center; 
}

.stat-item i { 
    font-size: 2rem; 
    color: rgba(255,255,255,0.7); 
    margin-bottom: 10px; 
}

.stat-item .numero { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: white; }

.stat-item .label { 
    color: rgba(255,255,255,0.85); 
    font-size: 0.9rem; }

.servicos-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
    margin: 30px 0 50px; }

.servico-card { 
    background: white; 
    border-radius: 16px; 
    padding: 30px 25px; 
    text-align: center; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.07); 
    transition: all 0.3s; }

.servico-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 12px 25px rgba(102,126,234,0.15); }

.servico-card i { font-size: 2.2rem; color: #667eea; margin-bottom: 15px; }
.servico-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.servico-card p { font-size: 0.85rem; color: #666; line-height: 1.5; }

.cta-section { 
    background: linear-gradient(135deg, #667eea, #764ba2); 
    border-radius: 20px; 
    padding: 50px 30px; 
    text-align: center; 
    margin: 40px 0 60px; }

.cta-section h2 { 
    font-size: 2rem; 
    color: white; 
    margin-bottom: 15px; 
    font-weight: 700; }

.cta-section h2 span { color: #ffd700; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 30px; }
.btn-contato { 
    background: white; 
    color: #667eea; 
    padding: 14px 35px; 
    border-radius: 30px; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 1rem; 
    transition: all 0.3s; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; }

.btn-contato:hover { background: #ffd700; color: #333; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

.botao-flutuante { 
    position: fixed; 
    bottom: 25px; 
    right: 25px; 
    width: 50px; 
    height: 50px; 
    background: linear-gradient(135deg, #667eea, #764ba2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-decoration: none; 
    box-shadow: 0 5px 15px rgba(102,126,234,0.4); 
    z-index: 999; 
    border: 2px solid white; 
    transition: all 0.3s; }

.botao-flutuante:hover { transform: scale(1.1); }

/*novidadess*/
.destaques-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 40px 0; }
.card-destaque { border-radius: 20px; padding: 35px 30px; display: flex; flex-direction: column; gap: 12px; }
.card-destaque.roxo { background: linear-gradient(135deg, #667eea, #764ba2); }
.card-destaque.roxo h2 { color: #fff; }
.card-destaque.roxo p { color: rgba(255,255,255,0.88); }
.card-destaque.roxo .data { color: rgba(255,255,255,0.7); }
.card-destaque.branco { background: white; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.card-destaque.branco h2 { color: #1a1a2e; }
.card-destaque.branco p { color: #555; }
.card-destaque.branco .data { color: #999; }
.card-destaque h2 { font-size: 1.35rem; font-weight: 700; line-height: 1.3; }
.card-destaque p { font-size: 0.9rem; line-height: 1.6; }
.card-destaque .data { font-size: 0.8rem; }
.novidades-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 50px; }
.novidade-card { background: white; border-radius: 16px; padding: 25px; display: flex; gap: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.07); transition: all 0.3s; }
.novidade-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(102,126,234,0.15); }
.novidade-icon { width: 55px; height: 55px; border-radius: 14px; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.novidade-icon i { font-size: 1.4rem; color: white; }
.novidade-info h3 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }
.novidade-info .data { font-size: 0.78rem; color: #999; margin-bottom: 8px; display: block; }
.novidade-info .descricao { font-size: 0.85rem; color: #555; line-height: 1.6; margin-bottom: 10px; }
.novidade-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.novidade-tags span { background: #f0f2ff; color: #667eea; font-size: 0.72rem; padding: 4px 12px; border-radius: 20px; font-weight: 500; }

/*contatooo*/
.contato-conteudo { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; margin-bottom: 60px; }
.info-cards { display: flex; flex-direction: column; gap: 25px; }
.formulario-card { background: white; border-radius: 20px; padding: 30px 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.07); }
.formulario-card h2 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.formulario-card h2 i { color: #667eea; }
.campo { margin-bottom: 18px; }
.campo label { display: block; font-size: 0.82rem; font-weight: 600; color: #333; margin-bottom: 7px; }
.campo label i { color: #667eea; margin-right: 5px; }
.campo input, .campo select, .campo textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #e0e0e0; border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 0.85rem; color: #333; background: #fafafa; transition: border-color 0.3s, box-shadow 0.3s; outline: none; }
.campo input:focus, .campo select:focus, .campo textarea:focus { border-color: #667eea; box-shadow: 0 0 0 3px rgba(102,126,234,0.12); background: white; }
.campo textarea { resize: vertical; min-height: 130px; }
.btn-enviar { width: 100%; padding: 14px; background: linear-gradient(135deg, #667eea, #764ba2); color: white; border: none; border-radius: 12px; font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-enviar:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(102,126,234,0.35); }
.info-cards .card, .formulario-card { background: white; border-radius: 20px; padding: 30px 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.07); }
.info-cards .card h2, .formulario-card h2 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.info-cards .card h2 i, .formulario-card h2 i { color: #667eea; }
.tabela-redes { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.tabela-redes th { background: #f0f2ff; color: #667eea; font-weight: 600; padding: 10px 12px; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.4px; }
.tabela-redes th:first-child { border-radius: 8px 0 0 8px; }
.tabela-redes th:last-child { border-radius: 0 8px 8px 0; }
.tabela-redes td { padding: 12px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; color: #333; }
.tabela-redes tr:last-child td { border-bottom: none; }
.nome-integrante { display: block; font-weight: 600; color: #1a1a2e; font-size: 0.85rem; }
.cargo-integrante { display: block; font-size: 0.72rem; color: #666; }
.redes-links a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; font-size: 0.9rem; text-decoration: none; transition: all 0.3s; color: white; }
.redes-links a.linkedin { background: #0077b5; }
.redes-links a.github { background: #333; }
.redes-links a.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.redes-links a:hover { transform: scale(1.15); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.horarios { display: flex; flex-direction: column; gap: 12px; }
.horario-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; background: #f8faff; border-radius: 10px; font-size: 0.85rem; }
.horario-item .dia { font-weight: 600; color: #1a1a2e; }
.horario-item .hora { color: #667eea; font-weight: 600; }
.info-linha { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 18px; }
.info-linha i { color: #667eea; font-size: 1.1rem; margin-top: 3px; min-width: 18px; }
.info-linha p { font-size: 0.85rem; line-height: 1.6; color: #555; }

/*portfolioo*/
.portfolio-filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { background: white; border: 2px solid #e0e0e0; color: #333; padding: 10px 22px; border-radius: 25px; font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover { border-color: #667eea; color: #667eea; }
.filter-btn.active { background: linear-gradient(135deg, #667eea, #764ba2); border-color: transparent; color: white; box-shadow: 0 4px 15px rgba(102,126,234,0.35); }
.projetos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.projeto-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.07); transition: all 0.3s; display: flex; flex-direction: column; }
.projeto-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(102,126,234,0.18); }
.projeto-img { background: linear-gradient(135deg, #667eea, #764ba2); height: 130px; display: flex; align-items: center; justify-content: center; position: relative; }
.projeto-img i { font-size: 2.8rem; color: rgba(255,255,255,0.8); }
.projeto-inicial { position: absolute; width: 55px; height: 55px; background: rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; color: white; bottom: -20px; right: 20px; border: 3px solid white; }
.projeto-info { padding: 30px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.categoria { font-size: 0.75rem; font-weight: 600; color: #667eea; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: block; }
.projeto-info h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.3; }
.projeto-info .descricao { font-size: 0.82rem; color: #666; line-height: 1.6; margin-bottom: 15px; flex: 1; }
.projeto-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.projeto-tags span { background: #f0f2ff; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; color: #667eea; font-weight: 500; }
.projeto-links { display: flex; gap: 10px; flex-wrap: wrap; }
.projeto-links a { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; color: #667eea; text-decoration: none; padding: 7px 14px; border: 1.5px solid #667eea; border-radius: 8px; transition: all 0.3s; cursor: pointer; }
.projeto-links a:hover { background: linear-gradient(135deg, #667eea, #764ba2); color: white; border-color: transparent; }

/*paginas individuais*/
.tag { display: inline-block; padding: 5px 14px; border-radius: 25px; font-size: 0.78rem; font-weight: 600; margin-bottom: 5px; }
.tag-roxo-claro { background: rgba(255,255,255,0.2); color: white; }
.tag-roxo-escuro { background: #f0f2ff; color: #667eea; }

/*responsividade*/
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .projetos-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 900px) {
    .menu-nav {
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 5px;
        margin-top: 15px;
    }
    .menu-nav.aberto .nav-links { display: flex; }
    .submenu { padding-left: 15px; }
    main { margin-left: 0; margin-top: 70px; }
    footer.footer, .footer { margin-left: 0; width: 100%; }
    .destaques-grid { grid-template-columns: 1fr; }
    .contato-conteudo { grid-template-columns: 1fr; }
}
 
@media (max-width: 768px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .servicos-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
    .hero { padding: 40px 15px; }
    .novidade-card { flex-direction: column; }
}
 
@media (max-width: 480px) {
    .cards-grid { grid-template-columns: 1fr; }
    .projetos-grid { grid-template-columns: 1fr; }
}





