/* ==========================================================================
   VARIÁVEIS E DEFINIÇÕES GERAIS
   ========================================================================== */
:root {
    --primary: #007bff;
    --primary-glow: rgba(0, 123, 255, 0.5);
    --accent: #00f2fe;
    --dark: #050505;
    --dark-secondary: #0f0f12;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-muted: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { 
    background-color: var(--dark); 
    color: #fff; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Espaçamento para o conteúdo não "bater" na navbar fixa */
section {
    padding: 100px 0;
}

/* ==========================================================================
   NAVBAR (EFEITO GLASSMORPHISM)
   ========================================================================== */
.navbar {
    padding: 25px 0;
    transition: var(--transition);
    background: transparent; 
    z-index: 2000; /* Garantir que fique acima de tudo */
}

/* Esta classe é ativada pelo JQuery no scroll */
.navbar.navbar-scrolled {
    background: rgba(5, 5, 5, 0.85) !important; 
    backdrop-filter: blur(15px); /* Efeito desfoque de vidro */
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0; 
    border-bottom: 1px solid rgba(0, 123, 255, 0.2); 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 600;
    margin-left: 15px;
    transition: var(--transition);
}

.nav-link:hover, .navbar-scrolled .nav-link:hover {
    color: var(--accent) !important;
}

.navbar-scrolled .nav-link {
    color: #fff !important;
}

/* ==========================================================================
   COMPONENTES PREMIUM (BOTÕES E BADGES)
   ========================================================================== */
.badge-premium {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    color: #000;
    margin-bottom: 20px;
}

.btn-glow {
    background: var(--primary);
    color: white !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-glow:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 50px var(--primary); 
    filter: brightness(1.1);
}

.btn-outline-custom {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.05);
    border-color: #fff;
    color: #fff;
}

/* ==========================================================================
   CARDS E EFEITOS VISUAIS (3D & GLASS)
   ========================================================================== */
.main-card-3d {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 25px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
}

.main-card-3d img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Seção de Serviços / Swiper */
.service-box {
    background: var(--dark-secondary);
    padding: 60px 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-box:hover {
    border-color: var(--primary);
    background: #141418;
    transform: translateY(-10px);
}

.service-box i { 
    font-size: 3.5rem; 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px; 
    display: block;
}

.service-box h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

.service-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   UTILITÁRIOS E TIPOGRAFIA
   ========================================================================== */
.fw-black { font-weight: 900; }

.text-glow {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

#typed {
    color: var(--accent);
}

/* Customização da paginação do Swiper */
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 25px;
    border-radius: 5px;
    transition: width 0.3s ease;
}

/* Terminal Mockup (Aquele que vimos antes) */
.terminal-window {
    background: #000;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
}

.t-dot { width: 12px; height: 12px; border-radius: 50%; }
.t-red { background: #ff5f56; }
.t-yellow { background: #ffbd2e; }
.t-green { background: #27c93f; }

.terminal-body {
    padding: 20px;
    color: #00ff00;
    font-size: 0.85rem;
}
.font-montserrat { font-family: 'Montserrat', sans-serif; letter-spacing: 3px; }

.text-secondary-custom {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.mini-feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    transition: 0.3s;
}

.mini-feature-tag:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #000;
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    z-index: 2;
}
/* Visual da Integração (API Flow) */
.integration-visual {
    background: #000;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.node-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100px;
    transition: 0.3s;
}

.node-box:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

.connection-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.line-pulse {
    position: absolute;
    width: 30px;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 15px #fff;
    animation: pulse-flow 2s infinite linear;
}

@keyframes pulse-flow {
    0% { left: -30px; }
    100% { left: 100%; }
}

.api-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Cor do acento (Cyan) para variar */
.text-accent { color: var(--accent); }
/* Cards de Missão, Visão e Valores */
.mvv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
}

.mvv-card.active {
    border-color: var(--primary);
    background: rgba(0, 123, 255, 0.05);
    transform: translateY(-10px);
}

.mvv-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--dark-secondary);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--primary);
    transition: 0.3s;
}

.mvv-card:hover .icon-circle {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px var(--primary);
}

/* Badge de Experiência Flutuante */
.about-visual-container {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    z-index: 10;
    line-height: 1;
}

.stat-item {
    border-left: 2px solid var(--primary);
    padding-left: 15px;
}

/* Estilização das Logos dos Clientes */
.client-logo {
    max-width: 160px;
    height: auto;
    opacity: 0.4; /* Começa discreto */
    filter: grayscale(100%) brightness(2); /* Estilo minimalista */
    transition: all 0.4s ease;
    cursor: pointer;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1); /* Ganha cor e destaque no hover */
    transform: scale(1.1);
}

/* Ajuste para o Swiper de clientes não travar a rolagem */
.clientSwiper {
    padding: 20px 0;
}

/* Transição suave de movimento contínuo */
.clientSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Custom Inputs para o Formulário */
.custom-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 12px;
    transition: var(--transition);
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
    outline: none;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Efeito de Hover nas informações de contato */
.bg-glass-hover:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.ls-2 {
    letter-spacing: 2px;
}

/* Ajuste para o Select (Dropdown) */
select.custom-input option {
    background: var(--dark);
    color: #fff;
}
/* Estilização dos Cards de Blog */
.blog-card {
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #fff;
    transition: 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-link:hover {
    color: var(--accent);
}

.blog-meta small {
    color: var(--text-muted);
    font-weight: 600;
}

/* Hero do Blog */
.blog-hero {
    height: 60vh;
    background: radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.1) 0%, var(--dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Card Horizontal no Blog */
.blog-card-horizontal {
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.blog-card-horizontal:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--dark-secondary);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.category-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-widget {
    background: linear-gradient(135deg, #0f0f12 0%, #1a1a2e 100%);
    border: 1px solid var(--primary);
}

/* Estilização da Paginação */
.page-link {
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    margin: 0 5px;
    border-radius: 8px !important;
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

.page-link:hover {
    background: var(--primary);
    color: #fff;
}

/* RESET DE LINKS NO FOOTER */
.footer-section a {
    text-decoration: none !important; /* Remove qualquer linha sublinhada */
    box-shadow: none !important;
    border: none !important;
    transition: all 0.3s ease;
}

.footer-title {
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary) !important;
    transform: translateX(5px); /* Efeito suave de deslocamento em vez de linha */
}

/* CONTATO NO FOOTER */
.footer-contact-item small {
    display: block;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-contact-item p {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}


    /* Estilos de Impacto - Mercado Livre/iFood Style */
    .promo-modal-content {
        background: #050505;
        border-radius: 40px;
        box-shadow: 0 0 80px rgba(0, 123, 255, 0.3);
        border: 1px solid rgba(0, 123, 255, 0.2) !important;
    }

    .btn-close-custom {
        position: absolute;
        top: 25px;
        right: 25px;
        z-index: 999;
        background: rgba(255,255,255,0.1);
        border: none;
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        backdrop-filter: blur(10px);
        transition: 0.3s;
    }

    .btn-close-custom:hover { background: var(--primary); transform: rotate(90deg); }

    .promo-img-main {
        width: 100%;
        height: 100%;
        min-height: 600px;
        object-fit: cover;
    }

    .promo-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to right, transparent 70%, #050505 100%);
    }

    .bg-promo-glass {
        background: #050505;
        position: relative;
    }

    .promo-tag {
        display: inline-flex;
        align-items: center;
        background: rgba(0, 123, 255, 0.15);
        color: var(--accent);
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 0.75rem;
        letter-spacing: 2px;
        border: 1px solid rgba(0, 242, 254, 0.3);
    }

    .pulse-icon {
        width: 8px; height: 8px;
        background: var(--accent);
        border-radius: 50%;
        margin-right: 10px;
        animation: pulse-promo 1.5s infinite;
    }

    @keyframes pulse-promo {
        0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
        100% { box-shadow: 0 0 0 10px rgba(0, 242, 254, 0); }
    }

    .price-value {
        font-size: 1.8rem;
        font-weight: 900;
        color: #fff;
        text-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
    }

    .btn-glow-large {
        background: var(--primary);
        color: white !important;
        text-decoration: none;
        border-radius: 20px;
        font-weight: 800;
        font-size: 1.1rem;
        box-shadow: 0 15px 40px var(--primary-glow);
        transition: 0.4s;
    }

    .btn-glow-large:hover { transform: translateY(-5px); box-shadow: 0 20px 50px var(--primary); }

    .promo-pagination .swiper-pagination-bullet { background: #fff !important; width: 12px; height: 12px; }
    .promo-pagination .swiper-pagination-bullet-active { background: var(--primary) !important; width: 40px; border-radius: 6px; }

    /* Responsivo para mobile ficar bonito igual iFood */
    @media (max-width: 991px) {
        .promo-modal-content { border-radius: 0; height: 100vh; }
        .modal-dialog { margin: 0; max-width: 100%; }
        .bg-promo-glass { height: 100vh; }
    }

    /* Estilo para os Botões de Apps na Navbar */
.btn-app-nav {
    background: rgba(255, 255, 255, 0.05); /* Efeito de vidro sutil */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-app-nav:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

/* Cores específicas dos ícones para cada App */
.text-accent { color: #00f2fe; } /* Cor neon para o Cosmion */
.text-success { color: #00ff88; } /* Cor verde para o Altos da Serra */

/* Ajuste de espaçamento para mobile */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }
    .btn-app-nav {
        width: 100%;
        justify-content: center;
    }
    .navbar-nav .btn-primary {
        width: 100%;
        margin-left: 0 !important;
    }
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Suporte para Safari/iOS */
    padding: 20px;
    border-radius: 20px;
    z-index: 999999; /* Aumentado para garantir prioridade total */
    display: none; /* Inicialmente escondido, controlado pelo JS */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animação Inteligente: Mantém o centro no mobile */
@keyframes slideUpMobile {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Animação Inteligente: Mantém o centro no Desktop */
@keyframes slideUpDesktop {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.cookie-banner.active {
    display: block;
    animation: slideUpMobile 0.5s ease-out forwards;
}

@media (min-width: 992px) {
    .cookie-banner {
        left: 50%;
        right: auto;
        width: auto;
        min-width: 700px;
        /* O segredo: usamos o translate fixo aqui */
        transform: translateX(-50%); 
    }
    
    .cookie-banner.active {
        /* No desktop, a animação precisa considerar o X e o Y juntos */
        animation: slideUpDesktop 0.5s ease-out forwards;
    }
}


/* Estilização Premium do FAQ - ConectaTI Style */
.faq-item {
    background: var(--dark-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary) !important;
    transform: translateX(5px);
}

.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-weight: 700;
    padding: 25px;
    font-size: 1.1rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-button::after {
    filter: invert(1); /* Deixa a seta branca */
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    line-height: 1.8;
}

/* Brilho na borda quando aberto */
.faq-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--primary) !important;
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.1);
}

    .client-logo{
    max-height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.7;
    transition: 0.4s ease;
}

.client-logo:hover{
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.tech-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 35px 20px;
    transition: .4s ease;
    height: 100%;
}

.tech-card:hover{
    transform: translateY(-8px);
    border-color: #7c3aed;
    background: rgba(124,58,237,0.08);
}

.tech-card i{
    font-size: 50px;
    color: #7c3aed;
    margin-bottom: 20px;
}

.tech-card h5{
    color: white;
    font-weight: 700;
}

.tech-card span{
    color: rgba(255,255,255,0.6);
}

.why-item{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-item i{
    width: 60px;
    height: 60px;
    background: rgba(124,58,237,0.1);
    color: #7c3aed;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-item h5{
    color: white;
    margin-bottom: 5px;
}

.why-item p{
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.glass-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
}

.terminal-header{
    display: flex;
    gap: 10px;
}

.terminal-header span{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #7c3aed;
}

.terminal-body p{
    color: #fff;
    font-family: monospace;
    margin-bottom: 12px;
}

.testimonial-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    transition: .4s ease;
}

.testimonial-card:hover{
    transform: translateY(-10px);
    border-color: #7c3aed;
}

.stars{
    color: gold;
    font-size: 20px;
}

.testimonial-card p{
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.testimonial-user{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.testimonial-user img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h6{
    color: white;
    margin-bottom: 3px;
}

.testimonial-user span{
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* HERO VIDEO SECTION */
.hero-video-section {
    position: relative;
    overflow: hidden;
    background: #050507;
    min-height: 100vh;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY - Ajustado para as cores da ConectaTI */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(5, 5, 10, 0.4) 0%, 
        rgba(5, 5, 10, 0.85) 60%, 
        #050505 100%);
    z-index: 1;
}

/* GRID - O efeito de malha tecnológica */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 123, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle, white 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle, white 30%, transparent 90%);
    z-index: 2;
}

/* CONTENT & TYPOGRAPHY */
.hero-title-video {
    font-size: clamp(2.8rem, 8vw, 5.5rem); /* Tamanho fluido */
    font-weight: 900;
    line-height: 1.1;
    color: white;
    letter-spacing: -3px;
    max-width: 1200px;
    margin: auto;
    /* Estabilização do Typed */
    min-height: 2.2em; 
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description-video {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* ESTABILIZADOR DO TYPED NO DESKTOP */
@media(min-width: 992px) {
    .hero-title-video {
        min-height: 220px; /* Garante que o texto debaixo não suba */
    }
}

@media(max-width: 768px) {
    .hero-title-video {
        font-size: 2.5rem;
        letter-spacing: -1px;
        min-height: 160px;
    }
    .hero-description-video {
        font-size: 1rem;
    }
}
/* Ajustes da Navbar Full Width */
.navbar-premium {
    background: rgba(5, 5, 5, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: all 0.4s ease;
}

/* Efeito de Padding em telas grandes */
@media (min-width: 1200px) {
    .navbar-premium.px-lg-5 {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
}

/* Status Dot Pulsante */
.status-dot-pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    display: inline-block;
}

.status-dot-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
    opacity: 0.7;
}

@keyframes pulse-status {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3); opacity: 0; }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo Estilizada */
.logo-icon-wrapper {
    background: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.nav-mini-text {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* Botão Consultoria com Glow */
.btn-navbar-glow {
    background: var(--primary);
    color: white !important;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 0 20px var(--primary-glow);
    border: none;
    transition: 0.3s;
}

.btn-navbar-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary);
    filter: brightness(1.1);
}



/* CSS Testemunhais Elite - Estilo ConectaTI */
.testimonial-card-elite {
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card-elite:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.active-glow {
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.anon-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.testimonial-card-elite p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsivo */
@media (max-width: 768px) {
    .testimonial-card-elite {
        padding: 30px;
    }
}

/* ESTILIZAÇÃO PSR - CONECTATI STYLE */
.case-psr-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    transition: var(--transition);
}

.case-psr-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-5px);
}

.case-icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.case-badge-status {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 5px 12px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-radius: 5px;
    letter-spacing: 1px;
}

.case-step label {
    display: block;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.case-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.case-result-box {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsividade */
@media (max-width: 768px) {
    .case-psr-card { padding: 25px; }
    .case-result-box .fs-3 { font-size: 1.5rem !important; }
}
/* Estilos Específicos para a Seção de Contato com Vídeo */
#contato .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.icon-box-small {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
    font-size: 1.1rem;
}

/* Efeito de Vidro nas Informações */
.bg-glass-hover {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.bg-glass-hover:hover {
    background: rgba(0, 123, 255, 0.08);
    border-color: var(--primary);
    transform: translateX(10px);
}

/* Garante que o select apareça bem no fundo escuro */
.custom-input option {
    background-color: #0f0f12;
    color: white;
}

/* BARRA DE CONFIANÇA - HERO */
.hero-trust-bar {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    background: rgba(255, 255, 255, 0.03); /* Efeito Vidro sutil */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Itens alternados com borda na cor do acento */
.trust-item.border-accent {
    border-color: rgba(0, 242, 254, 0.3);
}

.trust-item:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.trust-item i {
    color: #00ff88; /* Verde sucesso para os checks */
    font-size: 0.9rem;
    margin-right: 10px;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .trust-item {
        padding: 6px 12px;
    }
    .trust-item span {
        font-size: 0.65rem;
    }
}

/* CONTAINER DO CTA */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998; /* Um nível abaixo do cookie banner */
    transition: var(--transition);
}

/* BOTÃO ESTILO GLASSMORPHISM */
.cta-glass-button {
    display: flex;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 123, 255, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-glass-button:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px var(--primary-glow);
}

/* ÍCONE COM PULSO */
.cta-icon {
    position: relative;
    width: 35px;
    height: 35px;
    background: #25d366; /* Cor oficial WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.cta-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: cta-pulse-animation 2s infinite;
}

@keyframes cta-pulse-animation {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* TEXTO DO BOTÃO */
.cta-text {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 768px) {
    .floating-cta-container {
        bottom: 20px;
        right: 20px;
        left: 20px; /* No mobile ele vira uma barra inferior */
    }
    .cta-glass-button {
        justify-content: center;
        width: 100%;
        padding: 15px;
    }
    .cta-text {
        font-size: 0.75rem;
    }
}
/* CSS CORRIGIDO E MELHORADO PARA VIDEO BACKGROUND */

.process-step-card-video {
    background: rgba(15, 15, 18, 0.7); /* Fundo semi-transparente */
    backdrop-filter: blur(15px); /* Efeito de vidro reforçado */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 25px 40px;
    border-radius: 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    text-align: center;
}

.process-step-card-video:hover {
    background: rgba(0, 123, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.active-step-video {
    border-color: rgba(0, 123, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.1);
}

.step-number-video {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--primary-glow);
    border: 4px solid #050505;
}

.step-icon-video {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.process-step-card-video h4 {
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.process-step-card-video p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Linha conectora tecnológica */
.process-flow-line-video {
    position: absolute;
    top: 110px; /* Alinhada com os ícones */
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 50%, 
        var(--accent) 80%, 
        transparent 100%);
    opacity: 0.4;
    z-index: 1;
}

/* Ajuste do Video para esta seção específica */
#processo .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Stats Premium Style */
.stat-item-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-item-premium:hover {
    border-color: var(--primary);
    background: rgba(0, 123, 255, 0.05);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 10px;
    opacity: 0.8;
}

.ls-1 { letter-spacing: 1px; }

/* MVV Cards Refinados */
.mvv-card-glass {
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.active-mvv {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.1);
}

.mvv-card-glass:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}
/* ==========================================================================
   ESTILOS EXCLUSIVOS CONECTATI ELITE - PROJETOS
   ========================================================================== */
:root {
    --card-bg: rgba(15, 15, 18, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-blue: #007bff;
    --neon-cyan: #00f2fe;
}

/* Background Imersivo */
.project-page-bg {
    background-color: #050505;
    position: relative;
}

/* Card Estilo "Software Interface" */
.project-enterprise-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.project-enterprise-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 123, 255, 0.2);
}

/* Ilustrações SVG Animadas */
.svg-illustration-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: radial-gradient(circle at center, #11111d 0%, #050505 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.svg-illustration-wrapper svg {
    width: 70%;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    transition: 0.5s ease;
}

.project-enterprise-card:hover svg {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 0 40px var(--neon-cyan));
}

/* Tags e Labels de Alta Legibilidade */
.project-tag-premium {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 123, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-blue);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tech-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--neon-cyan);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-right: 8px;
    margin-bottom: 10px;
    display: inline-block;
    transition: 0.3s;
}

.tech-pill:hover {
    background: var(--neon-blue);
    color: #fff;
    border-color: var(--neon-blue);
}

/* Tipografia Refinada */
.project-content h2 { 
    color: #ffffff; 
    font-weight: 900; 
    font-size: 2.5rem; 
    letter-spacing: -1.5px;
}

.project-content p { 
    color: rgba(255, 255, 255, 0.8) !important; 
    font-size: 1.05rem;
    line-height: 1.8; 
}

.spec-label { 
    color: var(--neon-blue); 
    font-weight: 800; 
    font-size: 0.7rem; 
    letter-spacing: 1.5px; 
    display: block; 
    margin-bottom: 5px; 
}

.spec-value { 
    color: #ffffff; 
    font-weight: 600; 
    font-size: 1rem; 
}

@media (max-width: 991px) {
    .project-content h2 { font-size: 1.8rem; }
    .svg-illustration-wrapper { min-height: 300px; }
}
/* CSS SECURITY LAYER - CONECTATI STYLE */

.security-card {
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 25px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.security-card:hover {
    border-color: #00ff88;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.05);
}

.active-security {
    border-color: var(--primary);
    background: rgba(0, 123, 255, 0.03);
}

.security-icon {
    font-size: 2.2rem;
    color: #00ff88;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.security-card h4 {
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.security-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.6;
}

.security-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.security-list li {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-list li i {
    color: #00ff88;
    margin-right: 8px;
}

/* Efeito de Pulso para o Monitoramento */
.pulse-red i {
    color: #ff4d4d;
    animation: security-pulse 2s infinite;
}

@keyframes security-pulse {
    0% { filter: drop-shadow(0 0 0px rgba(255, 77, 77, 0)); }
    50% { filter: drop-shadow(0 0 15px rgba(255, 77, 77, 0.6)); }
    100% { filter: drop-shadow(0 0 0px rgba(255, 77, 77, 0)); }
}


/* CSS INFRAESTRUTURA - CONECTATI ELITE STYLE */

.infra-tech-card {
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 25px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.infra-tech-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(0, 123, 255, 0.02);
}

.active-infra {
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.05);
}

.infra-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.infra-header i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-right: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
}

.infra-header h4 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 0;
    font-size: 1.3rem;
}

.tech-stack-infra {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.infra-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(0, 123, 255, 0.1);
    padding: 4px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Barra de Monitoramento */
.monitoring-bar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mon-stat small {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.mon-stat p {
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: -0.5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .infra-tech-card { padding: 30px 20px; }
    .mon-stat { width: 45%; }
}

/* Ajustes para o Modal de Diagnóstico */
#modalDiagnostico .modal-content {
    border-radius: 40px;
}

#modalDiagnostico .custom-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    font-size: 0.9rem;
}

#modalDiagnostico .custom-input:focus {
    background: rgba(0, 123, 255, 0.05);
    border-color: var(--primary);
    box-shadow: none;
}

#modalDiagnostico .list-unstyled li {
    font-weight: 600;
    font-size: 0.95rem;
}

#modalDiagnostico .italic {
    font-style: italic;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Efeito de Vidro no Lado Esquerdo */
.bg-glass-modal {
    background: rgba(0, 123, 255, 0.05);
    backdrop-filter: blur(15px);
}
/* CSS SEGMENTOS - CONECTATI ELITE */

.segment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.segment-card:hover {
    background: rgba(0, 123, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.segment-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: 0.3s;
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.2));
}

.segment-card:hover .segment-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.segment-card h5 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.segment-dot {
    position: absolute;
    bottom: 15px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
}

.segment-card:hover .segment-dot {
    opacity: 1;
    box-shadow: 0 0 10px var(--primary);
}

/* Responsividade Mobile */
@media (max-width: 576px) {
    .segment-card {
        padding: 20px 10px;
    }
    .segment-icon {
        font-size: 1.5rem;
    }
    .segment-card h5 {
        font-size: 0.8rem;
    }
}

/* CSS SCANNER DE ELITE - CONECTATI SOLUTIONS */

.glass-scanner-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px !important;
    transition: all 0.3s ease;
}

.glass-scanner-group:focus-within {
    border-color: var(--primary);
    background: rgba(0, 123, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.glass-scanner-group input::placeholder {
    color: rgba(255,255,255,0.3);
    font-size: 0.95rem;
}

/* TERMINAL STYLE */
.terminal-header {
    background: #1a1a1e;
    border-radius: 15px 15px 0 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
}

.terminal-body {
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 15px 15px;
    min-height: 200px;
    box-shadow: inset 0 0 50px rgba(0, 123, 255, 0.05);
}

.terminal-text {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.85rem;
    color: #00ff88;
    line-height: 1.6;
}

/* DOTS */
.dot-red { width: 10px; height: 10px; background: #ff5f56; border-radius: 50%; }
.dot-yellow { width: 10px; height: 10px; background: #ffbd2e; border-radius: 50%; }
.dot-green { width: 10px; height: 10px; background: #27c93f; border-radius: 50%; }

/* RESULT BOXES */
.result-box-elite {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
}

.result-box-elite i {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.border-accent-glow {
    background: rgba(0, 123, 255, 0.03);
    border: 1px dashed rgba(0, 123, 255, 0.3);
}

.status-ok { color: #00ff88; filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4)); }
.status-fail { color: #ff4d4d; filter: drop-shadow(0 0 8px rgba(255, 77, 77, 0.4)); }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .glass-scanner-group { border-radius: 20px !important; }
    .glass-scanner-group button { width: 100%; border-radius: 15px !important; margin-top: 10px; }
}