/* ILPI360 â€” landing de vendas */
:root {
    --navy: #0b1735;
    --navy-mid: #1e3a5f;
    --blue: #2563eb;
    --blue-soft: #3b82f6;
    --slate: #64748b;
    --text: #0f172a;
    --card: #ffffff;
    --line: #e2e8f0;
    --ok: #16a34a;
    --radius: 16px;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.12);
    --font: 'Nunito Sans', 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', 'Nunito Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Ã‚ncoras (#contato, etc.) ficam visÃ­veis abaixo do menu fixo */
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text);
    background: #f8fafc;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.wrap {
    width: min(1120px, 100% - 40px);
    margin-inline: auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: transform 0.24s ease, box-shadow 0.2s ease;
}

.nav.is-scrolled {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.nav.nav-hidden {
    transform: translateY(-110%);
}

.nav.is-open {
    transform: none !important;
}

.nav.is-open .nav-links {
    display: none !important;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.brand img {
    height: 48px;
    width: auto;
    max-width: min(220px, 44vw);
    display: block;
    object-fit: contain;
}

.brand:hover {
    text-decoration: none;
    opacity: 0.92;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--slate);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    color: var(--navy);
}

.nav-toggle:hover {
    background: #f1f5f9;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.nav-toggle .icon-close {
    display: none;
}

.nav.is-open .nav-toggle .icon-menu {
    display: none;
}

.nav.is-open .nav-toggle .icon-close {
    display: block;
}

.mobile-menu {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    background: #f1f5f9;
    color: var(--navy);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(11, 23, 53, 0.86) 0%, rgba(30, 58, 95, 0.82) 45%, rgba(15, 23, 42, 0.8) 100%),
        url('background-hero.png') center center / cover no-repeat;
    color: #e2e8f0;
    padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 70% 0%, rgba(59, 130, 246, 0.25), transparent 55%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.hero h1 {
    margin: 0 0 16px;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fff;
}

.hero-lead {
    margin: 0 0 28px;
    font-size: 1.12rem;
    color: #cbd5e1;
    max-width: 32ch;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-ctas .btn-primary {
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.hero-ctas .btn-primary:hover {
    color: var(--navy);
}

.hero-ctas .btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.hero-ctas .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-visual img {
    width: clamp(320px, 36vw, 460px);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
    transition: opacity 0.28s ease;
    opacity: 0.98;
}

.hero-visual img.is-landscape {
    width: clamp(380px, 48vw, 640px);
}

.hero-visual img.is-portrait {
    width: clamp(200px, 23vw, 300px);
}

.hero-visual img.is-portrait.is-slide1 {
    width: clamp(180px, 20vw, 270px);
}

.hero-visual img.is-ready {
    opacity: 1;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sub-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(11, 23, 53, 0.78) 0%, rgba(30, 58, 95, 0.74) 45%, rgba(15, 23, 42, 0.72) 100%);
}

/* Imagem de fundo no HTML: detectável no documento inicial + fetchpriority (PageSpeed — LCP). */
.sub-hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.sub-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.sub-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 60% 35% at 50% 50%, rgba(59, 130, 246, 0.2), transparent 65%);
    pointer-events: none;
}

.sub-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.typing-text {
    margin: 0 auto;
    max-width: 900px;
    min-height: 64px;
    padding: 8px 10px;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.typing-text--hero {
    max-width: 980px;
    min-height: 86px;
    padding: 6px 8px;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.sub-hero-cta {
    margin-top: 24px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.sub-hero-cta:hover {
    text-decoration: none;
    color: #dbeafe;
}

.sub-hero-arrow {
    font-size: 1.3rem;
    animation: bounceDown 1.2s ease-in-out infinite;
}

.sub-hero-offer {
    margin: 18px auto 0;
    max-width: 58ch;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 23, 42, 0.36);
    color: #f8fafc;
    font-weight: 700;
    font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    line-height: 1.45;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    vertical-align: -0.15em;
    margin-left: 2px;
    background: #2563eb;
    animation: blinkCursor .8s step-end infinite;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.section--white {
    background: #fff;
}

.section--highlight {
    background:
        radial-gradient(1200px 420px at 50% -12%, #dbeafe 0%, rgba(219, 234, 254, 0) 70%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section--pain-points {
    background:
        radial-gradient(900px 380px at 50% -20%, rgba(220, 38, 38, 0.06) 0%, transparent 65%),
        linear-gradient(180deg, #f1f5f9 0%, #ffffff 45%);
    position: relative;
}

.section--pain-points .wrap {
    position: relative;
    z-index: 1;
}

.pain-shell {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 40px);
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.06),
        0 24px 48px -12px rgba(15, 23, 42, 0.14);
}

.pain-shell-head {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 32px);
}

.pain-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b45309;
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fcd34d;
    border-radius: 999px;
}

.pain-title {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.2;
    color: var(--navy);
    max-width: 34ch;
    margin-inline: auto;
}

.pain-lead {
    margin: 0 auto;
    max-width: 52ch;
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--slate);
}

.pain-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.pain-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 1px solid #e7e5e4;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pain-card:hover {
    border-color: #fecaca;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.08);
    transform: translateY(-2px);
}

.pain-card--wide {
    grid-column: 1 / -1;
    max-width: 100%;
}

@media (min-width: 560px) {
    .pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pain-card--wide {
        grid-column: 1 / -1;
        max-width: calc(50% - 7px);
        margin-inline: auto;
    }
}

@media (max-width: 559px) {
    .pain-card--wide {
        grid-column: 1;
        max-width: 100%;
    }
}

.pain-mark {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pain-mark-x {
    font-size: 1.15rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
}

.pain-card-text {
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.4;
    color: var(--navy);
    text-align: left;
}

/* Quatro pilares — linguagem de gestão (home) */
.section-mgmt-pillars .section-title {
    max-width: 720px;
}

.mgmt-pillar-grid {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .mgmt-pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .mgmt-pillar-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.mgmt-pillar-card {
    margin: 0;
    padding: 1.2rem 1.05rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.mgmt-pillar-card h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-heading);
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.25;
    color: var(--navy);
}

.mgmt-pillar-card p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.52;
    color: var(--slate);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    max-width: 640px;
    margin: 0 auto 12px;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.section-sub {
    text-align: center;
    margin: 0 auto 48px;
    color: var(--slate);
    max-width: 560px;
    font-size: 1.05rem;
}

.tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-item {
    background: #fff;
    border: 1px solid #dbe5f2;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: #bfdbfe;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.feature-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.09), transparent 42%);
    pointer-events: none;
}

.feature-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.feature-tag {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1d4ed8;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 5px 9px;
}

.feature-item h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.06rem;
    color: var(--navy);
}

.feature-item p {
    margin: 0;
    color: var(--slate);
    font-size: 0.94rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.strategic-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.toolbar-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.filter-chip {
    border: 1px solid #dbe5f2;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 7px 12px;
    cursor: pointer;
    transition: all 0.16s ease;
}

.filter-chip:hover {
    border-color: #bfdbfe;
    color: #1d4ed8;
    background: #f8fbff;
}

.filter-chip.is-active {
    border-color: #93c5fd;
    background: #dbeafe;
    color: #1d4ed8;
}

.strategic-compare {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.compare-badge {
    border-radius: 999px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 7px 11px;
}

.compare-badge--subtle {
    border-color: #e2e8f0;
    background: #f8fafc;
    color: #475569;
}

.compare-divider {
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
}

.compare-highlight {
    border-radius: 999px;
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 7px 12px;
}

.kpi-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe5f2;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    animation: riseIn 0.55s ease both;
}

.kpi-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.12), transparent 45%);
    pointer-events: none;
}

.kpi-card:hover {
    transform: translateY(-5px);
    border-color: #bfdbfe;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.kpi-grid .kpi-card:nth-child(1) { animation-delay: 0.02s; }
.kpi-grid .kpi-card:nth-child(2) { animation-delay: 0.06s; }
.kpi-grid .kpi-card:nth-child(3) { animation-delay: 0.1s; }
.kpi-grid .kpi-card:nth-child(4) { animation-delay: 0.14s; }
.kpi-grid .kpi-card:nth-child(5) { animation-delay: 0.18s; }
.kpi-grid .kpi-card:nth-child(6) { animation-delay: 0.22s; }

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kpi-label {
    color: #475569;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.kpi-value {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.kpi-trend {
    font-size: 0.86rem;
    font-weight: 700;
}

.kpi-trend.is-up {
    color: #16a34a;
}

.kpi-trend.is-down {
    color: #0f766e;
}

.kpi-trend.is-risk {
    color: #dc2626;
}

.kpi-trend.is-neutral {
    color: #1d4ed8;
}

.sparkline {
    display: block;
    width: 100%;
    height: 30px;
    border-radius: 8px;
    margin-top: 2px;
    background-color: #eff6ff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.sparkline-up {
    background-image: linear-gradient(135deg, transparent 12%, #60a5fa 14%, #60a5fa 19%, transparent 21%, transparent 40%, #2563eb 42%, #2563eb 47%, transparent 49%, transparent 66%, #1d4ed8 68%, #1d4ed8 73%, transparent 75%);
}

.sparkline-down {
    background-image: linear-gradient(145deg, transparent 10%, #0f766e 12%, #0f766e 17%, transparent 19%, transparent 36%, #14b8a6 38%, #14b8a6 43%, transparent 45%, transparent 62%, #0f766e 64%, #0f766e 69%, transparent 71%);
}

.sparkline-risk {
    background-image: linear-gradient(145deg, transparent 8%, #f97316 10%, #f97316 15%, transparent 17%, transparent 33%, #ef4444 35%, #ef4444 40%, transparent 42%, transparent 59%, #dc2626 61%, #dc2626 66%, transparent 68%);
}

.sparkline-neutral {
    background-image: linear-gradient(140deg, transparent 16%, #93c5fd 18%, #93c5fd 23%, transparent 25%, transparent 43%, #3b82f6 45%, #3b82f6 50%, transparent 52%, transparent 70%, #1d4ed8 72%, #1d4ed8 77%, transparent 79%);
}

.strategic-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.strategic-panel {
    background: #fff;
    border: 1px solid #dbe5f2;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    animation: riseIn 0.6s ease both;
}

.strategic-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 46%);
    pointer-events: none;
}

.strategic-panel:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.strategic-layout .strategic-panel:nth-child(1) { animation-delay: 0.08s; }
.strategic-layout .strategic-panel:nth-child(2) { animation-delay: 0.14s; }
.strategic-layout .strategic-panel:nth-child(3) { animation-delay: 0.2s; }
.strategic-panel .btn-ghost {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.strategic-panel .btn-ghost:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.strategic-panel h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    color: var(--navy);
}

.strategic-panel p {
    margin: 0 0 14px;
    color: var(--slate);
    font-size: 0.92rem;
}

.strategic-panel--wide {
    grid-column: 1 / -1;
}

.chart-ghost {
    border-radius: 14px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

.chart-line::before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, transparent 32%, #60a5fa 34%, #60a5fa 38%, transparent 40%),
        linear-gradient(145deg, transparent 50%, #2563eb 52%, #2563eb 56%, transparent 58%),
        linear-gradient(160deg, transparent 62%, #1d4ed8 64%, #1d4ed8 68%, transparent 70%);
}

.chart-bars::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    top: 18px;
    background:
        linear-gradient(to top, #3b82f6 0 66%, transparent 66% 100%) 0 100% / 18% 100% no-repeat,
        linear-gradient(to top, #2563eb 0 45%, transparent 45% 100%) 26% 100% / 18% 100% no-repeat,
        linear-gradient(to top, #60a5fa 0 80%, transparent 80% 100%) 52% 100% / 18% 100% no-repeat,
        linear-gradient(to top, #1d4ed8 0 58%, transparent 58% 100%) 78% 100% / 18% 100% no-repeat;
    border-radius: 10px;
}

.alert-list {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    color: #334155;
}

.alert-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 0.92rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 10px;
}

.dot-red { background: #dc2626; }
.dot-yellow { background: #eab308; }
.dot-green { background: #16a34a; }

.tile {
    background: var(--card);
    border: 1px solid #dbe5f2;
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.tile:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: var(--shadow-card);
}

.tile h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
}

.tile p {
    margin: 0;
    color: var(--slate);
    font-size: 0.95rem;
}

.tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.shot-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    margin-bottom: clamp(64px, 10vw, 100px);
}

.shot-text {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.shot-block:nth-child(even) .shot-text {
    order: 2;
}

.shot-block:nth-child(even) .shot-img {
    order: 1;
}

.shot-text h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.shot-text p {
    margin: 0;
    color: var(--slate);
}

.shot-text ul {
    margin: 16px 0 0;
    padding-left: 1.2em;
    color: var(--slate);
}

.shot-text li {
    margin-bottom: 8px;
}

.shot-frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dbe5f2;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
    background: #fff;
    line-height: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shot-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.18);
}

.shot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Destaque: acesso multi-dispositivo (home, antes da galeria) */
.section-device-access {
    padding: clamp(40px, 6vw, 72px) 0;
    background:
        radial-gradient(1000px 340px at 50% -15%, rgba(34, 197, 94, 0.16) 0%, transparent 58%),
        linear-gradient(180deg, #ecfdf5 0%, #f8fafc 55%, #f8fafc 100%);
}

.device-access-spotlight {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(1.75rem, 5vw, 2.6rem) clamp(1.35rem, 4vw, 2.5rem);
    border-radius: calc(var(--radius) + 6px);
    background: linear-gradient(165deg, #ffffff 0%, #f7fef9 100%);
    border: 1px solid #86efac;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 20px 48px -18px rgba(22, 101, 52, 0.22);
    text-align: center;
}

.device-access-eyebrow {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.4rem 0.95rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #166534;
    background: linear-gradient(180deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #4ade80;
    border-radius: 999px;
}

.device-access-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3.1vw, 1.55rem);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.028em;
    color: var(--navy);
    max-width: 48ch;
    margin-inline: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dbe5f2;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    background: #fff;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
    cursor: zoom-in;
}

.gallery figure:focus {
    outline: none;
}

.gallery figure:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

.gallery figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.gallery img {
    width: 100%;
    display: block;
    vertical-align: middle;
}

.gallery figcaption {
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    border-top: 1px solid var(--line);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox-scrim {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: none;
    cursor: zoom-out;
    background: rgba(11, 23, 53, 0.88);
    backdrop-filter: blur(8px);
}

.lightbox-panel {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    animation: lightbox-in 0.22s ease;
}

@keyframes lightbox-in {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--navy);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.lightbox-close:hover {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}

.lightbox-img-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 16px 12px;
    background: linear-gradient(180deg, #f1f5f9 0%, #fff 28%);
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: min(72vh, 720px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.lightbox-title {
    margin: 0;
    padding: 12px 20px 18px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    border-top: 1px solid var(--line);
    background: #fff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.client-card {
    background: #fff;
    border: 1px solid #dbe5f2;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.client-card strong {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.client-card span {
    color: var(--slate);
    font-size: 0.82rem;
}

.client-highlight {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #cbd5e1;
    background: linear-gradient(140deg, #f8fbff 0%, #ffffff 65%);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.client-highlight-media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dbe5f2;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    background: #fff;
}

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

.client-highlight-content h3 {
    margin: 8px 0 8px;
    color: var(--navy);
    font-size: 1.25rem;
}

.client-highlight-content h3 a {
    color: inherit;
    text-decoration: none;
}

.client-highlight-content h3 a:hover {
    text-decoration: underline;
}

.client-highlight-content p {
    margin: 0 0 10px;
    color: #334155;
}

.client-highlight-badge {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0b1735;
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 999px;
    padding: 4px 10px;
}

.client-results strong {
    color: var(--navy);
}

.client-results ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: #334155;
}

.client-results li {
    margin-bottom: 5px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.social-card {
    background: #fff;
    border: 1px solid #dbe5f2;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-stars {
    color: #f4b400;
    font-size: 1.06rem;
    letter-spacing: 2px;
}

.social-card p {
    margin: 0;
    color: #334155;
    font-size: 0.94rem;
}

.social-card strong {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 0.92rem;
}

.social-card span {
    color: var(--slate);
    font-size: 0.82rem;
    font-weight: 600;
}

.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
    color: #e2e8f0;
    text-align: center;
    padding: clamp(48px, 8vw, 72px) 24px;
    border-radius: 24px;
    margin: 0 auto;
    max-width: 900px;
}

.cta-band h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
}

.cta-band p {
    margin: 0 0 24px;
    color: #94a3b8;
}

.cta-hook {
    margin: 8px auto 28px;
    max-width: 640px;
    padding: 18px 20px;
    border-radius: 14px;
    text-align: left;
    background: rgba(251, 191, 36, 0.09);
    border: 1px solid rgba(251, 191, 36, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-hook-warn {
    margin: 0 0 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: #fde68a;
    font-weight: 600;
}

.cta-hook-brand {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.whatsapp-form {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.whatsapp-grid label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.whatsapp-grid label span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #bfdbfe;
}

.whatsapp-grid input,
.whatsapp-grid textarea {
    width: 100%;
    border: 1px solid #334155;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.45);
    color: #f8fafc;
    font: inherit;
    padding: 11px 12px;
}

.whatsapp-grid textarea {
    resize: vertical;
}

.whatsapp-grid input::placeholder,
.whatsapp-grid textarea::placeholder {
    color: #94a3b8;
}

.whatsapp-grid input:focus,
.whatsapp-grid textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.whatsapp-grid .full {
    grid-column: 1 / -1;
}

.whatsapp-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.whatsapp-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #334155;
    background: rgba(15, 23, 42, 0.5);
    color: #e2e8f0;
    font-weight: 700;
    text-decoration: none;
}

.whatsapp-phone:hover {
    color: #fff;
    text-decoration: none;
    border-color: #60a5fa;
}

.footer {
    padding: 32px 0 48px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--slate);
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer strong {
    color: var(--navy);
}

.footer-note {
    margin-top: 10px;
    max-width: 720px;
    margin-inline: auto;
}

.footer-credit {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
}

.footer-credit a {
    color: var(--slate);
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.footer-legal {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 14px;
    font-size: 0.88rem;
}

.footer-legal a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-legal-sep {
    color: var(--line);
    user-select: none;
}

.footer-legal-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-legal-btn:hover {
    color: var(--navy-mid);
}

/* Modal de cookies (overlay) â€” id mantido cookie-consent para o script */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(20px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

.cookie-modal[hidden] {
    display: none !important;
}

html.ilpi360-cookie-saved #cookie-consent.cookie-modal {
    display: none !important;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    background: rgba(11, 23, 53, 0.55);
    backdrop-filter: blur(4px);
}

.cookie-modal-panel {
    position: relative;
    z-index: 1;
    width: min(480px, 100%);
    padding: 1.35rem 1.4rem 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
    animation: cookie-modal-in 0.22s ease;
}

@keyframes cookie-modal-in {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cookie-modal-title {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}

.cookie-modal-text {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.55;
}

.cookie-modal-text a {
    font-weight: 600;
}

.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-modal-actions .btn {
    white-space: nowrap;
}

/* Home: coluna flex + conteÃºdo expansÃ­vel; rodapÃ© cola na base quando sobra altura */
.landing-home {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.landing-home .page-main {
    flex: 1 0 auto;
}

.legal-page {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4rem);
    background: #f8fafc;
}

.legal-doc {
    width: min(720px, 100% - 40px);
    margin-inline: auto;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: var(--shadow-soft);
}

.legal-doc h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.legal-doc .legal-updated {
    font-size: 0.85rem;
    color: var(--slate);
    margin: 0 0 1.5rem;
}

.legal-doc h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.75rem 0 0.5rem;
}

.legal-doc p,
.legal-doc li {
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.6;
}

.legal-doc p {
    margin: 0 0 0.85rem;
}

.legal-doc ul {
    margin: 0 0 0.85rem;
    padding-left: 1.25rem;
}

.legal-doc a {
    font-weight: 600;
}

.legal-doc--contract .contract-parties {
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border: 1px dashed var(--line);
    border-radius: 12px;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.legal-doc--contract .contract-values {
    list-style: none;
    padding-left: 0;
}

.legal-doc--contract .contract-values li {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--line);
}

.legal-doc--contract .contract-blank {
    display: inline-block;
    min-width: 7rem;
    border-bottom: 1px solid var(--navy);
    font-weight: 600;
    color: var(--slate);
}

.legal-doc--contract .contract-hint {
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--slate);
}

.legal-doc--contract .contract-line {
    margin: 0.75rem 0 1rem;
    padding: 0.65rem 0.85rem;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 0.95rem;
}

.legal-doc--contract .contract-signatures {
    margin: 1.5rem 0 0;
    text-align: center;
    line-height: 1.7;
}

.legal-doc--contract-pro .contract-signatures {
    margin: 0;
    text-align: center;
}

.legal-callout {
    border-radius: 12px;
    padding: 1rem 1.15rem;
    margin: 0.75rem 0 1rem;
    font-size: 0.95rem;
}

.legal-callout p {
    margin: 0;
}

.legal-callout--warn {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #78350f;
}

.legal-callout--info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: var(--navy);
}

.legal-aside {
    width: min(720px, 100% - 40px);
    margin: 1.5rem auto 0;
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #86efac;
    box-shadow: var(--shadow-soft);
}

.legal-aside h2 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #14532d;
    margin: 0 0 0.5rem;
}

.legal-aside p {
    margin: 0 0 0.65rem;
    font-size: 0.92rem;
    color: #166534;
    line-height: 1.55;
}

.legal-aside p:last-child {
    margin-bottom: 0;
}

/* Contrato: aparência de instrumento jurídico + leitura ampla */
.legal-page--contract-formal {
    background: #e2e6ec;
    padding-top: clamp(1.25rem, 3vw, 2rem);
}

.legal-doc--wide {
    width: min(920px, calc(100% - 2rem));
    max-width: none;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
    border: 1px solid #c5cdd8;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.75) inset,
        0 28px 50px rgba(15, 23, 42, 0.12);
}

.legal-doc--contract-pro {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #1a1f26;
    background: #faf9f7;
}

.legal-doc--contract-pro h1,
.legal-doc--contract-pro h2 {
    font-family: 'Source Serif 4', Georgia, serif;
}

.legal-doc--contract-pro p,
.legal-doc--contract-pro li {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.legal-doc--contract-pro a {
    font-weight: 600;
    color: #1e40af;
}

.contract-pro-head {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.75rem;
    border-bottom: 3px double var(--navy);
}

.contract-pro-kicker {
    margin: 0 0 0.35rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--slate);
}

.legal-doc--contract-pro h1 {
    font-size: clamp(1.2rem, 2.4vw, 1.45rem);
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.65rem;
    line-height: 1.35;
    text-align: center;
    text-transform: none;
}

.contract-pro-meta {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.5;
    text-align: center;
}

.contract-pro-preamble {
    margin: 0 0 1.35rem;
    text-indent: 2.5rem;
}

.contract-pro-parties {
    margin: 0 0 2rem;
    padding: 1.15rem 1.35rem;
    border: 1px solid #1e3a5f;
    background: #fff;
    border-radius: 2px;
}

.contract-pro-parties p {
    margin: 0 0 0.85rem;
}

.contract-pro-parties p:last-child {
    margin-bottom: 0;
}

.contract-clause {
    margin: 0 0 1.35rem;
    padding-top: 1rem;
    border-top: 1px solid #d4d0c8;
}

.contract-clause:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-doc--contract-pro .contract-clause h2 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.6rem;
    line-height: 1.35;
    text-align: left;
}

.legal-doc--contract-pro .contract-clause p {
    margin: 0 0 0.75rem;
}

.legal-doc--contract-pro .contract-clause p:last-child {
    margin-bottom: 0;
}

.contract-sublist {
    margin: 0.35rem 0 0;
    padding-left: 1.35rem;
}

.contract-sublist li {
    margin-bottom: 0.45rem;
}

.contract-sublist--alpha {
    list-style-type: lower-alpha;
}

.legal-doc--contract-pro .contract-line {
    font-family: 'Source Serif 4', Georgia, serif;
    background: #fff;
    border: 1px solid #d4d0c8;
}

.contract-signatures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d4d0c8;
}

.contract-sig-line {
    margin: 0 0 0.35rem;
    letter-spacing: 0.02em;
}

.contract-sig-label {
    margin: 0;
    font-size: 0.95rem;
}

.contract-pro-annex {
    margin-top: 2.25rem;
    padding: 1.1rem 1.25rem;
    border: 1px dashed #94a3b8;
    background: #f1f5f9;
    border-radius: 4px;
    font-size: 0.92rem;
    line-height: 1.55;
}

.contract-pro-annex h2 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate);
    margin: 0 0 0.5rem;
}

.contract-pro-annex p {
    margin: 0;
    text-align: justify;
}

@media (max-width: 640px) {
    .contract-signatures-grid {
        grid-template-columns: 1fr;
    }

    .legal-doc--contract-pro p,
    .legal-doc--contract-pro li {
        text-align: left;
        hyphens: none;
        -webkit-hyphens: none;
    }

    .contract-pro-preamble {
        text-indent: 0;
    }
}

@media (max-width: 720px) {
    .cookie-modal-actions {
        justify-content: stretch;
    }

    .cookie-modal-actions .btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-lead {
        margin-inline: auto;
        max-width: 40ch;
    }

    .badge-row {
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 49;
        background: #fff;
        border-top: 1px solid var(--line);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu-inner {
        padding: 16px 20px 28px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        overflow-y: auto;
        max-height: 100%;
    }

    .mobile-menu a {
        color: var(--slate);
        font-weight: 600;
        font-size: 1.05rem;
        text-decoration: none;
        padding: 14px 12px;
        border-radius: 10px;
    }

    .mobile-menu a:hover {
        background: #f1f5f9;
        color: var(--blue);
    }
}

@media (max-width: 860px) {
    .shot-block,
    .shot-block:nth-child(even) .shot-text,
    .shot-block:nth-child(even) .shot-img {
        grid-template-columns: 1fr;
        order: unset !important;
    }
}

@media (max-width: 800px) {
    .tiles {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-highlight {
        grid-template-columns: 1fr;
    }

    .client-highlight-media {
        max-height: 210px;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .strategic-layout {
        grid-template-columns: 1fr;
    }

    .strategic-toolbar {
        gap: 8px;
    }
}

@media (max-width: 700px) {
    .hero {
        background:
            linear-gradient(160deg, rgba(11, 23, 53, 0.86) 0%, rgba(30, 58, 95, 0.82) 45%, rgba(15, 23, 42, 0.8) 100%),
            url('background-mobile-app.png') center center / cover no-repeat;
        padding: 26px 0 52px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .whatsapp-grid {
        grid-template-columns: 1fr;
    }

    .sub-hero {
        min-height: 100vh;
        background: linear-gradient(160deg, rgba(11, 23, 53, 0.78) 0%, rgba(30, 58, 95, 0.74) 45%, rgba(15, 23, 42, 0.72) 100%);
    }

    .typing-text--hero {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.2;
        min-height: 120px;
    }

    .sub-hero-cta {
        margin-top: 30px;
        font-size: 1rem;
    }

    .sub-hero-offer {
        margin-top: 14px;
        max-width: 95%;
        font-size: 0.95rem;
        padding: 9px 10px;
    }
}

@media (max-width: 520px) {
    .nav-actions .btn {
        padding: 10px 14px;
        font-size: 0.88rem;
    }
}

/* ---------- Blog (hub + artigo) ---------- */
.blog-hub {
    background: #f1f5f9;
}

.blog-hub-hero {
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 52%, #1e40af 100%);
    color: #e2e8f0;
    padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 5vw, 3.25rem);
}

.blog-hub-hero-inner {
    max-width: 720px;
}

.blog-breadcrumb {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    margin: 0 0 1rem;
    color: rgba(226, 232, 240, 0.85);
}

.blog-breadcrumb a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb-sep {
    margin: 0 0.35rem;
    opacity: 0.65;
}

.blog-hub-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.65rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.blog-hub-lead {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.92);
    max-width: 52ch;
}

.blog-hub-body {
    display: grid;
    grid-template-columns: 1fr min(300px, 100%);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

@media (max-width: 900px) {
    .blog-hub-body {
        grid-template-columns: 1fr;
    }
}

.blog-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card {
    margin: 0;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.blog-card-link {
    display: block;
    padding: 1.25rem 1.35rem;
    color: inherit;
    text-decoration: none;
}

.blog-card-link:hover .blog-card-title {
    color: var(--blue);
}

.blog-card-kicker {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.4rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
    line-height: 1.3;
    transition: color 0.15s ease;
}

.blog-card-excerpt {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--slate);
    font-weight: 500;
}

.blog-hub-aside {
    padding: 1.35rem 1.4rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.blog-hub-aside-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}

.blog-hub-aside-text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.55;
}

.blog-hub-aside .btn {
    width: 100%;
    justify-content: center;
}

.blog-article-page {
    background: #f8fafc;
    padding-bottom: clamp(2rem, 5vw, 3rem);
}

.blog-post-wrap {
    padding-top: clamp(1.25rem, 3vw, 1.75rem);
}

.blog-post-wrap .blog-breadcrumb {
    color: var(--slate);
}

.blog-post-wrap .blog-breadcrumb a {
    color: var(--blue);
}

.blog-post-header {
    padding: 0.5rem 0 1.25rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.75rem;
}

.blog-post-kicker {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    margin: 0 0 0.35rem;
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.65rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.blog-post-meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--slate);
}

.blog-post-meta-sep {
    margin: 0 0.35rem;
}

.blog-post-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.blog-post-prose {
    max-width: 680px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text);
}

.blog-post-prose h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.75rem 0 0.6rem;
}

.blog-post-prose h2:first-child {
    margin-top: 0;
}

.blog-post-prose h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy-mid);
    margin: 1.35rem 0 0.5rem;
    line-height: 1.35;
}

.blog-post-prose p,
.blog-post-prose li {
    margin: 0 0 0.85rem;
}

.blog-post-prose ul {
    padding-left: 1.25rem;
}

.blog-post-prose code {
    font-size: 0.88em;
    padding: 0.1em 0.35em;
    border-radius: 4px;
    background: #f1f5f9;
    border: 1px solid var(--line);
}

.blog-draft-callout {
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.blog-end-cta {
    margin-top: 2.25rem;
    padding: 1.5rem 1.45rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 55%, #e0e7ff 100%);
    border: 1px solid #93c5fd;
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.12);
}

.blog-end-cta h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.65rem;
    line-height: 1.25;
}

.blog-end-cta p {
    margin: 0 0 0.75rem;
}

.blog-end-cta p:last-of-type {
    margin-bottom: 0;
}

.blog-end-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.1rem !important;
}

.blog-end-cta-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 160px;
}

.blog-post-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.blog-post-back {
    font-weight: 600;
}

/* SEO interno: bloco “Leia também” entre artigos */
.blog-related {
    margin: 2rem 0 0;
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.blog-related-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 0.85rem;
    letter-spacing: -0.01em;
}

.blog-related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.blog-related-link {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.blog-related-link:hover {
    background: #f8fafc;
    border-color: var(--line);
}

.blog-related-link:hover .blog-related-text {
    color: var(--blue);
    text-decoration: underline;
}

.blog-related-cat {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
}

.blog-related-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
}

/* Imagem de destaque no artigo — moldura para não “derreter” no branco do corpo */
.blog-featured {
    margin: 0 0 1.75rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #c5d3e6;
    box-shadow:
        0 4px 28px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);
    background: linear-gradient(165deg, #eef2f9 0%, #e4ecf7 45%, #dbe5f1 100%);
    padding: clamp(0.65rem, 2vw, 0.95rem) clamp(0.75rem, 2.2vw, 1.05rem);
}

.blog-featured img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: #fff;
}

.blog-featured-caption {
    margin: 0.55rem 0 0;
    padding: 0.5rem 0.15rem 0;
    font-size: 0.82rem;
    color: var(--slate);
    background: transparent;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

/* Cards do hub com miniatura */
.blog-card--with-thumb .blog-card-link {
    padding: 0;
    overflow: hidden;
}

.blog-card-thumb-wrap {
    display: block;
    background: linear-gradient(165deg, #eef2f9 0%, #e4ecf7 50%, #d9e4f2 100%);
    padding: clamp(0.55rem, 1.8vw, 0.75rem) clamp(0.65rem, 2vw, 0.9rem);
    border-bottom: 1px solid #b0bfd4;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.55);
}

.blog-card-thumb-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: #fff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card--with-thumb:hover .blog-card-thumb-img {
    transform: scale(1.02);
    box-shadow: 0 4px 22px rgba(15, 23, 42, 0.14);
}

.blog-card--with-thumb .blog-card-text-block {
    display: block;
    padding: 1.2rem 1.35rem 1.3rem;
    background: linear-gradient(180deg, #f5f7fb 0%, #fafbfd 38%, #ffffff 100%);
}

.blog-card--with-thumb .blog-card-title {
    font-size: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
    .kpi-card,
    .strategic-panel {
        animation: none;
        transition: none;
    }

    .lightbox-panel {
        animation: none;
    }

    .cookie-modal-panel {
        animation: none;
    }

    .blog-card {
        transition: none;
    }

    .blog-card-thumb-img {
        transition: none;
    }
}

