body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #0a0f1c;
    color: #fff;
    margin: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.containerHeader, .containerSobre, .containerServicos, #footer {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 10;
}

.containerHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.imgLogo { width: 120px; }

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

nav a:hover { color: #00d4ff; }

.btnWhatsApp, .btnAcao {
    background: linear-gradient(45deg, #00d4ff, #7a5cff);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.btnWhatsApp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(122,92,255,0.6);
}

#btnHero, #btnOrcamento {
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 30px;
}

#inicio {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.containerInicio { position: relative; width: 100%; height: 100%; }

.imgInicio {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

.imgUniverso { width: 100%; height: 100%; object-fit: cover; }

.imgInicio::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.conteudoHero {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; max-width: 800px;
    text-align: center;
    z-index: 2;
}

.textoPrincipal {
    font-size: 42px; font-weight: bold; margin-bottom: 15px;
    background: linear-gradient(45deg, #00d4ff, #7a5cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.paragrafoUniverso p { color: #eee; font-size: 18px; margin-bottom: 25px; }

#sobre { padding: 80px 0; }

.textoSobre { font-size: 30px; margin-bottom: 20px; color: #00d4ff; }

.containerSobre { display: grid; gap: 40px; }

.informacoes p { margin-bottom: 15px; color: #ccc; font-size: 17px; }

.dados { display: flex; gap: 20px; flex-wrap: wrap; }

.cardDados {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px; border-radius: 15px; text-align: center;
    min-width: 140px; flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.numeroDestaque { font-size: 28px; color: #fff; font-weight: 900; margin-bottom: 5px; }

.cardDados p { margin: 0; color: #aaa; font-size: 14px; }

#servicos { padding: 80px 0; background: #0f1629; }

.textoServicos {
    text-align: center; font-size: 32px; margin-bottom: 10px;
    background: linear-gradient(45deg, #00d4ff, #7a5cff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.subtituloServicos { text-align: center; color: #aaa; margin-bottom: 40px; }

.gridServicos {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 40px;
}

.cardServico {
    background: #131c33; padding: 30px; border-radius: 15px;
    transition: 0.3s; border: 1px solid rgba(255,255,255,0.05);
}

.cardServico:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(0,212,255,0.4);
    box-shadow: 0 0 20px rgba(0,212,255,0.2);
}

.cardServico h3 { color: #00d4ff; margin-bottom: 15px; font-size: 20px; }

.cardServico p { color: #bbb; font-size: 15px; line-height: 1.6; }

.btnOrcamento { text-align: center; }

#footer {
    padding: 60px 0; display: flex; justify-content: space-between;
    flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1);
}

.tituloFooter { margin-top: 15px; font-size: 20px; color: #ccc; max-width: 400px; }

.containerContato p { margin: 5px 0; color: #aaa; }

#naoCopie { text-align: center; padding: 15px; background: #080c18; color: #777; }

@media (max-width: 768px) {
    header .btnWhatsApp {
        display: none;
    }

    .menu-toggle { 
        display: flex; 
        z-index: 11;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 28, 0.98);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul.active { display: flex; }

    #inicio {
        height: auto;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }

    .imgInicio {
        position: absolute;
        height: 100%;
    }

    .conteudoHero {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 40px auto;
        width: 90%;
    }

    .textoPrincipal {
        font-size: 26px;
        line-height: 1.3;
    }

    .containerSobre { grid-template-columns: 1fr; }
    .gridServicos { grid-template-columns: 1fr; }
    #footer { flex-direction: column; gap: 30px; text-align: center; }
}