/* ==========================================
   1. CONFIGURAÇÕES GERAIS E RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #020617; /* slate-950 */
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   2. HEADER (CABEÇALHO)
   ========================================== */
header {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(224, 242, 254, 0.8); /* #E0F2FE/80 */
    backdrop-filter: blur(24px);
    border-bottom: 1px solid #BAE6FD;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinhamento vertical corrigido */
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

/* Menu de Navegação */
nav {
    display: none; /* Escondido no mobile por padrão */
}

@media (min-width: 768px) {
    nav {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
}

nav a {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0C4A6E;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1;
    position: relative;
}

/* Efeito de linha animada no Menu */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px; /* Ajustado para ficar próximo ao texto */
    left: 0;
    background-color: #7c3aed;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================
   3. BOTÕES
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
    transform: scale(1.05);
}

.btn-hero-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   4. SEÇÃO HERO (PRINCIPAL)
   ========================================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 15rem 0 11rem 0;
    background: linear-gradient(86deg, #0069F9 3.56%, #004FBB 96.44%);
    text-align: center;
}

/* Camada da Imagem Profissional de Fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/cortex_tecnologia.png'); 
    
    /* 'cover' faz a imagem preencher tudo, 'contain' mostra ela inteira */
    background-size: cover; 
    
    /* 'center' centraliza. Use 'bottom center' se quiser que a base da imagem alinhe com o fim da seção */
    background-position: center; 
    
    background-repeat: no-repeat;
    
    /* Aumente para 0.4 se quiser que a imagem apareça mais, ou 0.2 para ser mais sutil */
    opacity: 0.3; 
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2; /* Garante que o texto fique na frente da imagem */
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .hero h1 { font-size: 4.5rem; }
}

.text-gradient {
    background: linear-gradient(to right, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    text-align: justify;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-btns { flex-direction: row; }
}

/* ==========================================
   5. SEÇÃO DE FEATURES (FUNCIONALIDADES)
   ========================================== */
.features {
    padding: 6rem 0;
    background-color: #020617;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.divider {
    height: 4px;
    width: 80px;
    background-color: #a855f7;
    margin: 1rem auto 0;
}

.grid-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-features { grid-template-columns: repeat(3, 1fr); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* ==========================================
   SEÇÃO: EXPERTISE (Symmetry Layout)
   ========================================== */
.expertise {
    background-color: #ffffff; /* Fundo Branco conforme solicitado */
    padding: 6rem 0;
    color: #0c4a6e;
}

.expertise-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.expertise-header .badge {
    color: #38bdf8;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.expertise-header h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: #0f172a;
}

.expertise-header p {
    color: #64748b;
    font-size: 1.125rem;
}

/* Container que envolve as colunas e a imagem */
.expertise-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Configuração para Desktop (Lado a Lado) */
@media (min-width: 992px) {
    .expertise-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .expertise-side {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .expertise-center {
        flex: 1.2; /* Dá um pouco mais de destaque para a imagem central */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 2rem;
    }

    /* ESTILO DOS CARDS DO LADO DIREITO (Simetria) */
    .expertise-side:last-child .expertise-item {
        border-left: none;
        border-right: 4px solid #38bdf8; /* Borda no lado direito */
        text-align: right;              /* Texto alinhado à direita */
    }

    /* Ajuste do efeito Hover para o lado direito */
    .expertise-side:last-child .expertise-item:hover {
        transform: translateX(-10px); /* Move em direção à imagem */
    }
}

/* Imagem Central */
.expertise-center img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(12, 74, 110, 0.15));
}

/* Estilo Base do Item (Lado Esquerdo e Mobile) */
.expertise-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #38bdf8; /* Padrão na esquerda */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.expertise-item:hover {
    background: #f1f5f9;
    transform: translateX(10px); /* Move em direção à imagem */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.expertise-item h3 {
    font-size: 1.1rem;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.expertise-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Ajustes para Mobile (Tudo empilhado com borda na esquerda) */
@media (max-width: 991px) {
    .expertise-item {
        text-align: left !important;
        border-right: none !important;
        border-left: 4px solid #38bdf8 !important;
    }
    
    .expertise-side:last-child .expertise-item:hover {
        transform: translateX(10px);
    }
}

/* ==========================================
   SEÇÃO: CONTATO (PREMIUM GLASSMORPHISM)
   ========================================== */
.contact {
    padding: 8rem 0;
    background-color: #020617; /* Fundo escuro para contrastar o vidro */
    position: relative;
    overflow: hidden;
}

/* Efeito de luzes de fundo (Glows) */
.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

/* O Card Principal de Vidro */
.contact-card {
    background: rgba(168, 85, 247, 0.1); /* Sua cor base solicitada */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(192, 132, 252, 0.3); /* Cor #c084fc com transparência */
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
    transform: scale(1.01);
    border-color: rgba(192, 132, 252, 0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Lado Esquerdo */
.contact-info h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: #ffffff;
}

.contact-info p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(192, 132, 252, 0.2);
    border: 1px solid rgba(192, 132, 252, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-item h4 {
    color: #c084fc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-item p {
    margin: 0;
    color: #f1f5f9;
    font-size: 1rem;
}

/* Lado Direito: O Formulário */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: #c084fc;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.3);
}

/* Botão com efeito de Brilho */
.btn-full {
    width: 100%;
    padding: 1.2rem !important;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem !important;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .contact-card {
        padding: 2rem;
        border-radius: 25px;
    }
    .contact-info h2 {
        font-size: 2.2rem;
    }
}
/* --- Novos Estilos para Redes Sociais e Mapas --- */

.maps-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #c084fc;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.maps-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084fc;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: #c084fc;
    color: #ffffff;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.4);
}

/* Ajuste fino nos inputs para incluir o ícone de telefone visualmente */
.input-group input[type="tel"] {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23c084fc" viewBox="0 0 16 16"><path d="M3.654 1.328a.678.678 0 0 0-1.015-.063L1.605 2.3c-.483.484-.661 1.169-.45 1.77a17.568 17.568 0 0 0 4.168 6.608 17.569 17.569 0 0 0 6.608 4.168c.601.211 1.286.033 1.77-.45l1.034-1.034a.678.678 0 0 0-.063-1.015l-2.307-1.794a.678.678 0 0 0-.58-.122l-2.19.547a1.745 1.745 0 0 1-1.657-.459L5.482 8.062a1.745 1.745 0 0 1-.46-1.657l.548-2.19a.678.678 0 0 0-.122-.58L3.654 1.328z"/></svg>');
    background-repeat: no-repeat;
    background-position: 95% center;
}

/* ==========================================
   SEÇÃO: PRODUTOS (UNIFORM PREMIUM)
   ========================================== */
.products {
    padding: 8rem 0;
    background: linear-gradient(86deg, #0069F9 3.56%, #004FBB 96.44%);
    position: relative;
}

.section-title-products {
    text-align: center;
    margin-bottom: 5rem;
}

.text-gradient-alt {
    font-size: 3.5rem;
    background: linear-gradient(to right, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* O CARD ESTRUTURADO */
.product-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden; /* Garante que o header respeite o arredondamento */
    display: flex;
    flex-direction: column;
    height: 600px; /* Tamanho uniforme para todos */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.4);
}

/* HEADER DO CARD (30% do topo) */
.product-header {
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.product-logo {
    max-width: 70%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* DEGRADÊS POR PRODUTO */
.bg-guardiandoc { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.bg-modametric  { background: linear-gradient(135deg, #c084fc, #7c3aed); }
.bg-lia         { background: linear-gradient(135deg, #10b981, #059669); }
.bg-keepp       { background: linear-gradient(135deg, #fef08a, #facc15);}

/* CORPO DO CARD */
.product-body {
    height: 70%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-body h3 {
    font-size: 1.1rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-weight: 800;
}

.product-body p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Garante que o texto ocupe o espaço e alinhe os botões */
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.product-features li {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li::before {
    content: '→';
    color: #0069F9;
    font-weight: bold;
}

/* BOTÕES */
.btn-product, .btn-product-white {
    width: 100%;
    padding: 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-product {
    background: #f1f5f9;
    color: #0069F9;
    border: 1px solid #e2e8f0;
}

.btn-product:hover {
    background: #0069F9;
    color: white;
}

.btn-product-white {
    background: linear-gradient(to right, #c084fc, #60a5fa);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-product-white:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Card em Destaque */
.product-card.featured {
    border: 2px solid #c084fc;
    transform: scale(1.03);
}
/* ==========================================
   SEÇÃO: INTEL (DIFERENCIAIS - WHITE MODE)
   ========================================== */
.intelligence {
    padding: 10rem 0;
    background-color: #ffffff; /* Fundo Branco solicitado */
    color: #0c4a6e; /* Azul Escuro Base */
    position: relative;
}

.intel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .intel-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.badge-blue {
    background: #e0f2fe;
    color: #0069F9;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-blue-gradient {
    background: linear-gradient(to right, #0069F9, #004FBB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intel-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: #0f172a;
}

.intel-content p {
    color: #64748b; /* Cinza azulado para leitura suave */
    font-size: 1.2rem;
    max-width: 500px;
}

.intel-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.text-dark-blue {
    font-size: 2.8rem;
    color: #0069F9 !important; /* Azul vibrante */
    font-weight: 800;
    margin-bottom: 0;
}

.stat-item span {
    color: #94a3b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Estilo dos Pilares à Direita */
.intel-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar-card {
    background: #f8fafc; /* Azul claríssimo */
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #bae6fd; /* Azul muito claro para o número */
}

.pillar-card h3 {
    margin-bottom: 0.5rem;
    color: #0c4a6e; /* Azul Escuro */
    font-size: 1.4rem;
    font-weight: 700;
}

.pillar-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Efeito de Destaque no Card */
.pillar-card.active, .pillar-card:hover {
    background: #ffffff;
    border-color: #0069F9;
    transform: translateX(20px);
    box-shadow: 0 20px 40px rgba(0, 105, 249, 0.1);
}

.pillar-card.active .pillar-num, .pillar-card:hover .pillar-num {
    color: #0069F9;
}

@media (max-width: 768px) {
    .pillar-card:hover {
        transform: none;
    }
}
/* ==========================================
   SEÇÃO: FOOTER (BLUE GRADIENT EDITION)
   ========================================== */
.main-footer {
    /* O degradê azul solicitado */
    background: linear-gradient(86deg, #0069F9 3.56%, #004FBB 96.44%);
    padding: 6rem 0 2rem 0;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Coluna Sobre */
.footer-col.about {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .footer-col.about { grid-column: span 1; }
}

.footer-logo {
    width: 150px;
    margin-bottom: 1.5rem;
    /* Caso a logo seja escura, este filtro a torna branca via CSS */
    filter: brightness(0) invert(1); 
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Títulos e Links */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.9rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(8px);
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #0069F9;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Rodapé Inferior */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.copyright p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-info-chips {
    display: flex;
    gap: 1.5rem;
}

.footer-info-chips span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.footer-info-chips i {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   SEÇÃO: RPA AUTOMATION (WHITE & LIGHT BLUE)
   ========================================== */
.rpa-automation {
    padding: 10rem 0;
    background-color: #ffffff; /* Fundo Branco */
    overflow: hidden;
    position: relative;
}

.rpa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .rpa-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}

/* --- Lado Visual (Imagem e Elementos Flutuantes) --- */
.rpa-visual {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rpa-blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseBlob 6s infinite alternate;
}

/* Ajuste para a sua imagem no lugar do ícone */
.rpa-visual img {
    max-width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(56, 189, 248, 0.2));
}

.floating-process {
    position: absolute;
    background: #ffffff;
    border: 1px solid #bae6fd; /* Borda azul claro */
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0369a1; /* Azul médio */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    z-index: 3;
    white-space: nowrap;
}

/* Posicionamento dos cards flutuantes */
.p1 { 
    top: 20%; 
    left: -5%; 
    animation: floatY 4s infinite ease-in-out; 
}

.p2 { 
    bottom: 10%; 
    left: 0%; 
    animation: floatY 5s infinite ease-in-out 1s; 
}

/* Ajuste p3: Alinhado com a altura do título ao lado */
.p3 { 
    top: 0; 
    right: -2%; 
    animation: floatY 6s infinite ease-in-out 2s; 
}

/* --- Lado de Conteúdo --- */
.badge-light-blue {
    display: inline-block;
    background: #f0f9ff;
    color: #38bdf8; /* Azul Claro */
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.title-blue {
    font-size: 3.2rem;
    color: #0c4a6e; /* Azul Escuro */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-light-gradient {
    background: linear-gradient(to right, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: #64748b;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.rpa-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.rpa-item {
    display: flex;
    gap: 1.5rem;
}

.rpa-icon-box {
    width: 60px;
    height: 60px;
    background: #f0f9ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #38bdf8; /* Azul Claro */
    flex-shrink: 0;
}

.rpa-item h4 {
    color: #0c4a6e;
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.rpa-item p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Botão Estilizado */
.btn-rpa-outline {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-rpa-outline:hover {
    background: #38bdf8;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
    transform: translateY(-3px);
}

/* --- ANIMAÇÕES --- */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulseBlob {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.3); opacity: 0.8; }
}

/* Responsividade */
@media (max-width: 991px) {
    .rpa-visual {
        margin-bottom: 3rem;
    }
    .p1, .p2, .p3 {
        position: relative;
        display: inline-block;
        margin: 5px;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    .title-blue {
        font-size: 2.5rem;
    }
}

/* ==========================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

/* Balão de texto (Tooltip) */
.whatsapp-tooltip {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #0c4a6e;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-right: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* O Botão Circular */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Efeito de Pulsação (Radar) */
.pulse-ring {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-tooltip {
        display: none; /* Esconde o texto no mobile para não ocupar tela */
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}

/* ==========================================
   SEÇÃO: TECH STACK (PREMIUM DARK)
   ========================================== */
.tech-stack {
    padding: 10rem 0;
    background-color: #020617; /* Cor solicitada */
    position: relative;
}

.tech-header {
    text-align: center;
    margin-bottom: 5rem;
}

.badge-tech {
    background: rgba(124, 58, 237, 0.1);
    color: #a855f7;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ==========================================
   TECH STACK - VERSÃO OFICIAL PREMIUM
   ========================================== */
.tech-stack {
    padding: 8rem 0;
    background-color: #020617;
    color: #fff;
}

.tech-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-title i {
    color: #38bdf8;
    font-size: 1.5rem;
}

/* Grid de ícones oficiais */
.tech-grid-official {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 1.5rem;
}

.tech-item-mini {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.tech-item-mini i {
    font-size: 2.8rem;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.5));
}

.tech-item-mini span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
    text-align: center;
}

.tech-item-mini:hover {
    transform: translateY(-10px);
    background: #0f172a;
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Card Especial de IA */
.ai-premium-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.5));
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.ai-icon-group {
    position: relative;
    font-size: 4rem;
}

.ai-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: #7c3aed;
    filter: blur(40px);
    opacity: 0.4;
    z-index: -1;
}

.ai-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-content p {
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .tech-grid-official {
        grid-template-columns: repeat(3, 1fr);
    }
    .ai-premium-card {
        flex-direction: column;
        text-align: center;
    }
}
 
/* Overlay do Modal com Blur */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.9); /* Azul escuro profundo */
    backdrop-filter: blur(10px);
    display: none; /* Escondido por padrão */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Container do Vídeo */
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(34, 211, 238, 0.2); /* Glow cyan sutil */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-content video {
    width: 100%;
    display: block;
    outline: none;
}

/* Botão Fechar Estilizado */
.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.video-modal-close:hover {
    color: var(--accent-cyan);
    transform: rotate(90deg);
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .video-modal-close {
        top: 10px;
        right: 10px;
        z-index: 10;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
}
/* Corrigindo o botão específico do KEEP para acompanhar a marca */
.product-card:has(.bg-keep) .btn-product:hover {
    background: #facc15; /* O amarelo do KEEP */
    border-color: #facc15;
    color: #000; /* Texto escuro para melhor contraste no amarelo */
}
.product-card.featured-keep {
    border: 2px solid #facc15; /* Borda amarela */
    transform: scale(1.03);
}