/* --- PSTec: Estilo Definitivo --- */
:root {
    --neon-green: #00E6A0;
    --deep-blue: #0A192F;
    --card-blue: #132743;
    --light-bg: #F9FAFB;
    --pstec-blue: #2563EB;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--deep-blue); 
    color: #FFFFFF; 
    overflow-x: hidden; 
    line-height: 1.6;
}

/* --- NAVBAR --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    background-color: #E5E7EB; padding: 12px 5%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); position: sticky; top: 0; z-index: 1000;
}
.logo-title { font-size: 20px; font-weight: 800; color: #111827; cursor: pointer; text-decoration: none; }
.logo-title span { color: var(--pstec-blue); }
.logo-subtitle { font-size: 9px; font-weight: 600; color: #6B7280; letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #374151; font-size: 12px; font-weight: 700; cursor: pointer; text-transform: uppercase; transition: 0.3s;}
.nav-links a:hover { color: var(--pstec-blue); }
.nav-right { display: flex; align-items: center; gap: 10px; }
/* --- SELETOR DE IDIOMA (Lado a Lado / Toggle) --- */
.lang-toggle {
    display: flex;
    background-color: #E5E7EB; /* Fundo cinza suave */
    padding: 4px;
    border-radius: 50px;
    gap: 4px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); /* Sombra interna para dar profundidade */
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #6B7280;
    cursor: pointer;
    transition: 0.3s ease;
}

.lang-btn:hover {
    color: #111827; /* Fica mais escuro ao passar o rato */
}

/* O botão que estiver selecionado ganha destaque */
.lang-btn.active {
    background: #FFFFFF;
    color: var(--pstec-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-consultor {
    background-color: var(--neon-green); color: var(--deep-blue); padding: 14px 28px;
    border-radius: 8px; text-decoration: none; font-weight: 800; cursor: pointer; display: inline-block; font-size: 13px; transition: 0.3s; box-shadow: 0 4px 10px rgba(0, 230, 160, 0.3); border: none; text-align: center;
}

/* --- BOTÕES (Bordas Arredondadas e Sombra) --- */
.btn-consultor {
    background-color: var(--neon-green); 
    color: var(--deep-blue); 
    padding: 14px 28px;
    border-radius: 50px; /* Bordas totalmente arredondadas (estilo pílula) */
    text-decoration: none; 
    font-weight: 800; 
    cursor: pointer; 
    display: inline-block; 
    font-size: 13px; 
    transition: 0.3s ease; 
    box-shadow: 0 4px 15px rgba(0, 230, 160, 0.3); /* Sombra brilhante verde */
    border: 2px solid transparent; /* Garante espaço para a borda */
    text-align: center;
}

/* Efeito ao passar o rato por cima */
.btn-consultor:hover {
    transform: translateY(-2px); /* Dá um pequeno salto */
    box-shadow: 0 6px 20px rgba(0, 230, 160, 0.5); /* Sombra aumenta */
    border: 2px solid #FFFFFF; /* Adiciona uma borda branca fina ao passar o rato */
}

/* --- HERO & BLUEPRINT --- */
.hero-section {
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.12), transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 45px 45px, 45px 45px;
    padding: 100px 5% 60px;
}
.hero-container { 
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; 
    align-items: center; max-width: 1400px; margin: 0 auto; 
}
.hero-content h1 { font-size: clamp(32px, 5vw, 64px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px;}
.hero-content h1 span { color: var(--neon-green); }
.hero p { font-size: 20px; color: #A0AEC0; line-height: 1.6; margin-bottom: 40px; }

/* --- MÉTRICAS --- */
.metrics-vertical { display: flex; flex-direction: column; gap: 20px; }
.metric-card-v {
    background-color: rgba(19, 39, 67, 0.7); border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--neon-green);
    border-radius: 20px; padding: 30px; backdrop-filter: blur(10px); transition: 0.3s;
}
.m-val { font-size: 38px; font-weight: 800; color: var(--neon-green); display: block; margin-bottom: 5px;}

/* --- CARDS DARK --- */
.solutions-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 25px; max-width: 1400px; margin: 20px auto 80px; padding: 0 5%; 
}
.card-h { 
    background-color: var(--card-blue); border-radius: 18px; padding: 40px; 
    border-top: 5px solid var(--neon-green); transition: 0.3s; 
}
.card-h:hover { transform: translateY(-10px); }

/* --- SOLUÇÕES LIGHT --- */
.section-solutions-light h2 { margin-bottom: 70px; margin-top: -20px; }
.section-solutions-light { background-color: var(--light-bg); color: #111827; padding: 100px 5%; text-align: center; }
.sol-grid-light { display: grid; grid-template-columns: repeat(auto-fit, minmax(370px, 1fr)); gap: 20px; max-width: 1300px; margin: 0 auto; }
.sol-card-light { 
    background: white; 
    padding: 40px 5% 50px 5%;; 
    border-radius: 13px;
    text-align: left; 
    border: 1px solid #e5e7eb; 
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08); 
    transition: 0.3s ease;
}
.sol-card-light:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}
.icon-box { 
    width: 48px; height: 48px; background: #EFF6FF; color: var(--pstec-blue); 
    border-radius: 12px; display: flex; align-items: center; justify-content: center; 
    margin-bottom: 25px; font-size: 20px; box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
}

/* --- NOVA SEÇÃO: COMO TRABALHAMOS --- */
.section-work-process {
    background-color: #FFFFFF; /* O fundo branco puro que estava a faltar */
    padding: 100px 2%; 
    border-top: 1px solid #E5E7EB; /* A linha divisória */
}
.process-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1500px; margin: 0 auto; align-items: center;
}
.process-left h2 { font-size: 42px; font-weight: 800; color: var(--deep-blue); line-height: 1.1; margin-bottom: 20px; }
.process-left p { font-size: 18px; color: #4B5563; margin-bottom: 40px; line-height: 1.6; }

/* Checklist e Stats */
.wp-checklist { list-style: none; margin-bottom: 40px; }
.wp-checklist li { display: flex; align-items: center; margin-bottom: 15px; font-size: 16px; color: #374151; font-weight: 600; }
.check-icon {
    color: var(--neon-green); background: rgba(0, 230, 160, 0.1);
    width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; margin-right: 15px; font-size: 12px; flex-shrink: 0;
}
.wp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background: #F9FAFB; padding: 25px; border-radius: 16px; border: 1px solid #E5E7EB; }
.stat-box h3 { font-size: 38px; font-weight: 800; color: var(--deep-blue); margin-bottom: 5px; }
.stat-box p { font-size: 12px; color: #6B7280; margin: 0; text-transform: uppercase; font-weight: 700; }

/* Coluna Direita (Card Escuro) */
.process-right {
    background-color: var(--deep-blue); border-radius: 24px;
    padding: 50px 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.tag-blue { color: #93C5FD; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; display: block; }
.step-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px; padding: 20px; margin-bottom: 15px;
    display: flex; align-items: flex-start; gap: 20px; transition: 0.3s;
    cursor: pointer;
}
.step-card:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.1); transform: translateX(5px); }
.step-card:active { transform: scale(0.98); }
.step-num {
    background: rgba(37, 99, 235, 0.2); color: #60A5FA;
    font-weight: 800; font-size: 14px; padding: 8px 12px; border-radius: 8px;
}
.step-text h4 { color: white; font-size: 18px; margin-bottom: 5px; }
.step-text p { color: #9CA3AF; font-size: 14px; margin: 0; line-height: 1.5; }

/* --- SOBRE --- */
.about-section { 
    padding: 120px 5%; text-align: center; background-color: var(--deep-blue);
    background-image: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05), transparent 70%);
}
.about-container { max-width: 900px; margin: 0 auto; }
.about-container h2 { font-size: 48px; font-weight: 800; margin-bottom: 30px; color: #FFFFFF; }
.about-container p { color: #A0AEC0; font-size: 20px; line-height: 1.8; }

/* --- CONTATO --- */
.contact-section { padding: 120px 5%; background-color: white; color: #111827; }
.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-form { 
    background: #F9FAFB; padding: 45px; border-radius: 24px; 
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}
.contact-form input, .contact-form textarea { 
    width: 100%; padding: 16px; border: 1px solid #D1D5DB; 
    border-radius: 12px; font-family: 'Inter'; box-sizing: border-box; 
}
.full-width { grid-column: 1 / -1; }

/* --- PRICING GRID (PACOTES DE SERVIÇOS) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch; /* Garante que os cartões esticam todos por igual */
}
.pricing-card {
    background: var(--card-blue);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: left;
    position: relative;
    transition: 0.3s ease;
    
    /* Configuração Flex para empurrar o botão */
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.pricing-card.featured {
    border: 2px solid var(--neon-green);
    transform: scale(1.05);
    background: rgba(19, 39, 67, 0.9);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}
.pkg-title { font-size: 24px; color: white; margin-bottom: 15px; }
.pkg-desc { color: #A0AEC0; font-size: 15px; margin-bottom: 30px; }

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: var(--deep-blue);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Força o botão para o fundo da caixa */
.pricing-card .btn-consultor {
    margin-top: auto; 
}

@media (max-width: 768px) {
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-5px); }
}

/* --- LÓGICA DE EXIBIÇÃO E MODAIS --- */
.page-content { display: none; }
.page-content.active { display: block; }
.modal-overlay { 
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); z-index: 9999; 
    align-items: center; justify-content: center; 
}
.modal-overlay.active { display: flex; }
.modal-content { 
    background: var(--card-blue); border-top: 5px solid var(--neon-green); 
    width: 90%; max-width: 600px; padding: 40px; border-radius: 24px; 
    position: relative; text-align: left; 
}
.close-btn { 
    position: absolute; top: 20px; right: 20px; font-size: 32px; 
    color: #A0AEC0; cursor: pointer; border: none; background: none; 
}

/* --- RODAPÉ --- */
.footer { background: var(--deep-blue); padding: 40px 5%; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-content p { color: #A0AEC0; font-size: 14px; margin: 0; }
.linkedin-link { color: #A0AEC0; transition: 0.3s ease; display: flex; align-items: center; }
.linkedin-link:hover { color: var(--neon-green); transform: translateY(-3px); }

/* --- RESPONSIVIDADE MOBILE --- */
@media (max-width: 768px) {
    .hero-container, .contact-container, .process-container { grid-template-columns: 1fr; text-align: center; }
    .nav-links { display: none; }
    .contact-form { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s ease;
}
.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* --- LISTA DE RECURSOS DOS PACOTES --- */
.pkg-features { list-style: none; margin-bottom: 30px; padding: 0; flex-grow: 1; }
.pkg-features li { margin-bottom: 12px; font-size: 14px; color: #D1D5DB; display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;}
.pkg-features li::before { content: "✔"; color: var(--neon-green); font-weight: bold; font-size: 12px; margin-top: 2px; }

/* --- MATERIAIS E CONHECIMENTO --- */
.materials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1300px; margin: 50px auto; padding: 0 5%; }
.material-card { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); color: #111827; text-align: left; border: 1px solid #e5e7eb;}
.material-thumb { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 50px; background: #f3f4f6;}
.material-content { padding: 35px; }

/* --- CARTÕES DE CONTATO --- */
.contact-info-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.contact-info-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #111827;
    width: 280px;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--pstec-blue);
}
.contact-info-card .icon {
    font-size: 38px;
    margin-bottom: 15px;
}
.contact-info-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 800;
}
.contact-info-card p {
    font-size: 16px;
    font-weight: 700;
    color: var(--pstec-blue);
    margin: 0;
}