/* 
   Estilos customizados para o site Inovador Tech 
   Custom styles for the Inovador Tech website
   Design Futurista, Neon e Profissional
*/

:root {
    --bg-dark: #050a1a;
    --bg-deep: #020611;
    --neon-cyan: #00f3ff;
    --neon-green: #00ff88;
    --text-glass: rgba(255, 255, 255, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --primary-font: 'Outfit', sans-serif;
    --secondary-font: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--secondary-font);
    overflow-x: hidden;
    cursor: none; /* Esconde o cursor padrão para o customizado / Hides default cursor */
}

/* Scanline Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    z-index: 9999;
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    opacity: 0.3;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: var(--primary-font);
    font-weight: 700;
}

/* Typography Helpers */
.text-neon-cyan { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(0, 243, 255, 0.5); }
.text-neon-green { color: var(--neon-green); text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }

/* Navbar Styling */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

/* Mobile Toggler - Botão mais claro / Brighter Toggler */
.navbar-toggler {
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    transition: 0.3s;
}

.navbar-toggler:focus {
    box-shadow: 0 0 20px var(--neon-cyan);
}

.navbar-toggler-icon {
    /* SVG customizado com a cor neon-cyan / Custom neon-cyan SVG */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 243, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile Menu Expanded - Fundo sobre tudo / Expanded background */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(2, 6, 17, 0.98);
        backdrop-filter: blur(25px);
        margin-top: 15px;
        padding: 25px;
        border-radius: 25px;
        border: 1px solid rgba(0, 243, 255, 0.3);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9);
        animation: slideInNav 0.4s ease-out;
    }

    .nav-item {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 15px !important;
        font-size: 1.1rem;
    }
}

@keyframes slideInNav {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Custom Cursor */
#custom-cursor {
    width: 10px;
    height: 10px;
    background-color: var(--neon-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

#cursor-glow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease-out;
    box-shadow: 0 0 15px var(--neon-cyan);
}

.navbar-brand {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff !important;
    text-transform: uppercase;
}

.brand-accent {
    color: var(--neon-green);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--neon-cyan) !important;
}

.btn-contact {
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan) !important;
    border-radius: 50px;
    padding: 8px 25px !important;
    background: rgba(0, 243, 255, 0.05);
}

.btn-contact:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 15px var(--neon-cyan);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 80px; /* Adicionado para descer o conteúdo / added to lower content */
    background: radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 40%);
}

/* Glitch Effect para o Título */
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    animation: glitch-text 5s infinite;
}

@keyframes glitch-text {
    0%, 90%, 100% { transform: none; opacity: 1; }
    92% { transform: skew(3deg); opacity: 0.8; color: var(--neon-cyan); }
    94% { transform: skew(-3deg); opacity: 0.8; color: var(--neon-green); }
    98% { transform: translate(2px, -2px); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-glass);
    max-width: 600px;
}

.btn-neon {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-green));
    border: none;
    color: var(--bg-dark);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 12px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-neon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.4);
}

.shadow-neon {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
}

.glow-sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Section Styling */
.section-bg {
    background-color: var(--bg-deep);
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--neon-green);
    margin: 15px auto;
    border-radius: 2px;
}

/* Particle Background styling */
#tsparticles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    background: radial-gradient(circle at center, #0a0e2a 0%, #050a1a 100%);
}

/* Enhanced Benefit Cards */
.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.1);
    padding: 35px;
    border-radius: 24px;
    height: 100%;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 243, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;
}

.icon-box i {
    width: 30px;
    height: 30px;
}

/* Service Cards */
.service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border-left: 4px solid var(--neon-green);
    padding: 40px;
    border-radius: 15px;
    transition: 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-list i {
    color: var(--neon-green);
    margin-right: 10px;
    width: 18px;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(rgba(5, 10, 26, 0.8), rgba(5, 10, 26, 0.8)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, #0a0a2e, #1a2a4e);
    position: relative;
    overflow: hidden;
}

.btn-neon-large {
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    animation: neon-pulse 2s infinite; /* Adicionado para efeito futurista / added for futuristic pulse */
}

@keyframes neon-pulse {
    0% { box-shadow: 0 0 5px var(--neon-green); }
    50% { box-shadow: 0 0 30px var(--neon-green); }
    100% { box-shadow: 0 0 5px var(--neon-green); }
}

.btn-neon-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    color: var(--bg-dark);
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .btn-neon {
        width: 100%;
    }
}


/* Scroll Snap Adjustments */
html {
    scroll-behavior: smooth;
}
