/* ───────────────────────────────────────────────
   GPD — estilo compartilhado das páginas internas
   (Serviços, Soluções, Clientes, Recursos, Contato)
   Derivado da landing: dark-first, Inter, azul #2563EB.
─────────────────────────────────────────────── */

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

:root {
    --bg: #000000;
    --bg-soft: #0c0d10;
    --card: #15171a;
    --card-2: #1a1c1f;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.42);
    --muted-2: rgba(255, 255, 255, 0.58);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    /* sutil brilho cósmico no topo, como na landing */
    background-image:
        radial-gradient(900px 520px at 50% -10%, rgba(37, 99, 235, 0.18), transparent 70%),
        radial-gradient(700px 480px at 90% 8%, rgba(37, 99, 235, 0.07), transparent 70%);
    background-repeat: no-repeat;
    min-height: 100vh;
}

a { color: inherit; }

/* ── Navigation (idêntica à landing) ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: rgba(8, 9, 11, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-logo img {
    width: 150px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
}

.nav-links a {
    color: var(--muted-2);
    text-decoration: none;
    font-size: 16.5px;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }

.nav-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
}

.nav-cta:hover { background: var(--accent-hover); }
.nav-cta:active { transform: scale(0.97); }

/* ── Layout containers ── */
.wrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

section { position: relative; z-index: 1; }

/* ── Hero de página ── */
.page-hero {
    padding: 96px 0 56px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-size: clamp(32px, 4.4vw, 56px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto;
}

/* ── Section headers ── */
.section-head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.section-head p {
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
}

/* ── Card grid ── */
.grid {
    display: grid;
    gap: 18px;
    padding-bottom: 40px;
}
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: linear-gradient(180deg, var(--card-2), var(--card));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 26px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
}

.card .ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.14);
    border: 1px solid rgba(37, 99, 235, 0.35);
    margin-bottom: 18px;
    color: #a9c0ff;
}

.card .ico svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h3 {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.55;
}

.card .step {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

/* ── Client showcase cards ── */
.client-card {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.client-shot {
    aspect-ratio: 16 / 10;
    background: linear-gradient(150deg, #ccd5f4, #9fb0ea);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.client-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-body {
    padding: 24px 26px 28px;
}

.client-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 8px;
}

.client-body h3 { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.client-body p { font-size: 15px; color: var(--muted); font-weight: 300; }

/* ── CTA band ── */
.cta-band {
    margin: 64px 0 0;
    padding: 64px 40px;
    text-align: center;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(37, 99, 235, 0.16), transparent 70%);
}

.cta-band h2 {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.cta-band p {
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto 28px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: scale(0.98); }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); }

/* ── Footer ── */
.footer {
    border-top: 1px solid var(--line);
    padding: 44px 40px 40px;
    margin-top: 0;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-logo img { width: 130px; height: auto; display: block; margin-bottom: 14px; }
.footer p { font-size: 14px; color: var(--muted); font-weight: 300; max-width: 320px; }

.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
    font-weight: 500;
}
.footer-col a {
    display: block;
    font-size: 15px;
    color: var(--muted-2);
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 300;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: #fff; }

.footer-base {
    max-width: 1140px;
    margin: 36px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-bottom: 40px;
}

.contact-item {
    background: linear-gradient(180deg, var(--card-2), var(--card));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px;
    text-decoration: none;
    display: block;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-item:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.contact-item .label {
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted); margin-bottom: 8px;
}
.contact-item .value { font-size: 20px; font-weight: 500; color: #fff; }
.contact-item .sub { font-size: 14px; color: var(--muted); font-weight: 300; margin-top: 6px; }

/* ── Responsive ── */
@media (max-width: 820px) {
    .nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .wrap { padding: 0 20px; }
    .grid.cols-2, .grid.cols-3, .contact-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 64px 0 40px; }
    .cta-band, .footer { padding-left: 20px; padding-right: 20px; }
    .footer-inner { flex-direction: column; }
}
