* {
    margin: 0; padding: 0; box-sizing: border-box; user-select: none;
}

body {
    background-color: #050505; color: white;
    font-family: 'Inter', sans-serif; overflow-x: hidden;
}

#networkCanvas { position: fixed; top: 0; left: 0; z-index: -1; }

/* Navbar e Dropdown */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 8%; 
    background: white;
    position: fixed; width: 100%; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-image {
    height: 70px;
    width: auto;
}

.footer-logo-image {
    height: 150px;
    width: auto;
    margin-bottom: 10px;
}

.copyright-logo-image {
    height: 20px;
    width: auto;
    vertical-align: middle;
    margin: 0 5px;
}

/* Ícone do Menu Mobile (Oculto no Desktop) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000;
}

.nav-links { display: flex; align-items: center; }
.nav-links a {
    color: #000; text-decoration: none; margin: 0 15px;
    font-size: 0.9rem; transition: 0.3s;
    font-weight: 600;
}

.dropdown { position: relative; }
.dropdown-content {
    display: none; position: absolute; background: white;
    min-width: 200px; border-radius: 8px; 
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    top: 100%; left: 0;
}
.dropdown-content a {
    padding: 12px 20px; display: block; margin: 0; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #333;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: rgba(243, 179, 0, 0.1); color: #f3b300; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown:hover .dropbtn { color: #f3b300; }

.btn-acesso {
    background: #f3b300; border: none; padding: 10px 22px;
    border-radius: 25px; font-weight: bold; cursor: pointer;
}

/* Hero */
.hero {
    height: 75vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
}
.headline { font-size: 3.5rem; font-weight: 800; }
.highlight { color: #f3b300; }
.oracle-partner {
    margin-top: 30px; display: flex; align-items: center; gap: 15px;
    padding: 10px 25px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50px;
}
.oracle-logo { width: 80px; filter: brightness(0) invert(1); }

/* Cards de Serviços */
.services {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; padding: 40px 8%;
}
.service-card {
    background: rgba(15, 15, 15, 0.9); padding: 40px;
    border-radius: 15px; border-bottom: 3px solid #f3b300;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: 0.3s; height: 320px;
}
.service-card:hover { transform: translateY(-10px); background: rgba(25, 25, 25, 0.9); }
.service-card h3 { color: #f3b300; margin-bottom: 15px; }

.btn-saiba-mais {
    text-decoration: none; color: #f3b300; border: 1px solid #f3b300;
    padding: 10px; text-align: center; border-radius: 5px;
    font-size: 0.8rem; font-weight: bold; transition: 0.3s; margin-top: 20px;
}
.btn-saiba-mais:hover { background: #f3b300; color: #000; box-shadow: 0 0 15px rgba(243, 179, 0, 0.5); }

/* Slider Clientes */
.clients { padding: 80px 0; text-align: center; }
.slider-container { width: 100%; overflow: hidden; cursor: grab; padding: 50px 0; position: relative; }
.slider-track { display: flex; align-items: center; }
.client-logo {
    margin: 0 40px; /* Espaçamento entre as logos */
    flex-shrink: 0;
}

.client-logo img {
    height: 100px;
    width: 150px;
    object-fit: contain; /* Evita que a imagem seja distorcida */
    filter: grayscale(100%);
    transition: filter 0.4s ease-in-out;
}

.client-logo img:hover {
    filter: grayscale(0%);
}

/* ESTILOS DO FOOTER */
.main-footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(243, 179, 0, 0.2);
    padding: 20px 8% 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-box h3 {
    color: #f3b300;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-box p {
    color: #bbb;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    color: #bbb;
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-box ul li i {
    color: #f3b300;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #000;
    background: #f3b300;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    color: #bbb;
    font-size: 0.9rem;
    font-weight: bold;
}

.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos Específicos para Subpáginas */
.hero-sub {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
}

.content-section {
    padding: 40px 8% 100px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(243, 179, 0, 0.1);
    backdrop-filter: blur(5px);
}

.info-card h2 {
    color: #f3b300;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    margin-bottom: 15px;
    color: #ccc;
    line-height: 1.6;
}

.info-card ul li strong {
    color: #fff;
}

/* Estilo dos Passos (Timeline) */
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.step span {
    background: #f3b300;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* Caixa de CTA */
.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(243, 179, 0, 0.1), transparent);
    padding: 60px;
    border-radius: 20px;
    border: 1px dashed #f3b300;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: #bbb;
}

/* Seção Sobre */
.about {
    padding: 100px 8%;
    background: rgba(255, 255, 255, 0.02);
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    flex: 2;
}

.about-text p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-item i {
    color: #f3b300;
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit-item strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #888;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(15, 15, 15, 0.9);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #f3b300;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #f3b300;
}

.stat-card p {
    font-size: 0.9rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsivo para Sobre */
@media (max-width: 1024px) {
    .about-container { flex-direction: column; }
    .about-stats { flex-direction: row; width: 100%; }
    .stat-card { flex: 1; }
}

/* Responsivo Mobile (Celulares) */
@media (max-width: 768px) {
    /* Ajustes da Navbar e Menu */
    .navbar {
        flex-wrap: wrap;
        padding: 15px 5%;
    }

    .menu-toggle { display: block; }

    .nav-links {
        display: none; /* Escondido por padrão */
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(10, 10, 10, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(243, 179, 0, 0.2);
        text-align: center;
    }

    .nav-links.active { display: flex; }

    .nav-links a, .dropbtn {
        display: block;
        padding: 15px 0;
        margin: 0;
        width: 100%;
        font-size: 1.1rem;
    }

    .dropdown-content { position: static; background: transparent; border: none; }
    .dropdown-content a { padding: 10px 0; color: #888; font-size: 1rem; }
    
    .btn-acesso { display: none; } /* Oculta botão de acesso no mobile */

    /* Ajustes de Layout */
    .hero { height: auto; padding: 120px 20px 60px; }
    .hero h1 { font-size: 2rem; }
    
    .services { grid-template-columns: 1fr; padding: 40px 5%; }
    .service-card { height: auto; min-height: 250px; }

    .benefits-grid { grid-template-columns: 1fr; }
    
    .about-stats { flex-direction: column; margin-top: 30px; }
    
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .main-footer { padding: 40px 5% 20px; }

    /* Ajustes Responsivos para Subpáginas */
    .hero-sub { padding-top: 120px; padding-bottom: 40px; }
    .hero-sub .headline { font-size: 2rem; }
    .content-section { padding: 30px 5% 60px; }
    .info-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 20px; }
    .cta-box h3 { font-size: 1.5rem; }
}