 :root {
            --white: #ffffff;
            --bg-apple: #f5f5f7;
            --text-dark: #1d1d1f;
            --text-muted: #86868b;
            --apple-blue: #0071e3;
            --apple-blue-hover: #0077ed;
            --border: rgba(0,0,0,0.08);
            --card-radius: 28px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            background: var(--white); 
            color: var(--text-dark); 
            overflow-x: hidden; 
            -webkit-font-smoothing: antialiased; 
        }

        /* Efeito de Brilho que segue o Mouse */
        .mouse-glow {
            position: fixed; top: 0; left: 0; width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(0, 113, 227, 0.04) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%; pointer-events: none; z-index: 1; transform: translate(-50%, -50%);
            transition: opacity 1s;
        }

        .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

        /* NAVBAR PREMIUM */
        .navbar { 
            position: fixed; top: 15px; width: 95%; max-width: 1100px; left: 50%; transform: translateX(-50%) translateY(-100px); 
            z-index: 1000; background: rgba(255, 255, 255, 0.7); 
            backdrop-filter: saturate(180%) blur(20px); 
            border: 1px solid var(--border); 
            height: 64px; display: flex; align-items: center; border-radius: 20px;
            padding: 0 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; color: var(--text-dark); text-decoration: none; }
        .logo span { color: var(--apple-blue); }

        .nav-links { display: flex; gap: 8px; align-items: center; }
        .nav-item { 
            text-decoration: none; color: var(--text-dark); font-size: 13px; font-weight: 600; 
            padding: 10px 18px; border-radius: 12px; transition: 0.3s;
        }
        .nav-item:hover { background: rgba(0,0,0,0.04); color: var(--apple-blue); }
        
        .btn-cta-nav { 
            background: var(--apple-blue); color: #fff !important; 
            box-shadow: 0 4px 15px rgba(0, 113, 227, 0.2);
        }
        .btn-cta-nav:hover { background: var(--apple-blue-hover); transform: scale(1.05); }
/* FUNDO CINZA APPLE */
.hero {
    padding: 200px 0 120px;
    text-align: center;
    background-color: #f5f5f7; /* O cinza clássico da Apple */
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.03); /* Linha quase invisível no final */
}

/* TEXTO PRETO SÓLIDO */
.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 8vw, 82px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #1d1d1f; /* Preto sólido para máxima autoridade */
    margin-bottom: 25px;
}

/* AJUSTE DO PARÁGRAFO */
.hero p {
    color: #515154; /* Cinza escuro para leitura confortável */
    font-size: clamp(18px, 2.5vw, 24px);
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.5;
    font-weight: 500;
}

/* BOTÃO PRETO PARA CONTRASTE */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1d1d1f; /* Botão preto se destaca no fundo cinza */
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* BOTÃO PREMIUM (Contraste Máximo) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #515154; /* Botão preto para destacar no fundo cinza */
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: scale(1.03) translateY(-3px);
    background: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.btn-primary i {
    width: 20px;
    height: 20px;
}
        /* SECTION HEADERS */
        .section-padding { padding: 140px 0; }
        .section-header { text-align: center; margin-bottom: 80px; }
        .section-header span { color: var(--apple-blue); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; display: block; margin-bottom: 15px; }
        .section-header h2 { font-size: clamp(34px, 5vw, 52px); font-weight: 800; letter-spacing: -0.04em; }

        /* CARDS REFINADOS */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
        .service-card { 
            background: #fff; padding: 50px; border-radius: var(--card-radius); border: 1px solid var(--border); 
            transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; overflow: hidden;
        }
        .service-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--apple-blue); opacity: 0; transition: 0.3s;
        }
        .service-card:hover { transform: translateY(-15px); box-shadow: 0 40px 80px rgba(0,0,0,0.06); }
        .service-card:hover::before { opacity: 1; }
        
        .card-icon { color: var(--apple-blue); margin-bottom: 30px; }
        .service-card h3 { font-size: 26px; margin-bottom: 18px; font-weight: 700; }
        .service-card p { color: var(--text-muted); font-size: 17px; line-height: 1.6; margin-bottom: 30px; }

        /* PORTFOLIO LUXURY */
        .portfolio-item { border-radius: 36px; background: #fff; border: 1px solid var(--border); overflow: hidden; transition: 0.6s; }
        .portfolio-img-box { width: 100%; height: 320px; overflow: hidden; }
        .portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .portfolio-item:hover .portfolio-img { transform: scale(1.1) rotate(1deg); }

        /* FOOTER */
        footer { background: var(--bg-apple); padding: 100px 0 60px; border-top: 1px solid var(--border); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
        .footer-logo { font-size: 24px; font-weight: 800; margin-bottom: 20px; }
        .footer-links h4 { margin-bottom: 25px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .footer-links a { display: block; text-decoration: none; color: var(--text-muted); margin-bottom: 15px; transition: 0.3s; }
        .footer-links a:hover { color: var(--apple-blue); }

        /* UTILS */
        .reveal { opacity: 0; transform: translateY(40px); }

        @media (max-width: 768px) {
            .navbar { display: none; } /* Mobile Menu simplificado geralmente usa hambúrguer, mas mantivemos o foco no desktop premium */
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        /* CSS ESPECÍFICO PARA DEPOIMENTOS COM PREVIEW */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 30px;
    }

    .testimonial-card {
        background: var(--white);
        border-radius: var(--card-radius);
        overflow: hidden;
        border: 1px solid var(--border);
        transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        display: flex;
        flex-direction: column;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    }

    /* Mockup de Navegador */
    .site-preview {
        width: 100%;
        height: 180px;
        background: #f1f1f2;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid var(--border);
    }

    .browser-dots {
        padding: 10px 15px;
        display: flex;
        gap: 6px;
        background: #fff;
        border-bottom: 1px solid var(--border);
    }

    .browser-dots span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ddd;
    }

    .site-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top; /* Garante que vemos o topo do site */
        transition: 0.8s ease;
    }

    .testimonial-card:hover .site-preview img {
        object-position: bottom; /* Efeito sutil de scroll ao passar o mouse */
    }

    /* Conteúdo do Depoimento */
    .testimonial-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .quote-icon {
        color: #86868b; /* O cinza Apple que você escolheu */
        margin-bottom: 15px;
        opacity: 0.5;
    }

    .quote-icon i {
        color: #86868b; /* O cinza Apple que você escolheu */
        opacity: 0.5;    /* Deixa levemente transparente para ficar elegante */
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-dark);
        margin-bottom: 25px;
        font-style: italic;
    }

    .testimonial-footer {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid #f5f5f7;
    }

    .client-name {
        display: block;
        font-weight: 700;
        font-size: 15px;
        color: var(--text-dark);
    }

    .client-info {
        display: block;
        font-size: 13px;
     color: #86868b;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .testimonials-grid {
            grid-template-columns: 1fr;
        }
    }
     /* AJUSTES DE SIMETRIA E ALINHAMENTO */
    .section-padding-refined {
        padding: 80px 0; /* Reduzido para evitar vazio excessivo */
        position: relative;
        overflow: hidden;
    }

    .contact-flex-refined {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center; /* ALINHAMENTO VERTICAL CENTRAL */
        gap: 60px; /* Gap otimizado */
        max-width: 1050px;
        margin: 0 auto;
    }

    .title-contact-pro {
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.1;
        margin: 15px 0;
        color: #1d1d1f;
    }

    .description-contact-pro {
        font-size: 18px;
        color: #86868b;
        max-width: 400px;
        margin-bottom: 30px;
    }

    /* Specialist Refinado (Mais compacto) */
    .specialist-box-refined {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
        background: #fff;
        padding: 10px 15px;
        border-radius: 16px;
        width: fit-content;
        border: 1px solid rgba(0,0,0,0.03);
    }
    .specialist-box-refined img { width: 94px; height: 94px; border-radius: 50%; object-fit: cover; }
    .specialist-box-refined strong { display: block; font-size: 14px; }
    .specialist-box-refined span { font-size: 12px; color: #86868b; }

    /* Widgets em Grade Simétrica */
    .contact-widgets-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 400px;
    }
    .widget-mini {
        background: #fff;
        padding: 12px;
        border-radius: 14px;
        text-decoration: none;
        color: #1d1d1f;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 600;
        border: 1px solid rgba(0,0,0,0.03);
        transition: 0.3s;
    }
    .widget-mini:hover { border-color: #0071e3; transform: translateY(-2px); }
    .w-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; }
    .w-icon.wa { background: #25d366; }
    .w-icon.mail { background: #1d1d1f; }

    /* Portal de Consultoria Simétrico */
    .consultancy-portal-refined {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid #fff;
        border-radius: 28px;
        padding: 40px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    }

    .portal-header { margin-bottom: 30px; }
    .window-controls { display: flex; gap: 5px; margin-bottom: 15px; }
    .window-controls span { width: 9px; height: 9px; border-radius: 50%; background: #d2d2d7; }
    .portal-header h3 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
    .portal-header p { font-size: 14px; color: #86868b; }

    /* Form Simétrico */
    .field-refined { margin-bottom: 15px; }
    .field-refined input, .field-refined textarea {
        width: 100%;
        padding: 16px;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.05);
        background: rgba(0,0,0,0.02);
        font-size: 15px;
        font-family: inherit;
        transition: 0.3s;
    }
    .field-refined input:focus, .field-refined textarea:focus {
        background: #fff; border-color: #0071e3; outline: none;
    }
/* Botão de Consultoria - Cinza Minimalista */
.btn-portal-refined {
    width: 100%;
    background: #f5f5f7; /* Cinza Apple bem claro */
    color: #1d1d1f; /* Texto quase preto para contraste */
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Borda sutil */
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none; /* Sem sombra pesada para manter o minimalismo */
}

.btn-portal-refined:hover {
    background: #e8e8ed; /* Cinza levemente mais profundo no hover */
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-portal-refined:active {
    background: #d2d2d7; /* Feedback de clique mais escuro */
    transform: scale(0.98);
}

/* Estilizando o ícone dentro do botão para ser discreto */
.btn-portal-refined i {
    font-size: 16px;
    opacity: 0.6; /* Ícone levemente transparente */
}
    @media (max-width: 850px) {
        .contact-flex-refined { grid-template-columns: 1fr; gap: 40px; text-align: center; }
        .specialist-box-refined, .contact-widgets-grid { margin-left: auto; margin-right: auto; }
        .description-contact-pro { margin-left: auto; margin-right: auto; }
    }
    /* FOOTER PREMIUM REFINADO */
#main-footer {
    background: #fff;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand { max-width: 400px; }

.footer-logo {
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span { color: #86868b; font-weight: 300; } /* WEBDESIGN em cinza claro */

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #86868b;
    margin-bottom: 25px;
}

/* Status Pill */
.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    background: #f5f5f7;
    padding: 6px 14px;
    border-radius: 100px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00d084; /* Verde discreto de online */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 208, 132, 0.4);
}

/* Colunas de Links */
.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #1d1d1f;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #86868b;
    font-size: 15px;
    margin-bottom: 12px;
    transition: 0.2s;
}

.footer-column a:hover { color: #1d1d1f; transform: translateX(3px); }

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal { display: flex; align-items: center; gap: 30px; }
.footer-legal p { font-size: 13px; color: #86868b; }

.legal-links { display: flex; gap: 20px; }
.legal-links a { font-size: 13px; color: #86868b; text-decoration: none; }
.legal-links a:hover { text-decoration: underline; }

.scroll-top {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mobile */
@media (max-width: 850px) {
    .footer-top { flex-direction: column; gap: 50px; }
    .footer-nav-group { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 25px; text-align: center; }
    .footer-legal { flex-direction: column; gap: 10px; }
}

/* RESET E POSICIONAMENTO DA NAV */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    height: 70px; /* Altura fixa para evitar bugs */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.nav-container {
    width: 100%;
    height: 100%;
    /* Deixando o fundo da barra um pouco mais claro para o botão cinza destacar */
    background: rgba(255, 255, 255, 0.8) !important; 
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

/* LOGO */
.logo-tech {
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    color: #1d1d1f;
    flex-shrink: 0;
}
.silver-text { color: #86868b; font-weight: 400; }/* Container do Menu - sem fundo, apenas organiza os botões */
.nav-menu {
    display: flex;
    gap: 8px; /* Espaço entre os botões */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}
/* --- Itens do Menu Principal (AJUSTADO) --- */
.nav-item-tech {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.04) !important; /* Fundo cinza suave */
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
    border-radius: 0 !important; /* Quadrado como pedido */
    transition: all 0.3s ease;
}

/* Cor das Letras (Default) */
.nav-item-tech span {
    color: #888888 !important; /* Força o cinza escuro nas letras */
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Cor dos Ícones (Default) */
.nav-item-tech .icon-box i {
    stroke: #888888 !important; /* Em Lucide usamos STROKE para mudar a cor */
    color: #888888 !important;
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

/* --- ESTADO HOVER (AO PASSAR O MOUSE) --- */

.nav-item-tech:hover {
    background: rgba(0, 0, 0, 0.1) !important; /* Fundo escurece um pouco */
}

/* Letras ficam brancas no hover */
.nav-item-tech:hover span {
    color: #ffffff !important;
}

/* Ícones ficam brancos no hover */
.nav-item-tech:hover .icon-box i {
    stroke: #ffffff !important;
    color: #ffffff !important;
}
/* BOTÃO INICIAR PROJETO (CHROME/SILVER) */
.cta-silver {
    position: relative;
    padding: 12px 22px;
    background: #1d1d1f;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    transition: 0.3s;
    flex-shrink: 0;
}

.cta-silver:hover {
    transform: scale(1.03);
    background: #000;
}

.shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}
/* FORÇAR COR DOS ÍCONES NO MENU PRINCIPAL */
.nav-item-tech .icon-box i, 
.nav-item-tech .icon-box svg {
    stroke: #888888 !important; /* Cor cinza escura */
    color: #888888 !important;
    fill: none; /* Garante que o ícone não fique "pintado" por dentro */
    transition: all 0.3s ease;
}

/* FORÇAR COR DO TEXTO NO MENU PRINCIPAL */
.nav-item-tech span {
    color: #888888 !important;
    transition: all 0.3s ease;
}

/* --- EFEITO AO PASSAR O MOUSE (HOVER) --- */

/* Ícones ficam brancos no hover */
.nav-item-tech:hover .icon-box i, 
.nav-item-tech:hover .icon-box svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

/* Texto fica branco no hover */
.nav-item-tech:hover span {
    color: #ffffff !important;
}

/* --- AJUSTE DA ABA (DROPDOWN) --- */

/* Garantir que os ícones dentro da aba também sigam a regra */
.dropdown-link {
    color: #888888 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-link svg, 
.dropdown-link i {
    stroke: #888888 !important;
}

.dropdown-link:hover {
    color: #ffffff !important;
}

.dropdown-link:hover svg {
    stroke: #ffffff !important;
}
.nav-item-tech:hover {
    background: rgba(0, 0, 0, 0.08) !important; /* Um fundo cinza bem leve para destacar o preto */
}

/* Letras ficam pretas no hover */
.nav-item-tech:hover span {
    color: #000000 !important;
}

/* Ícones ficam pretos no hover */
.nav-item-tech:hover .icon-box i,
.nav-item-tech:hover .icon-box svg {
    stroke: #000000 !important;
    color: #000000 !important;
}

/* --- HOVER DA ABA SOLUÇÕES (LETRA E ÍCONE PRETOS) --- */

.dropdown-link:hover {
    background-color: rgba(0, 0, 0, 0.05) !important; /* Fundo sutil na aba */
    color: #000000 !important; /* Texto preto */
}

.dropdown-link:hover svg,
.dropdown-link:hover i {
    stroke: #000000 !important; /* Ícone preto */
}
/* --- A ABA (Dropdown Menu) - Design Cinza Claro e Transparente --- */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    
    /* Fundo Cinza Bem Claro e Transparente */
    background: rgba(245, 245, 247, 0.8) !important; 
    backdrop-filter: blur(15px); /* Efeito de vidro embaçado */
    -webkit-backdrop-filter: blur(15px);
    
    /* Quadrado e com borda sutil */
    border-radius: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    
    display: none;
    z-index: 10000;
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Links dentro da Aba (Soluções) */
.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    text-decoration: none;
    background: transparent !important; /* Sem fundo por padrão */
    
    /* Letras Cinza Escuro */
    color: #555555 !important; 
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Ícones dentro da aba (Cinza Escuro) */
.dropdown-link i, 
.dropdown-link svg {
    stroke: #555555 !important;
    width: 16px;
    height: 16px;
    transition: all 0.2s ease;
}

/* --- HOVER NA ABA (AO PASSAR O MOUSE) --- */

.dropdown-link:hover {
    /* Fundo sutil para o item focado */
    background: rgba(0, 0, 0, 0.03) !important;
    
    /* Letras ficando Pretas */
    color: #000000 !important; 
}

/* Ícones ficando Pretos no hover */
.dropdown-link:hover i, 
.dropdown-link:hover svg {
    stroke: #000000 !important;
}

/* --- MANTER A ABA ABERTA --- */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Ponte invisível para o mouse não perder a aba */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}
@keyframes shimmer {
    0% { left: -100%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* MOBILE - ESSENCIAL PARA NÃO BUGAR */
@media (max-width: 900px) {
    .nav-menu { display: none; } /* Esconde o menu complexo em telas pequenas */
    .nav-container { justify-content: space-between; }
}



.stats-bar {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.stat-item { text-align: center; }

.stat-value {
    font-size: 38px;
    font-weight: 800;
    color: #1d1d1f;
    display: block;
}

/* Símbolos automáticos */
.stat-item:nth-child(1) .stat-value::after,
.stat-item:nth-child(4) .stat-value::after,
.stat-item:nth-child(5) .stat-value::after { content: '%'; font-size: 20px; }
.stat-item:nth-child(2) .stat-value::after,
.stat-item:nth-child(3) .stat-value::after { content: '+'; font-size: 20px; }

.stat-desc { font-size: 12px; color: #86868b; text-transform: uppercase; font-weight: 600; }

.stat-icon { color: #DBEAFE; margin-bottom: 10px; display: inline-block; }
.stat-icon i { stroke: #5b89c9; }

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
/* --- Itens do Menu Principal (Mais Estreitos) --- */
.nav-item-tech {
    display: flex;
    align-items: center;
    gap: 6px; /* Espaço reduzido entre ícone e texto */
    padding: 6px 10px; /* Reduzido para ficar mais estreito */
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    border-radius: 0 !important; /* Totalmente quadrado */
    transition: background 0.3s;
}

/* --- Dropdown Container --- */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- A ABA (Dropdown Menu) --- */
.dropdown-menu {
    position: absolute;
    top: 100%; /* Inicia logo abaixo do botão */
    left: 0;
    min-width: 200px;
    background: rgba(30, 30, 30, 0.9); /* Cinza Transparente */
    backdrop-filter: blur(10px); /* Efeito blur */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 !important; /* Totalmente quadrada */
    display: none; /* Escondido por padrão */
    z-index: 1000;
    padding: 0;
}

/* Zona de segurança para o mouse não "perder" a aba ao descer */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

/* Exibir ao passar o mouse */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Links dentro da Aba */
.dropdown-link {
    display: block;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
    background-color: rgba(255, 255, 255, 0.05); /* Fundo cinza bem transparente */
    margin: 2px 0; /* Cria um pequeno espaço entre os botões da aba */
    color: #888888; /* Aplica o mesmo cinza escuro nas letras da aba */
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.15); /* Fica um pouco mais claro ao passar o mouse */
    color: #ffffff; /* Letra fica branca no hover */
}

/* COR PADRÃO DA SETA (CINZA ESCURO) */
.chevron-icon {
    stroke: #888888 !important; /* Cor igual aos outros ícones e textos */
    width: 14px;
    height: 14px;
    margin-left: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* QUANDO PASSAR O MOUSE NO BOTÃO SOLUÇÕES */
.nav-item-tech.dropdown:hover .chevron-icon {
    stroke: #000000 !important; /* Muda para preto no hover */
    transform: rotate(180deg); /* Faz a setinha girar para cima */
}

/* GARANTIA PARA O ÍCONE DENTRO DO ICON-BOX */
.nav-item-tech.dropdown:hover .icon-box i {
    stroke: #000000 !important;
}

.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

/* Remover arredondamento do botão Iniciar Projeto também se necessário */
.cta-silver {
    border-radius: 0 !important;
}

/* Ajuste do container para não cortar o menu */
#navbar {
    overflow: visible !important;
}
/* --- ESTILO MOBILE FIEL --- */
@media (max-width: 950px) {
    .nav-menu { display: none !important; }
    .mobile-toggle { display: flex !important; }
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 35px;
    height: 35px;
    background: #f5f5f7;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    cursor: pointer;
    z-index: 10001;
}

.mobile-toggle .line {
    width: 18px;
    height: 2px;
    background: #1d1d1f;
    transition: 0.3s;
}

.mobile-toggle.active .line:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.mobile-toggle.active .line:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Overlay corrigido */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: none; /* Começa como none */
    flex-direction: column;
    padding-top: 100px;
}

.mobile-menu-overlay.active {
    display: flex !important; /* Aparece apenas no clique */
}

.mobile-list {
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    gap: 20px;
}

.m-item {
    font-size: 26px;
    font-weight: 700;
    color: #1d1d1f;
    text-decoration: none;
}

.m-group {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #86868b;
    letter-spacing: 1px;
}

.m-sub {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
}
/* --- ESTILO DO CARD EXPANSÍVEL --- */
.text-container {
    max-height: 100px; /* Esconde o texto */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

/* Classe que o JavaScript vai aplicar */
.text-container.aberto {
    max-height: 1500px !important;
}

/* Sombra para o fundo cinza da seção */
.text-container.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(transparent, #f5f5f7);
    pointer-events: none;
}

/* Estilo do Botão */
.read-more-btn {
    background: #e8e8ed;
    border: none;
    color: #0071e3;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin: 15px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Garante que a imagem não suma */
.site-preview {
    display: block !important;
    height: 180px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* --- CONTAINER DE TEXTO (FADE SUAVE) --- */
.text-container {
    max-height: 90px; /* Mais curto para um visual mais limpo */
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-container.aberto {
    max-height: 1200px !important;
}

/* O gradiente agora é mais sutil e longo */
.text-container.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(transparent, #f5f5f7); /* Cor do fundo da seção */
    pointer-events: none;
    transition: opacity 0.4s;
}

.text-container.aberto::after { opacity: 0; }

/* --- BOTÃO ULTRA-CLEAN --- */
.read-more-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Borda quase invisível */
    color: #515154; /* Cinza escuro elegante */
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
    cursor: pointer;
    margin: 15px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    border-color: rgba(0, 0, 0, 0.3);
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.02);
}

/* Micro-animação da setinha */
.read-more-btn i {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-btn.active {
    background: #1d1d1f;
    color: #fff;
    border-color: #1d1d1f;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

/* Garantia da imagem do portfólio */
.site-preview {
    display: block !important;
    opacity: 1 !important;
}
/* --- AJUSTE MOBILE PARA O BOTÃO DA NAV --- */
@media (max-width: 480px) {
    /* Esconde a palavra PROJETO */
    .hide-mobile {
        display: none;
    }

    /* Ajusta levemente o tamanho do botão para não ficar desproporcional */
    .cta-silver {
        padding: 10px 15px !important;
        font-size: 12px !important;
        letter-spacing: 0.5px;
    }
}
/* NAVBAR - Garantir que fique no topo de tudo */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    height: 64px;
    z-index: 10000 !important; /* Valor bem alto */
    display: flex;
    align-items: center;
}

/* BOTÃO MOBILE */
.mobile-toggle {
    display: none; /* Escondido por padrão, aparece no media query */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: #f5f5f7;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 10001; /* Acima da navbar */
}

.mobile-toggle .line {
    width: 20px;
    height: 2px;
    background: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* O "X" - Quando a classe active for aplicada */
.mobile-toggle.active .line:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.mobile-toggle.active .line:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

/* MENU MOBILE (OVERLAY) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 9000; /* Menor que a navbar (10000) */
    display: none;
    flex-direction: column;
    padding-top: 100px; /* Espaço para não bater na navbar */
}

.mobile-menu-overlay.active {
    display: flex !important;
}

/* MEDIA QUERY */
@media (max-width: 950px) {
    .mobile-toggle {
        display: flex !important;
    }
}
/* NAVBAR - Garantir que fique no topo de tudo */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    height: 64px;
    z-index: 10000 !important; /* Valor bem alto */
    display: flex;
    align-items: center;
}

/* BOTÃO MOBILE */
.mobile-toggle {
    display: none; /* Escondido por padrão, aparece no media query */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: #f5f5f7;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 10001; /* Acima da navbar */
}

.mobile-toggle .line {
    width: 20px;
    height: 2px;
    background: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* O "X" - Quando a classe active for aplicada */
.mobile-toggle.active .line:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.mobile-toggle.active .line:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

/* MENU MOBILE (OVERLAY) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 9000; /* Menor que a navbar (10000) */
    display: none;
    flex-direction: column;
    padding-top: 100px; /* Espaço para não bater na navbar */
}

.mobile-menu-overlay.active {
    display: flex !important;
}

/* MEDIA QUERY */
@media (max-width: 950px) {
    .mobile-toggle {
        display: flex !important;
    }
}