:root {
    --white: #ffffff;
    --dark-1: #051121;
    --dark-2: #041020;
    --neon-purple: #9d00ff;
    --neon-blue: #00eaff;
    --glow-strong: 0 0 15px var(--neon-blue), 0 0 25px var(--neon-blue);
    --glow-subtle: 0 0 8px rgba(0, 234, 255, 0.4);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    text-decoration: none; list-style: none;
}

body {
    background: radial-gradient(circle at center, #051022 0%, #051121 50%, #041020 100%);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

#particles-js {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
}

header {
    position: relative; top: 0; width: 100%; padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; background: rgba(5, 17, 33, 0.9);
    backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 80px;         
    width: auto;
    transform: scale(1.4); 
    transform-origin: left center; 
}

nav ul { display: flex; gap: 30px; }
nav a {
    color: var(--white); font-family: 'Orbitron'; font-size: 0.85rem;
    letter-spacing: 1px; transition: 0.3s;
}
nav a:hover { color: var(--neon-blue); text-shadow: var(--glow-subtle); }

.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center; 
    text-align: center; 
    padding: 140px 10% 60px;
}

.hero h1 {
    font-family: 'Orbitron'; font-size: clamp(2rem, 8vw, 4rem); 
    line-height: 1.2; margin-bottom: 20px; text-transform: uppercase;
}

.hero h1 span { color: var(--neon-purple); text-shadow: 0 0 20px var(--neon-purple); }

.slogan-principal {
    font-size: clamp(1rem, 3vw, 1.3rem); max-width: 800px;
    margin-bottom: 40px; opacity: 0.9;
}

.quem-somos {
    width: 100%; max-width: 700px; padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--neon-blue);
    border-right: 3px solid var(--neon-blue);
    backdrop-filter: blur(10px);
}

.quem-somos h3 {
    font-family: 'Orbitron'; font-size: 0.9rem; color: var(--neon-blue);
    margin-bottom: 25px; letter-spacing: 2px;
}

.contato-form {
    display: flex; flex-direction: column; gap: 15px; width: 100%;
}

.contato-form input, 
.contato-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 234, 255, 0.3) !important;
    color: #ffffff !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    outline: none;
    border-radius: 0;
    appearance: none; -webkit-appearance: none;
}

.contato-form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 100px #051121 inset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.contato-form input:focus, 
.contato-form textarea:focus {
    border-color: var(--neon-purple) !important;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.3);
    background: rgba(0, 0, 0, 0.7) !important;
}

.contato-form input::placeholder, 
.contato-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.contato-form .cta-button { width: 100%; margin-top: 10px; }

.cta-button {
    padding: 15px 40px;
    font-family: 'Orbitron'; border: 2px solid var(--neon-blue);
    color: white; background: transparent; transition: 0.4s;
    cursor: pointer; letter-spacing: 2px;
}
.cta-button:hover {
    background: var(--neon-blue); box-shadow: var(--glow-strong);
    color: var(--dark-1);
}

.features {
    padding: 80px 10%;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03); padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center; transition: 0.4s;
}
.feature-card:hover { border-color: var(--neon-purple); transform: translateY(-10px); }
.feature-card i { font-size: 2.5rem; color: var(--neon-purple); margin-bottom: 20px; }

.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    background: #25d366; color: white; padding: 12px 20px;
    border-radius: 50px; display: flex; align-items: center; gap: 10px;
    z-index: 2000; font-family: 'Orbitron'; font-size: 0.8rem;
}

.orb {
    position: absolute; border-radius: 50%; filter: blur(100px);
    z-index: -1; opacity: 0.15;
}
.orb-1 { width: 300px; height: 300px; background: var(--neon-purple); top: 10%; right: 5%; }
.orb-2 { width: 250px; height: 250px; background: var(--neon-blue); bottom: 10%; left: 5%; }

@media (max-width: 768px) {
    header { flex-direction: column; padding: 15px 2%; gap: 10px; }
    .quem-somos { width: 95%; padding: 20px; }
    .hero { 
        padding-top: 0px; 
    }
}

@media (max-width: 768px) {
    .logo-container {
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        transform: scale(1.2);   
        transform-origin: center;
        margin: 0 auto;
        display: block;
    }

    header {
        align-items: center;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }
}


footer {
    background: rgba(4, 16, 32, 0.95);
    border-top: 2px solid var(--neon-blue);
    padding: 60px 10% 30px; 
    margin-top: 50px;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}


.logo-footer-clean {
    height: 100px; 
    width: auto;
    filter: none !important; 
    transition: transform 0.3s ease;
}

.logo-footer-clean:hover {
    transform: scale(1.05); 
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-family: 'Orbitron';
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 8px var(--neon-purple);
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.8rem; 
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--neon-blue);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    font-family: 'Orbitron';
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .logo-footer-clean {
        height: 80px; 
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}