/* ══════════════════════════════════════════
   SMART PATROL — Landing Page Stylesheet
   ══════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #fdf8f5;
    --color-bg-2: #ffffff;
    --color-bg-3: #fdf8f5;
    --color-surface: #ffffff;
    --color-surface-2: #fdf8f5;
    --color-border: rgba(214, 205, 199, 0.82);
    --color-primary: #ef8c34;
    --color-primary-dark: #5d5e60;
    --color-primary-glow: rgba(239, 140, 52, 0.2);
    --color-accent: #5d5e60;
    --color-text: #5d5e60;
    --color-text-muted: rgba(93, 94, 96, 0.82);
    --color-text-faint: rgba(93, 94, 96, 0.6);
    --color-success: #ef8c34;
    --color-warning: #ef8c34;
    --color-danger: #5d5e60;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px var(--color-primary-glow);
    --font: "Inter", system-ui, sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background:
        radial-gradient(
            circle at top right,
            rgba(214, 205, 199, 0.45),
            transparent 30%
        ),
        linear-gradient(180deg, var(--color-bg-2), var(--color-bg));
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Buttons ─────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--lg {
    padding: 15px 36px;
    font-size: 16px;
}
.btn--block {
    width: 100%;
}

.btn--primary {
    background: #ff7a00;
    color: #fff;
    border-color: #ff7a00;
}
.btn--primary:hover {
    background: #ff9433;
    border-color: #ff9433;
    transform: translateY(-1px);
}

.btn--outline {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
    color: var(--color-primary);
    border: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 8px 22px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(255, 106, 0, 0.3);
}
.btn--outline:hover {
    background: linear-gradient(180deg, #ffffff 0%, #fff4ec 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 10px 28px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(255, 106, 0, 0.48);
    transform: translateY(-1px);
}

.btn--ghost {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
    color: var(--color-text);
    border: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 8px 22px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(148, 163, 184, 0.24);
}
.btn--ghost:hover {
    background: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 10px 28px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(148, 163, 184, 0.4);
    transform: translateY(-1px);
}

.btn--secondary {
    background: transparent;
    color: #ffffff;
    border: none;
    box-shadow:
        0 8px 22px rgba(15, 23, 42, 0.1),
        0 0 0 1.5px rgba(255, 122, 0, 0.6);
}
.btn--secondary:hover {
    background: rgba(255, 122, 0, 0.12);
    box-shadow:
        0 10px 28px rgba(15, 23, 42, 0.14),
        0 0 0 1.5px rgba(255, 122, 0, 0.8);
    transform: translateY(-1px);
}

/* ─── Section header ─────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(239, 140, 52, 0.1);
    color: var(--color-accent);
    border: 1px solid rgba(239, 140, 52, 0.24);
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ─── Reveal animation ───────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 80px 0 0;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.navbar--scrolled {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.navbar__logo {
    flex-shrink: 0;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    margin-left: 0;
    padding-left: 0;
    box-sizing: border-box;
}

.navbar__logo img {
    height: 100%;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    object-position: left center;
}

.navbar__links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.navbar__links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}

.navbar__links a:hover {
    color: #ffffff;
}

.navbar__cta {
    margin-left: 16px;
    padding: 9px 22px;
    font-size: 14px;
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid rgba(239, 140, 52, 0.72);
    box-shadow: none;
}

.navbar__cta:hover {
    background: rgba(239, 140, 52, 0.08);
    border-color: rgba(239, 140, 52, 0.92);
    box-shadow: none;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: clamp(520px, 64vh, 720px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 92px 0 82px;
    overflow: visible;
    background: #111;
    z-index: 3;
}

.hero__bg-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: 96% top;
    filter: brightness(0.85) saturate(0.9);
    display: block;
    position: absolute;
    top: -118px;
    left: 0;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.68) 35%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0) 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 120px;
    padding-right: 80px;
    padding-top: 22px;
    padding-bottom: 8px;
    gap: 28px;
}

.hero__content {
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
}

.hero__title {
    font-size: clamp(36px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero__title .highlight {
    color: #ff7a00;
    -webkit-text-fill-color: #ff7a00;
    background: none;
}

.hero__subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 0;
    line-height: 1.6;
}

.hero__checks {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 4px;
    margin-bottom: 0;
    margin-left: -11px;
    padding-right: 8px;
}

.hero__check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.hero__check-item:first-child {
    padding-left: 0;
}

.hero__check-item:last-child {
    justify-content: flex-end;
}

.hero__check-item svg {
    flex-shrink: 0;
    opacity: 0.95;
}

.hero__check-item span {
    font-size: 14px;
    font-weight: 600;
    color: #f0f0f0;
    line-height: 1.35;
}

.hero__check-item span small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.52);
    letter-spacing: 0.01em;
}

.hero__check-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 0;
    padding-right: 55px;
}

.hero__actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 15px;
    text-align: center;
    justify-content: center;
}

.hero__actions .btn--primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9a32 0%, #ff7a00 48%, #f05a00 100%);
    border-color: rgba(255, 154, 50, 0.9);
    box-shadow: 0 10px 24px rgba(240, 90, 0, 0.22);
}

.hero__actions .btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0) 46%
    );
    opacity: 0.7;
    pointer-events: none;
}

.hero__actions .btn--primary:hover {
    background: linear-gradient(135deg, #ffae4f 0%, #ff8715 48%, #f46a18 100%);
    border-color: rgba(255, 174, 79, 0.95);
    box-shadow: 0 14px 28px rgba(240, 90, 0, 0.28);
    transform: translateY(-1px);
}

/* Fade transition at bottom of hero */
.hero__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    z-index: 15;
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0) 0%,
        rgba(240, 240, 240, 0.6) 60%,
        #f0f0f0 100%
    );
    pointer-events: none;
}

.hero__separator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    z-index: 16;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 138, 20, 0.6) 22%,
        rgba(255, 164, 60, 0.95) 50%,
        rgba(255, 138, 20, 0.6) 78%,
        transparent 100%
    );
    box-shadow:
        0 0 30px rgba(255, 122, 0, 0.48),
        0 -4px 14px rgba(255, 122, 0, 0.18);
    pointer-events: none;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 140, 52, 0.28);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(239, 140, 52, 0);
    }
}

/* Phone mockup */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

/* Viatura scene */
.hero__viatura-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
}

.hero__viatura-scene {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(239, 140, 52, 0.24);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero__viatura-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: brightness(0.84) saturate(0.92);
}

.hero__viatura-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(239, 140, 52, 0.2),
        rgba(93, 94, 96, 0.18)
    );
    pointer-events: none;
}

.hero__phone-float {
    position: absolute !important;
    width: 148px !important;
    bottom: -20px;
    right: 28px;
    z-index: 2;
    border-radius: 22px !important;
    box-shadow: var(--shadow-lg), var(--shadow-glow) !important;
}

.phone-mockup {
    position: relative;
    width: 280px;
    border-radius: 36px;
    overflow: hidden;
    border: 2px solid rgba(239, 140, 52, 0.24);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.phone-mockup__screen {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.phone-mockup__glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(239, 140, 52, 0.08),
        transparent 60%
    );
}

.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.hero__floating-card--1 {
    left: -16px;
    top: 14%;
    animation-delay: 0s;
}
.hero__floating-card--2 {
    left: 20px;
    bottom: 40px;
    animation-delay: 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero__floating-card .floating-icon {
    font-size: 22px;
}
.hero__floating-card strong {
    display: block;
    font-size: 13px;
    color: var(--color-text);
}
.hero__floating-card small {
    font-size: 11px;
    color: var(--color-text-muted);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-faint);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-text-faint);
    border-bottom: 2px solid var(--color-text-faint);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(4px);
    }
}

/* ═══════════════════════════════════════
   DIFERENCIAIS BAR (flutuante)
═══════════════════════════════════════ */
.floating-bar-wrap {
    position: relative;
    z-index: 20;
    margin-top: -74px;
    padding: 0 24px;
}

.diferenciais-bar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 18px 36px rgba(0, 0, 0, 0.11),
        0 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 24px 40px;
    max-width: 1150px;
    margin: 0 auto;
}

.diferenciais-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.diferencial {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 8px 16px;
}

.diferencial__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.diferencial__icon svg {
    width: 48px;
    height: 48px;
}

.diferencial__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.diferencial__text strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
}

.diferencial__text span {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.diferencial__divider {
    width: 1px;
    height: 48px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   PROOF BAR
═══════════════════════════════════════ */
.proof-bar {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 32px 0;
}

.proof-bar__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-bar__label {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

.proof-bar__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-left: auto;
}

.stat {
    text-align: center;
}
.stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
}
.stat span {
    font-size: 12px;
    color: var(--color-text-muted);
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* ═══════════════════════════════════════
   DOR + SOLUÇÃO
═══════════════════════════════════════ */
.pain-solution {
    position: relative;
    padding: 88px 0 48px;
    margin-top: -54px;
    background:
        radial-gradient(
            circle at 42% 34%,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.62) 18%,
            rgba(255, 255, 255, 0) 42%
        ),
        radial-gradient(
            ellipse 42% 62% at 88% 50%,
            rgba(255, 106, 0, 0.07) 0%,
            rgba(255, 106, 0, 0.03) 26%,
            transparent 62%
        ),
        radial-gradient(circle, rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #fcfcfd 0%, #eceff3 100%);
    background-size:
        auto,
        auto,
        26px 26px,
        auto;
    overflow: hidden;
}

.pain-solution::before,
.pain-solution::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.pain-solution::before {
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 106, 0, 0.12) 0%,
            rgba(255, 106, 0, 0.05) 18%,
            rgba(255, 106, 0, 0.015) 32%,
            transparent 58%
        ),
        repeating-radial-gradient(
            circle at center,
            rgba(255, 106, 0, 0.12) 0 1px,
            transparent 1px 56px
        ),
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.36) 0%,
            rgba(255, 255, 255, 0) 62%
        );
    opacity: 0.55;
    filter: blur(1px);
}

.pain-solution::after {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 106, 0, 0.1) 0%,
        rgba(255, 106, 0, 0.03) 36%,
        transparent 72%
    );
    opacity: 0.65;
    filter: blur(28px);
}

.pain-solution .container {
    position: relative;
    z-index: 1;
}

.pain-solution__header {
    display: grid;
    gap: 12px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto 36px;
}

.section-tag--light {
    background: rgba(255, 122, 0, 0.08);
    color: #ff7a00;
    border-color: rgba(255, 122, 0, 0.2);
}

.pain-solution__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 auto;
    letter-spacing: -0.02em;
}

.pain-solution__title-line {
    display: block;
    white-space: nowrap;
}

.highlight-orange {
    color: #ff6a00;
}

.highlight-gradient {
    background: linear-gradient(90deg, #ff6a00 0%, #cc3a00 60%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-solution__sub {
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 500;
    color: #1f1f1f;
    line-height: 1.5;
}

.pain-solution__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    gap: 0 40px;
    align-items: stretch;
}

.pain-card,
.solution-card {
    padding: 30px 40px;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow;
}

.pain-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 52%, #f3f5f8 100%);
    border: 1px solid #dce2e8;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -8px 16px rgba(148, 163, 184, 0.03),
        0 14px 32px rgba(15, 23, 42, 0.055);
    opacity: 0.96;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;
}

.pain-card:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -8px 16px rgba(148, 163, 184, 0.035),
        0 18px 36px rgba(15, 23, 42, 0.075);
}

.pain-card__negative-indicator {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #fbfcfd 0%, #eef2f6 100%);
    color: #6d7988;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.93),
        0 4px 10px rgba(15, 23, 42, 0.055);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease,
        color 0.25s ease;
}

.pain-card__negative-indicator svg,
.solution-card__positive-indicator svg {
    width: 28px;
    height: 28px;
}

.solution-card {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 106, 0, 0.08) 0%,
            rgba(255, 106, 0, 0.02) 22%,
            transparent 44%
        ),
        linear-gradient(180deg, #ffffff 0%, #fffdfc 100%);
    border: 1px solid rgba(255, 106, 0, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(255, 106, 0, 0.04),
        0 18px 40px rgba(15, 23, 42, 0.055),
        0 10px 24px rgba(255, 106, 0, 0.05);
    overflow: visible;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(255, 106, 0, 0.05),
        0 22px 44px rgba(15, 23, 42, 0.07),
        0 12px 28px rgba(255, 106, 0, 0.07);
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 34px;
    background: radial-gradient(
        ellipse 68% 44% at 50% 0%,
        rgba(255, 106, 0, 0.08) 0%,
        transparent 72%
    );
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
}

.solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.78) 0%,
        rgba(255, 255, 255, 0.22) 14%,
        rgba(255, 255, 255, 0) 30%
    );
    pointer-events: none;
}

/* Pain card header */
.pain-card__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(203, 213, 225, 0.58);
}

.pain-card__header-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pain-card__header-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #374253;
    line-height: 1.2;
}

.pain-card__header-sub {
    font-size: 12px;
    font-weight: 500;
    color: #8b95a3;
    letter-spacing: 0;
    line-height: 1.35;
    margin: 1px 0 0;
}

/* Solution card header */
.solution-card__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.solution-card__header-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.solution-card__header-label {
    display: block;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #0f172a;
    line-height: 1.2;
}

.solution-card__header-sub {
    font-size: 12px;
    font-weight: 500;
    color: #c95c17;
    letter-spacing: 0;
    line-height: 1.35;
    margin: 1px 0 0;
    opacity: 1;
}

.solution-card__positive-indicator {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff8f2 0%, #ffe6d0 100%);
    color: #ff6a00;
    border: 1px solid rgba(255, 106, 0, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 4px 12px rgba(255, 106, 0, 0.08);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.solution-card__positive-indicator svg {
    width: 30px;
    height: 30px;
}

.solution-card__accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 42%;
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #ff6a00 30%,
        #cc3a00 60%,
        #1a1a1a 100%
    );
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.14);
}

.pain-card:hover .pain-card__negative-indicator {
    color: #5f6b7c;
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 6px 14px rgba(15, 23, 42, 0.07);
}

.solution-card:hover .solution-card__positive-indicator {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 6px 16px rgba(255, 106, 0, 0.12);
}

.pain-solution__divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-solution__divider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(209, 213, 219, 0.34) 20%,
        rgba(255, 106, 0, 0.14) 50%,
        rgba(209, 213, 219, 0.34) 80%,
        rgba(255, 255, 255, 0) 100%
    );
}

.pain-solution__divider-circle {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
    color: #ff7a00;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid #fde1cf;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -6px 12px rgba(255, 122, 0, 0.03),
        0 14px 30px rgba(0, 0, 0, 0.08),
        0 0 18px rgba(255, 106, 0, 0.1);
}

.pain-solution__divider-circle::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(255, 106, 0, 0.1);
    opacity: 0.9;
}

.pain-solution__divider-circle::after {
    content: "";
    position: absolute;
    inset: -17px;
    border-radius: 50%;
    border: 1px solid rgba(255, 106, 0, 0.06);
    opacity: 0.8;
}

.pain-solution__divider::before {
    content: "";
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 106, 0, 0.1) 0%,
        rgba(255, 106, 0, 0.035) 42%,
        rgba(255, 106, 0, 0) 72%
    );
    filter: blur(10px);
    opacity: 0.7;
}

.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 106, 0, 0.18);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-ring--1 {
    width: 84px;
    height: 84px;
    opacity: 0.22;
}

.radar-ring--2 {
    width: 114px;
    height: 114px;
    opacity: 0.1;
}

.ps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ps-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
    color: #4d4d4d;
    line-height: 1.5;
    padding: 8px 0;
}

.ps-list li:first-child {
    padding-top: 0;
}

.ps-list li + li {
    border-top: 1px solid rgba(229, 231, 235, 0.46);
}

.ps-list--solution li + li {
    border-top-color: rgba(255, 106, 0, 0.08);
}

.ps-list__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-list__icon--bad {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 2px 6px rgba(15, 23, 42, 0.02);
    color: #738093;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.ps-list__icon--good {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
    border: 1px solid rgba(255, 106, 0, 0.18);
    color: #ff6a00;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 2px 8px rgba(255, 106, 0, 0.06);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.pain-card:hover .ps-list__icon--bad {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 4px 10px rgba(15, 23, 42, 0.03);
}

.solution-card:hover .ps-list__icon--good {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 4px 12px rgba(255, 106, 0, 0.09);
}

.ps-list__icon--svg {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.ps-list__icon--svg svg {
    width: 21px;
    height: 21px;
    display: block;
    stroke-width: 1.6;
}

.ps-list--solution .ps-list__label {
    color: #2d2d2d;
}

.ps-list__title {
    font-weight: 600;
    flex: 1;
    color: #111827;
    letter-spacing: -0.012em;
    line-height: 1.46;
}

.ps-list--pain .ps-list__title {
    color: #556170;
}

.ps-list--solution .ps-list__title {
    color: #1e2735;
}

.btn--orange {
    background: linear-gradient(180deg, #ff7a1a 0%, #ff6200 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(255, 106, 0, 0.26);
}

.btn--orange:hover {
    background: linear-gradient(180deg, #ff8a33 0%, #f06000 100%);
    box-shadow: 0 10px 28px rgba(255, 106, 0, 0.32);
    transform: translateY(-1px);
}

.pain-solution__cta-wrap {
    margin-top: auto;
    padding-top: 14px;
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.pain-solution__cta {
    display: inline-flex;
    align-self: flex-end;
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
}

/* ═══════════════════════════════════════
   BENEFITS
═══════════════════════════════════════ */
.benefits {
    padding: 84px 0 52px;
    background:
        radial-gradient(
            circle at top center,
            rgba(255, 122, 0, 0.06),
            transparent 26%
        ),
        #ffffff;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 3px solid rgba(255, 122, 0, 0.18);
    border-radius: 16px;
    padding: 32px 24px;
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    border-color: rgba(255, 122, 0, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.benefit-card__icon--svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: linear-gradient(
        180deg,
        rgba(255, 122, 0, 0.12),
        rgba(255, 122, 0, 0.05)
    );
    border-radius: 14px;
    margin: 0 auto 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   COMO FUNCIONA
═══════════════════════════════════════ */
.how-it-works {
    padding: 0px 0;
    margin-bottom: -48px;
    position: relative;
    border-top: 3px solid transparent;
    border-image: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 106, 0, 0.55) 22%,
            rgba(255, 164, 60, 0.9) 50%,
            rgba(255, 106, 0, 0.55) 78%,
            transparent 100%
        )
        1;
    background:
        radial-gradient(
            circle,
            rgba(148, 163, 184, 0.028) 1px,
            transparent 1px
        ),
        linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    background-size:
        32px 32px,
        auto;
}

/* glow laranja lado direito */
.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background: radial-gradient(
        circle at 82% 50%,
        rgba(218, 106, 34, 0.055) 0%,
        transparent 64%
    );
    pointer-events: none;
    z-index: 0;
}

/* grade tecnológica lado direito */
.how-it-works::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    background-image:
        linear-gradient(rgba(229, 231, 235, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 231, 235, 0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.how-it-works__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.22fr 0.78fr;
    gap: 48px;
    align-items: center;
}

/* ── COLUNA ESQUERDA ── */
.how-it-works__text {
    display: flex;
    flex-direction: column;
    max-width: 320px;
}

.how-it-works__label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d7671e;
    margin-bottom: 10px;
}

.how-it-works__title {
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -0.035em;
    color: #111827;
    margin-bottom: 12px;
}

.how-it-works__sub {
    font-size: 14px;
    line-height: 1.64;
    color: #6e7683;
    max-width: 304px;
    margin-bottom: 28px;
}

.how-it-works__cta {
    align-self: flex-start;
    min-width: 192px;
}

/* ── COLUNA DIREITA: ORBITAL ── */
.how-it-works__orbital {
    display: flex;
    align-items: center;
    justify-content: stretch;
    width: 100%;
    overflow: visible;
    padding: 0 8px 0 0;
}

.hw-orbit {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.78;
    transform: scale(1.24);
    transform-origin: center;
}

.hw-orbit::before {
    content: "";
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 152, 74, 0.08) 0%,
        rgba(255, 152, 74, 0.05) 18%,
        rgba(255, 152, 74, 0.018) 38%,
        transparent 64%
    );
    filter: blur(16px);
    pointer-events: none;
    z-index: 0;
}

.hw-orbit::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(201, 113, 49, 0.055);
    box-shadow:
        0 0 0 20px rgba(201, 113, 49, 0.022),
        0 0 0 42px rgba(201, 113, 49, 0.012);
    pointer-events: none;
    z-index: 1;
}

.hw-orbit__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    transform: scale(0.64);
    transform-origin: center;
}

/* ── círculo central ── */
.hw-orbit__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 19.4%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 36% 30%,
            rgba(198, 116, 53, 0.18) 0%,
            rgba(104, 49, 22, 0.07) 34%,
            transparent 62%
        ),
        linear-gradient(145deg, #181310 0%, #120f0d 42%, #0d1118 100%);
    border: 1px solid rgba(194, 111, 49, 0.14);
    box-shadow:
        0 0 0 10px rgba(194, 99, 37, 0.025),
        0 0 20px rgba(140, 67, 24, 0.11),
        0 0 44px rgba(63, 29, 12, 0.08),
        inset 0 1px 0 rgba(240, 158, 74, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 2;
}

.hw-center__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(174, 100, 46, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hw-center__ring--outer {
    width: 112%;
    aspect-ratio: 1 / 1;
    animation: hw-ring-pulse 3.8s ease-in-out infinite;
}

.hw-center__ring--inner {
    width: 101%;
    aspect-ratio: 1 / 1;
    border-color: rgba(158, 88, 37, 0.08);
    animation: hw-ring-pulse 3.8s ease-in-out infinite 1.4s;
}

@keyframes hw-ring-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.18;
    }
}

.hw-center__icon {
    flex-shrink: 0;
}

.hw-center__label {
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.24);
}

/* ── nós orbitais ──
   Layout consistente: badge (número + ícone) sempre na borda da elipse,
   texto apontando para fora do centro.
   ViewBox 680×420, centro (340,210), rx=250, ry=130
*/
.hw-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 264px;
    z-index: 4;
}

/* 01 — topo (θ=270°): badge na borda, texto vai para BAIXO (dentro da órbita) */
.hw-node--1 {
    left: 50%;
    top: 26.8%;
    width: 52px;
    margin-left: -26px;
    transform: translateY(-50%);
}

/* 02 — direita superior (θ=340°): badge na borda, texto abaixo */
.hw-node--2 {
    left: 64.8%;
    top: 38.6%;
    transform: translate(0, -50%);
}

/* 03 — direita inferior (θ=20°): badge na borda, texto abaixo */
.hw-node--3 {
    left: 64.8%;
    top: 61.4%;
    transform: translate(0, -50%);
}

/* 04 — base (θ=90°): texto vai para CIMA (dentro da órbita), badge na borda */
.hw-node--4 {
    left: 46%;
    top: 73.2%;
    width: 52px;
    margin-left: -26px;
    transform: translateY(-50%);
}

/* 05 — esquerda (θ=180°): badge na borda, texto abaixo */
.hw-node--5 {
    left: 35.2%;
    top: 50%;
    transform: translate(-100%, -50%);
}

.hw-node__badge {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 56px;
    width: 56px;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.hw-node__body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.hw-node--5 .hw-node__body {
    order: -1;
    text-align: right;
}

.hw-node--1 .hw-node__body {
    position: absolute;
    top: 40%;
    left: 78px;
    width: 182px;
    max-width: 182px;
    transform: translateY(-50%);
    text-align: left;
}

.hw-node--4 .hw-node__body {
    position: absolute;
    top: 50%;
    left: 78px;
    width: 186px;
    max-width: 186px;
    transform: translateY(-50%);
    text-align: left;
}

.hw-node--2 .hw-node__body,
.hw-node--5 .hw-node__body {
    max-width: 182px;
}

.hw-node--5 {
    width: 246px;
}

.hw-node--4 .hw-node__badge {
    min-width: 56px;
    width: 56px;
}

.hw-node__body {
    flex: 1;
    min-width: 0;
}

.hw-node__num {
    width: 22px;
    height: 22px;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border-radius: 50%;
    background: linear-gradient(180deg, #d8742a 0%, #b8591b 100%);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hw-node__num {
    box-shadow: 0 2px 6px rgba(148, 74, 29, 0.18);
}

.hw-node__icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(246, 239, 233, 0.98) 100%
    );
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 14px;
    box-shadow:
        0 6px 18px rgba(15, 23, 42, 0.08),
        0 1px 2px rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hw-node__icon svg {
    width: 28px;
    height: 28px;
}

.hw-node__title {
    font-size: 14px;
    font-weight: 700;
    color: #18202b;
    line-height: 1.16;
    letter-spacing: -0.01em;
    margin-bottom: 3px;
}

.hw-node__desc {
    font-size: 12.5px;
    color: #7d8591;
    line-height: 1.35;
}

/* ── fallback mobile ── */
.hw-steps-mobile {
    display: none;
}

.hw-step-m {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    align-items: start;
}

.hw-step-m__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff6a00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.hw-step-m strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 3px;
}

.hw-step-m p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
}

/* ═══════════════════════════════════════
   INTELIGÊNCIA OPERACIONAL
═══════════════════════════════════════ */
.intel-ops {
    padding: 88px 0 68px;
    z-index: 1;
    background:
        radial-gradient(
            ellipse 34% 28% at 50% 42%,
            rgba(255, 106, 0, 0.075) 0%,
            rgba(255, 106, 0, 0.028) 34%,
            transparent 68%
        ),
        radial-gradient(
            ellipse 60% 50% at 80% 40%,
            rgba(255, 106, 0, 0.06) 0%,
            transparent 62%
        ),
        radial-gradient(
            ellipse 50% 60% at 20% 70%,
            rgba(255, 106, 0, 0.03) 0%,
            transparent 56%
        ),
        linear-gradient(180deg, #0b0b0d 0%, #0f1115 100%);
    position: relative;
    overflow: hidden;
}

.intel-ops::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 106, 0, 0.4) 22%,
        rgba(255, 164, 60, 0.72) 50%,
        rgba(255, 106, 0, 0.4) 78%,
        transparent 100%
    );
    pointer-events: none;
}

.intel-ops::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 18% 30%,
            rgba(255, 122, 0, 0.18) 0 1.2px,
            transparent 1.8px
        ),
        radial-gradient(
            circle at 82% 72%,
            rgba(255, 122, 0, 0.14) 0 1.2px,
            transparent 1.8px
        ),
        radial-gradient(
            circle at 18% 30%,
            transparent 0 116px,
            rgba(255, 122, 0, 0.11) 116px 117px,
            transparent 117px
        ),
        radial-gradient(
            circle at 82% 72%,
            transparent 0 144px,
            rgba(255, 122, 0, 0.08) 144px 145px,
            transparent 145px
        ),
        radial-gradient(
            circle at 18% 30%,
            transparent 0 156px,
            rgba(255, 122, 0, 0.05) 156px 157px,
            transparent 157px
        );
    opacity: 0.34;
    pointer-events: none;
}

.intel-ops__header {
    text-align: center;
    max-width: 1120px;
    margin: 0 auto 44px;
}

.intel-ops__title {
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.042em;
    margin-bottom: 6px;
    text-wrap: balance;
}

.intel-ops__highlight {
    color: #ff6a00;
}

.intel-ops__sub {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.54);
    line-height: 1.54;
    max-width: 760px;
    margin: 0 auto;
}

.intel-ops__sub::after {
    content: "";
    display: block;
    width: 66px;
    height: 1px;
    margin: 16px auto 0;
    background: linear-gradient(
        90deg,
        rgba(255, 106, 0, 0) 0%,
        rgba(255, 122, 0, 0.58) 50%,
        rgba(255, 106, 0, 0) 100%
    );
}

.intel-ops__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin-bottom: 30px;
}

.intel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    min-height: 214px;
    padding: 28px 28px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.intel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(
            180deg,
            rgba(255, 106, 0, 0.14) 0%,
            rgba(255, 106, 0, 0.03) 26%,
            rgba(255, 255, 255, 0.02) 58%,
            rgba(255, 255, 255, 0) 100%
        )
        border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.62;
}

.intel-card:nth-child(-n + 3) {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.055) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    min-height: 226px;
    padding: 30px 29px 27px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 18px 28px rgba(255, 255, 255, 0.018),
        0 12px 28px rgba(0, 0, 0, 0.16);
}

.intel-card:nth-child(n + 4) {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.042);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.014);
    transform: translateY(6px);
}

.intel-card:nth-child(n + 4)::after {
    opacity: 0.34;
}

.intel-card:nth-child(-n + 3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 106, 0, 0.18) 18%,
        rgba(255, 164, 60, 0.52) 50%,
        rgba(255, 106, 0, 0.18) 82%,
        transparent 100%
    );
    pointer-events: none;
}

.intel-card:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 126, 28, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
}

.intel-card:nth-child(n + 4):hover {
    background: rgba(255, 255, 255, 0.032);
    border-color: rgba(255, 126, 28, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 10px 22px rgba(0, 0, 0, 0.14);
}

.intel-card:hover::after {
    opacity: 0.88;
}

.intel-card__icon {
    width: 56px;
    height: 56px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 122, 0, 0.12) 0%,
        rgba(255, 122, 0, 0.05) 34%,
        rgba(255, 122, 0, 0.015) 58%,
        transparent 74%
    );
    border: 1px solid rgba(255, 122, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-bottom: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 0 20px rgba(255, 106, 0, 0.05);
}

.intel-card:nth-child(-n + 3) .intel-card__icon {
    width: 58px;
    height: 58px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 122, 0, 0.16) 0%,
        rgba(255, 122, 0, 0.07) 36%,
        rgba(255, 122, 0, 0.02) 62%,
        transparent 78%
    );
    border-color: rgba(255, 122, 0, 0.13);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 0 22px rgba(255, 106, 0, 0.07);
}

.intel-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.014em;
    line-height: 1.28;
    text-align: center;
    max-width: 17ch;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.intel-card__title::before {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin: 0 auto 10px;
    background: linear-gradient(
        90deg,
        rgba(255, 106, 0, 0) 0%,
        rgba(255, 106, 0, 0.46) 50%,
        rgba(255, 106, 0, 0) 100%
    );
}

.intel-card:nth-child(-n + 3) .intel-card__title {
    font-size: 15.8px;
    letter-spacing: -0.018em;
}

.intel-card:nth-child(-n + 3) .intel-card__title::before {
    width: 46px;
    background: linear-gradient(
        90deg,
        rgba(255, 106, 0, 0) 0%,
        rgba(255, 122, 0, 0.6) 50%,
        rgba(255, 106, 0, 0) 100%
    );
}

.intel-card__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.52;
    margin-top: 0;
    max-width: 31ch;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.intel-card:nth-child(n + 4) .intel-card__title {
    color: rgba(255, 255, 255, 0.92);
}

.intel-card:nth-child(n + 4) .intel-card__desc {
    color: rgba(255, 255, 255, 0.36);
}

.intel-ops__cta {
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

.intel-ops__cta-btn {
    position: relative;
    min-width: 254px;
    border-radius: 999px;
    padding: 15px 30px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    color: #f7f8fa;
    border: 1px solid rgba(255, 122, 0, 0.22);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.intel-ops__cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 48%
    );
    pointer-events: none;
}

.intel-ops__cta-btn:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-color: rgba(255, 122, 0, 0.34);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.intel-ops__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 48px;
    margin-bottom: 40px;
}

.intel-stat {
    flex: 1;
    text-align: center;
}

.intel-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #ff7a00;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}

.intel-stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.4;
}

.intel-stat__sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.intel-ops__cta {
    text-align: center;
}

/* ═══════════════════════════════════════
   APP PROOF
═══════════════════════════════════════ */
.app-proof {
    padding: 62px 0 68px;
    background:
        radial-gradient(
            circle at 74% 36%,
            rgba(255, 106, 0, 0.055) 0%,
            rgba(255, 106, 0, 0.018) 24%,
            transparent 46%
        ),
        radial-gradient(
            circle at 22% 70%,
            rgba(148, 163, 184, 0.05) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 78% 46%,
            rgba(255, 255, 255, 0.46) 0%,
            rgba(255, 255, 255, 0.12) 26%,
            transparent 56%
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.28) 54%,
            rgba(255, 255, 255, 0) 100%
        ),
        linear-gradient(180deg, #fbfbfc 0%, #f2f4f6 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.app-proof::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(180, 190, 210, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 190, 210, 0.05) 1px, transparent 1px),
        radial-gradient(
            circle at 76% 28%,
            rgba(255, 106, 0, 0.06) 0 2px,
            transparent 3px
        ),
        radial-gradient(
            circle at 84% 68%,
            rgba(255, 106, 0, 0.06) 0 2px,
            transparent 3px
        ),
        radial-gradient(
            circle at 76% 28%,
            transparent 0 118px,
            rgba(255, 106, 0, 0.08) 118px 119px,
            transparent 119px
        ),
        radial-gradient(
            circle at 84% 68%,
            transparent 0 152px,
            rgba(255, 106, 0, 0.05) 152px 153px,
            transparent 153px
        );
    background-size:
        40px 40px,
        40px 40px,
        auto,
        auto,
        auto,
        auto;
    background-position:
        right 6% center,
        right 6% center,
        center,
        center,
        center,
        center;
    mask-image: radial-gradient(
        ellipse 74% 84% at 78% 50%,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.34) 58%,
        transparent 100%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 74% 84% at 78% 50%,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.34) 58%,
        transparent 100%
    );
    pointer-events: none;
}

.app-proof::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 106, 0, 0.28) 22%,
        rgba(255, 164, 60, 0.52) 50%,
        rgba(255, 106, 0, 0.28) 78%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Chão: faixa escura na base da seção inteira */
.app-proof__floor-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 132px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(10, 14, 22, 0.04) 35%,
        rgba(10, 14, 22, 0.11) 65%,
        rgba(10, 14, 22, 0.2) 100%
    );
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.app-proof__floor-section::before {
    content: "";
    position: absolute;
    right: 8%;
    bottom: 18px;
    width: 280px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(255, 150, 56, 0.16) 0%,
        rgba(255, 120, 20, 0.06) 38%,
        transparent 74%
    );
    filter: blur(18px);
}

.app-proof__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.app-proof__text {
    max-width: 520px;
}

/* Eyebrow badge */
.app-proof__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff6a00;
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-radius: 999px;
    padding: 5px 14px 5px 10px;
    margin-bottom: 20px;
}

.app-proof__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6a00;
    box-shadow: 0 0 6px 2px rgba(255, 106, 0, 0.45);
    flex-shrink: 0;
}

.app-proof__highlight {
    color: #ff6a00;
}

.app-proof__title {
    font-size: clamp(31px, 3.4vw, 44px);
    font-weight: 800;
    color: #111820;
    line-height: 1.08;
    letter-spacing: -0.038em;
    margin-bottom: 14px;
}

.app-proof__sub {
    color: rgba(48, 58, 72, 0.72);
    font-size: 16px;
    line-height: 1.62;
    margin-bottom: 24px;
    max-width: 42ch;
}

.app-proof__sub::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin-top: 20px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff6a00 0%, rgba(255, 106, 0, 0.2) 100%);
}

/* Stats de credibilidade */
.app-proof__stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
    padding: 15px 20px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.66) 100%
    );
    border: 1px solid rgba(220, 226, 234, 0.8);
    border-radius: 16px;
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.app-proof__stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 106, 0, 0) 0%,
        rgba(255, 160, 70, 0.42) 50%,
        rgba(255, 106, 0, 0) 100%
    );
    pointer-events: none;
}

.app-proof__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 2px;
}

.app-proof__stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #ff6a00;
    letter-spacing: -0.03em;
    line-height: 1;
}

.app-proof__stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(50, 60, 75, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.app-proof__stat-div {
    width: 1px;
    height: 32px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(180, 190, 210, 0.5) 50%,
        transparent
    );
    flex-shrink: 0;
}

.app-proof__bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 28px;
}

.app-proof__bullets li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e2733;
    letter-spacing: -0.01em;
    line-height: 1.4;
    padding: 12px 14px;
    min-height: 64px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(220, 228, 238, 0.85);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 4px 12px rgba(15, 23, 42, 0.04);
    transition:
        border-color 0.18s,
        box-shadow 0.18s;
    position: relative;
    overflow: hidden;
}

.app-proof__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 106, 0, 0) 0%,
        rgba(255, 106, 0, 0.46) 50%,
        rgba(255, 106, 0, 0) 100%
    );
    opacity: 0.85;
}

.app-proof__bullets li:hover {
    border-color: rgba(255, 106, 0, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 6px 18px rgba(255, 106, 0, 0.08);
}

.app-proof__bullet-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        rgba(255, 154, 50, 0.14) 0%,
        rgba(255, 106, 0, 0.07) 100%
    );
    border: 1px solid rgba(255, 106, 0, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 12px rgba(255, 106, 0, 0.07),
        0 2px 6px rgba(255, 106, 0, 0.06);
}

.app-proof__cta {
    display: inline-flex;
    align-items: center;
    min-width: 240px;
    padding-left: 26px;
    padding-right: 26px;
    box-shadow:
        0 7px 18px rgba(240, 90, 0, 0.18),
        0 2px 6px rgba(240, 90, 0, 0.1);
    transition:
        transform 0.18s,
        box-shadow 0.18s;
}

.app-proof__cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 24px rgba(240, 90, 0, 0.22),
        0 3px 8px rgba(240, 90, 0, 0.12);
}

.app-proof__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    isolation: isolate;
}

/* Backlight laranja — bloom difuso atrás dos phones */
.app-proof__visual::before {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 270px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at 48% 46%,
        rgba(255, 110, 0, 0.16) 0%,
        rgba(255, 130, 0, 0.09) 34%,
        rgba(255, 110, 0, 0.03) 60%,
        transparent 78%
    );
    filter: blur(54px);
    z-index: 0;
    pointer-events: none;
}

/* Ponto de luz — canto superior (lâmpada pontual atrás) */
.app-proof__visual::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            ellipse at 86% 14%,
            rgba(255, 152, 20, 0.24) 0%,
            rgba(255, 106, 0, 0.11) 8%,
            transparent 17%
        ),
        radial-gradient(
            ellipse at 95% 66%,
            rgba(255, 132, 28, 0.22) 0%,
            rgba(255, 106, 0, 0.1) 10%,
            transparent 24%
        );
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
}

.app-proof__visual-bg {
    display: none;
}

.app-proof__phone-stack {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 22px;
}

.app-proof__phone-stack::before {
    content: "";
    position: absolute;
    right: 26px;
    top: 48%;
    width: 220px;
    height: 360px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(
        ellipse at 42% 44%,
        rgba(255, 140, 40, 0.22) 0%,
        rgba(255, 120, 20, 0.11) 26%,
        rgba(255, 90, 0, 0.03) 56%,
        transparent 80%
    );
    filter: blur(36px);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.app-proof__phone-stack::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translateX(4px);
    width: 240px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(4, 6, 12, 0.72) 0%,
        rgba(4, 6, 12, 0.38) 36%,
        rgba(4, 6, 12, 0.1) 64%,
        transparent 82%
    );
    filter: blur(7px);
    pointer-events: none;
    z-index: 2;
}

.app-proof__tech-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.72;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.08));
}

.app-proof__tech-bg line,
.app-proof__tech-bg rect,
.app-proof__tech-bg circle {
    vector-effect: non-scaling-stroke;
}

.app-proof__tech-bg line {
    stroke-linecap: round;
}

.app-proof__tech-bg circle,
.app-proof__tech-bg rect {
    filter: drop-shadow(0 0 5px rgba(255, 106, 0, 0.12));
}

.app-proof__phone {
    position: absolute;
    z-index: 2;
    width: 260px;
    border-radius: 38px;
    /* Corpo preto brilhante — glossy com reflexo metalico quente no material */
    background:
        radial-gradient(
            ellipse at 31% 3%,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(255, 255, 255, 0.18) 12%,
            rgba(255, 255, 255, 0.06) 24%,
            transparent 44%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 12%,
            transparent 34%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.09) 0%,
            rgba(255, 255, 255, 0.02) 16%,
            transparent 28%
        ),
        radial-gradient(
            ellipse at 17% 18%,
            rgba(255, 188, 104, 0.3) 0%,
            rgba(255, 138, 42, 0.13) 22%,
            transparent 42%
        ),
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 170, 84, 0.06) 9%,
            rgba(255, 176, 90, 0.11) 16%,
            rgba(255, 154, 62, 0.04) 24%,
            transparent 36%
        ),
        linear-gradient(
            175deg,
            #3b3b3b 0%,
            #1a1a1a 18%,
            #090909 58%,
            #010101 100%
        );
    padding: 8px;
    /* Bordas: brilho metalico quente, sem halo neon */
    border-top: 1px solid rgba(255, 214, 164, 0.46);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    border-left: 1px solid rgba(255, 170, 78, 0.34);
    box-shadow:
    /* profundidade */
        0 26px 56px rgba(4, 6, 10, 0.56),
        0 12px 22px rgba(4, 6, 10, 0.32),
        /* brilho do material */ 0 0 0 1px rgba(255, 255, 255, 0.07),
        /* inset: rim light interno metalico — topo, esquerda e verniz */ inset
            0 1px 0 rgba(255, 232, 188, 0.3),
        inset 0 18px 38px rgba(255, 255, 255, 0.06),
        inset 0 3px 14px rgba(255, 166, 78, 0.14),
        inset 1px 0 16px rgba(255, 152, 48, 0.18),
        inset -1px 0 10px rgba(255, 255, 255, 0.06);
}

.app-proof__phone::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 32%;
    height: 12px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(7, 9, 12, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 12px rgba(255, 176, 72, 0.06);
    z-index: 2;
}

/* Reflexo lateral direito — fio de luz branco */
.app-proof__phone::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 8px;
    width: 11px;
    height: calc(100% - 28px);
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.34) 0%,
        rgba(255, 239, 220, 0.2) 14%,
        rgba(255, 186, 110, 0.09) 38%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: blur(1px);
    z-index: 3;
    pointer-events: none;
}

.app-proof__phone-buttons {
    position: absolute;
    top: 82px;
    right: -2px;
    width: 3px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(74, 80, 89, 0.92) 0%,
        rgba(20, 24, 29, 0.98) 100%
    );
    box-shadow:
        0 60px 0 0 rgba(28, 32, 38, 0.95),
        0 118px 0 0 rgba(28, 32, 38, 0.82);
    opacity: 0.9;
}

.app-proof__phone--front {
    position: relative;
    z-index: 4;
    transform: perspective(1200px) rotateX(2deg) translateX(28px);
    box-shadow:
    /* profundidade */
        0 26px 52px rgba(4, 6, 10, 0.52),
        0 12px 20px rgba(4, 6, 10, 0.26),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.app-proof__phone--back {
    z-index: 2;
    transform: translate(-42px, 16px) scale(0.93) perspective(900px)
        rotateY(-18deg) rotateZ(-3deg);
    opacity: 0.32;
    filter: blur(1.6px);
}

.app-proof__phone--back .app-proof__phone-buttons {
    opacity: 0.6;
}

.app-proof__screen {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 19.5;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
    background: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* Ponto de luz laranja — canto superior esquerdo do corpo */
.app-proof__phone-corner {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6a00;
    opacity: 0.52;
    box-shadow:
        0 0 4px 1px rgba(255, 166, 82, 0.24),
        0 0 12px 3px rgba(255, 126, 30, 0.1);
    pointer-events: none;
    z-index: 4;
}

.app-proof__phone-corner--tl {
    top: 18px;
    left: 18px;
    width: 8px;
    height: 8px;
    opacity: 0.74;
    background: #ff7a00;
    box-shadow:
        0 0 2px rgba(255, 210, 144, 0.52),
        0 0 8px 3px rgba(255, 120, 20, 0.3),
        0 0 20px 8px rgba(255, 106, 0, 0.12);
}

.app-proof__phone-corner--br {
    bottom: 18px;
    right: 18px;
    opacity: 0.22;
    box-shadow:
        0 0 4px 1px rgba(255, 106, 0, 0.16),
        0 0 10px 4px rgba(255, 106, 0, 0.06);
}

.app-proof__mockup-wrap .app-proof__phone-corner--tl {
    top: 22px;
    left: 60px;
}

.app-proof__mockup-wrap .app-proof__phone-corner--br {
    bottom: 70px;
    right: 62px;
}

/* Superfície / chão: faixa escura na base da área visual */
.app-proof__floor {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(12, 16, 24, 0.04) 40%,
        rgba(12, 16, 24, 0.11) 72%,
        rgba(12, 16, 24, 0.18) 100%
    );
    border-radius: 0 0 42px 42px;
    pointer-events: none;
    z-index: 0;
}

.app-proof__shelf-shadow {
    display: block;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(10px);
    width: 194px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(2, 4, 12, 0.34) 0%,
        rgba(2, 4, 12, 0.14) 42%,
        rgba(2, 4, 12, 0.03) 72%,
        transparent 90%
    );
    filter: blur(4px);
    pointer-events: none;
    z-index: 2;
}

/* ═══════════════════════════════════════
   DIFERENCIAL
═══════════════════════════════════════ */
.differential {
    padding: 100px 0;
    background: #111111;
}

.differential__title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0 0;
    letter-spacing: -0.02em;
}

.differential .section-header {
    margin-bottom: 56px;
}

.differential__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.differential__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    padding: 28px 24px;
    transition:
        background 0.22s ease,
        border-color 0.22s ease;
}

.differential__item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 122, 0, 0.22);
}

.differential__item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 122, 0, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differential__item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.differential__item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   PLANOS
═══════════════════════════════════════ */
.plans {
    padding: 100px 0;
    background: var(--color-bg);
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 48px;
}

.plan-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.plan-card--featured {
    background: linear-gradient(
        160deg,
        rgba(239, 140, 52, 0.12),
        rgba(255, 255, 255, 0.88)
    );
    border-color: rgba(239, 140, 52, 0.35);
    box-shadow: 0 0 40px rgba(239, 140, 52, 0.12);
    transform: translateY(-8px);
}

.plan-card--featured:hover {
    transform: translateY(-12px);
}

.plan-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-tier {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.plan-card__header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.plan-card__header p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    min-height: 40px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.plan-features li {
    font-size: 14px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li:first-child::after {
    content: "";
}

.plans__bottom-notes {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.plan-note {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-muted);
}

.plan-note span {
    font-size: 22px;
}

/* ═══════════════════════════════════════
   FECHAMENTO INSTITUCIONAL
═══════════════════════════════════════ */
.closing-note {
    position: relative;
    padding: 42px 0 38px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(255, 128, 24, 0.16) 0%,
            rgba(255, 128, 24, 0.07) 18%,
            rgba(255, 128, 24, 0) 52%
        ),
        linear-gradient(180deg, #121212 0%, #0b0b0b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.closing-note::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 34%,
            rgba(255, 148, 62, 0.12) 0%,
            rgba(255, 148, 62, 0.05) 20%,
            transparent 56%
        ),
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 100%
        );
    z-index: 1;
    pointer-events: none;
}

.closing-note::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(720px, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 106, 0, 0) 0%,
        rgba(255, 154, 50, 0.34) 50%,
        rgba(255, 106, 0, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.closing-note__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    text-align: center;
}

.closing-note__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 190, 138, 0.88);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.closing-note__title {
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #ffffff;
    max-width: 920px;
    margin: 0 auto 8px;
}

.closing-note__sub {
    max-width: 780px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.52;
    color: rgba(255, 255, 255, 0.7);
}

.closing-note__meta {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 194, 146, 0.72);
}

/* Contact form */
.contact-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    margin-bottom: 14px;
}

.contact-form input {
    width: 100%;
    background: var(--color-bg-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 13px 16px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--color-text);
    outline: none;
    transition: var(--transition);
}

.contact-form input::placeholder {
    color: var(--color-text-faint);
}

.contact-form input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.contact-form .btn--primary {
    margin-top: 6px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 16px;
}

.form-note a {
    color: #d4651a;
    text-decoration: underline;
}

.form-success {
    background: var(--color-surface);
    border: 1px solid rgba(239, 140, 52, 0.24);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    color: var(--color-text);
}

.form-success span {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}
.form-success strong {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    position: relative;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 132, 28, 0.1) 0%,
            rgba(255, 132, 28, 0.03) 22%,
            transparent 54%
        ),
        linear-gradient(180deg, #0b0b0b 0%, #080808 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0 0;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255, 106, 0, 0) 0%,
        rgba(255, 154, 50, 0.34) 50%,
        rgba(255, 106, 0, 0) 100%
    );
    pointer-events: none;
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 48px;
    padding-bottom: 42px;
    align-items: start;
}

.footer__logo-plate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.52) 0%,
        rgba(0, 0, 0, 0.76) 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.015),
        0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer__logo,
.footer__brand img {
    height: 36px;
    width: auto;
    border-radius: var(--radius-sm);
    margin-bottom: 0;
}

.footer__brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.52);
    max-width: 260px;
}

.footer__nav,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.34);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.58);
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer__links a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer__contact-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 154, 50, 0.34);
    box-shadow: inset 0 -1px 0 rgba(255, 154, 50, 0.1);
    transition:
        color var(--transition),
        border-color var(--transition);
}

.footer__contact-link:hover {
    color: #ffb067;
    border-bottom-color: rgba(255, 176, 103, 0.55);
}

.footer__contact-note {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.48);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer__bottom p {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
}

.footer__bottom-note {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 194, 146, 0.58);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: 580px;
        padding-bottom: 72px;
    }
    .hero__inner {
        padding-left: 72px;
        padding-right: 56px;
        padding-top: 16px;
        gap: 24px;
    }
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .diferenciais-bar {
        padding: 22px 24px;
    }
    .diferenciais-bar__inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }
    .diferencial {
        justify-content: flex-start;
        padding: 8px 12px;
    }
    .diferencial__divider {
        display: none;
    }
    .how-it-works__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .how-it-works__sub {
        max-width: 100%;
    }
    .hw-orbit {
        width: min(520px, 100%);
    }
    .intel-ops {
        padding: 80px 0 60px;
    }
    .intel-ops__header {
        margin-bottom: 38px;
    }
    .intel-ops__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .intel-card,
    .intel-card:nth-child(-n + 3) {
        min-height: 210px;
    }
    .intel-card:nth-child(n + 4) {
        transform: none;
    }
    .intel-card__title,
    .intel-card:nth-child(-n + 3) .intel-card__title {
        max-width: 100%;
    }
    .intel-card__desc {
        max-width: 100%;
    }
    .intel-ops__cta-btn {
        min-width: 236px;
    }
    .app-proof__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .app-proof__text {
        max-width: 100%;
    }
    .app-proof__stats {
        max-width: 520px;
        margin-bottom: 24px;
    }
    .app-proof__bullets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .app-proof__visual {
        min-height: 500px;
        justify-content: center;
    }
    .app-proof__phone-stack {
        justify-content: center;
        padding-right: 0;
        width: min(100%, 410px);
    }
    .app-proof__phone--back {
        transform: translate(-44px, 20px) scale(0.92) perspective(900px)
            rotateY(-14deg) rotateZ(-2deg);
    }
    .differential__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .plans__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 48px;
    }
    .plan-card--featured {
        transform: none;
    }
    .differential__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .differential__visual {
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding-right: 24px;
    }
    .navbar__links {
        display: none;
    }
    .navbar__cta {
        margin-left: auto;
        padding: 9px 18px;
    }

    .hero__inner {
        gap: 28px;
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 12px;
    }
    .hero {
        min-height: auto;
        padding-top: 104px;
        padding-bottom: 92px;
    }
    .hero__bg-img {
        height: 112%;
        object-position: 82% top;
        top: -24px;
    }
    .hero__bg-overlay {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.76) 46%,
            rgba(0, 0, 0, 0.28) 72%,
            rgba(0, 0, 0, 0.06) 100%
        );
    }
    .hero__content {
        max-width: 100%;
        gap: 20px;
    }
    .hero__title {
        font-size: clamp(31px, 9vw, 40px);
    }
    .hero__subtitle {
        font-size: 16px;
    }
    .hero__checks {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-left: 0;
        padding-right: 0;
    }
    .hero__check-item {
        gap: 10px;
    }
    .hero__check-divider {
        display: none;
    }
    .hero__actions {
        flex-direction: column;
        padding-right: 0;
    }
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero__fade {
        height: 120px;
    }
    .hero__separator {
        bottom: 54px;
    }

    .floating-bar-wrap {
        margin-top: -36px;
        padding: 0 16px;
    }
    .diferenciais-bar {
        padding: 18px;
        border-radius: 18px;
    }
    .diferenciais-bar__inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .diferencial {
        justify-content: flex-start;
        padding: 10px 8px;
    }
    .diferencial__icon {
        width: 48px;
        height: 48px;
    }
    .diferencial__icon svg {
        width: 40px;
        height: 40px;
    }

    .proof-bar__inner {
        flex-direction: column;
        text-align: center;
    }
    .proof-bar__stats {
        justify-content: center;
    }
    .stat-divider {
        display: none;
    }

    .pain-solution__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .pain-solution__divider {
        display: none;
    }
    .pain-card,
    .solution-card {
        padding: 28px 22px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .benefit-card {
        text-align: left;
    }
    .benefit-card__icon--svg {
        margin: 0 0 18px;
    }

    .how-it-works {
        padding: 72px 0;
    }
    .how-it-works__orbital {
        display: none;
    }
    .hw-steps-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .how-it-works__cta {
        align-self: stretch;
        text-align: center;
    }
    .intel-ops {
        padding: 68px 0 54px;
    }
    .intel-ops__header {
        margin-bottom: 30px;
    }
    .intel-ops__title {
        font-size: clamp(29px, 8vw, 38px);
        line-height: 1.12;
        margin-bottom: 8px;
    }
    .intel-ops__sub {
        font-size: 14.5px;
        line-height: 1.55;
        max-width: 100%;
    }
    .intel-ops__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    .intel-card,
    .intel-card:nth-child(-n + 3),
    .intel-card:nth-child(n + 4) {
        min-height: auto;
        padding: 24px 22px;
        transform: none;
    }
    .intel-card::after,
    .intel-card:nth-child(n + 4)::after {
        opacity: 0.52;
    }
    .intel-card__icon,
    .intel-card:nth-child(-n + 3) .intel-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    .intel-card__title,
    .intel-card:nth-child(-n + 3) .intel-card__title {
        font-size: 15px;
        max-width: 100%;
    }
    .intel-card__desc,
    .intel-card:nth-child(n + 4) .intel-card__desc {
        font-size: 13px;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.4);
    }
    .intel-ops__cta {
        margin-top: 0;
    }
    .intel-ops__cta-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .app-proof__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .app-proof {
        padding: 34px 0 38px;
    }
    .app-proof__title {
        font-size: clamp(28px, 8vw, 36px);
    }
    .app-proof__sub {
        font-size: 15px;
        margin-bottom: 22px;
    }
    .app-proof__sub::after {
        width: 58px;
        margin-top: 16px;
    }
    .app-proof__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        padding: 12px 8px;
        margin-bottom: 22px;
    }
    .app-proof__stat {
        gap: 4px;
    }
    .app-proof__stat-value {
        font-size: 18px;
    }
    .app-proof__stat-label {
        font-size: 9px;
        letter-spacing: 0.05em;
    }
    .app-proof__stat-div {
        display: none;
    }
    .app-proof__bullets {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }
    .app-proof__bullets li {
        font-size: 14px;
        line-height: 1.45;
        min-height: auto;
        padding: 14px 14px;
    }
    .app-proof__visual {
        min-height: 430px;
    }
    .app-proof__visual::before {
        width: 190px;
        height: 300px;
        right: 24px;
        filter: blur(40px);
    }
    .app-proof__visual::after {
        width: 82px;
        height: 104px;
        right: 56px;
    }
    .app-proof__phone {
        width: min(100%, 264px);
        border-radius: 32px;
        padding: 7px;
    }
    .app-proof__phone::before {
        top: 10px;
        height: 11px;
    }
    .app-proof__phone-buttons {
        top: 72px;
        height: 40px;
        box-shadow:
            0 54px 0 0 rgba(28, 32, 38, 0.95),
            0 106px 0 0 rgba(28, 32, 38, 0.82);
    }
    .app-proof__phone--front {
        transform: perspective(1200px) rotateX(1deg) translateX(8px);
    }
    .app-proof__phone--back {
        transform: translate(-34px, 18px) scale(0.93) perspective(900px)
            rotateY(-10deg) rotateZ(-2deg);
        opacity: 0.22;
    }
    .app-proof__screen {
        border-radius: 26px;
    }
    .app-proof__cta {
        width: 100%;
    }
    .app-proof__text {
        max-width: 100%;
    }
    .app-features {
        gap: 14px;
        margin-bottom: 28px;
    }
    .app-features li {
        padding: 14px 14px;
    }
    .app-gallery {
        grid-template-columns: 1fr;
        padding: 14px;
    }
    .app-gallery__main {
        grid-row: auto;
        min-height: 360px;
    }
    .app-gallery__secondary {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .app-gallery__secondary img {
        aspect-ratio: 3 / 4;
    }

    .differential__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .closing-note {
        padding: 48px 0 44px;
    }
    .closing-note__title {
        font-size: 34px;
    }
    .closing-note__sub {
        font-size: 17px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer__links {
        gap: 14px;
    }
    .footer__bottom-inner {
        flex-direction: column;
        align-items: center;
    }
    .plans__bottom-notes {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }
    .app-proof {
        padding: 34px 0 38px;
        overflow: hidden;
    }
    .app-proof__phone-stack {
        transform: none;
    }
    .app-proof__visual {
        min-height: 430px;
    }
    .app-proof__phone {
        width: 274px;
        border-radius: 34px;
    }
    .app-proof__phone::after {
        right: 9px;
        width: 8px;
    }
    .app-proof__phone-buttons {
        top: 72px;
        height: 40px;
        box-shadow:
            0 54px 0 0 rgba(28, 32, 38, 0.95),
            0 106px 0 0 rgba(28, 32, 38, 0.82);
    }
    .app-proof__phone--front {
        transform: translateX(14px);
    }
    .app-proof__phone--back {
        transform: translate(-34px, 18px) scale(0.93) perspective(900px)
            rotateY(-10deg) rotateZ(-2deg);
        opacity: 0.28;
    }
    .app-proof__screen {
        border-radius: 26px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 86px;
    }
    .navbar {
        height: 82px;
    }
    .navbar__logo {
        height: 82px;
    }
    .navbar__cta {
        font-size: 13px;
        padding: 8px 14px;
    }
    .hero__inner {
        padding-left: 18px;
        padding-right: 18px;
    }
    .hero__title {
        font-size: 29px;
    }
    .hero__subtitle {
        font-size: 15px;
    }
    .hero__bg-img {
        object-position: 86% top;
        top: -8px;
    }
    .hero__separator {
        bottom: 48px;
    }
    .floating-bar-wrap {
        margin-top: -28px;
        padding: 0 12px;
    }
    .diferenciais-bar {
        padding: 16px 14px;
    }
    .diferencial__text strong {
        font-size: 13px;
    }
    .diferencial__text span {
        font-size: 11px;
    }
    .proof-bar__stats {
        gap: 20px;
    }
    .app-gallery__main {
        min-height: 300px;
    }
    .app-gallery__secondary {
        grid-template-columns: 1fr;
    }
    .closing-note {
        padding: 44px 0 40px;
    }
    .closing-note__eyebrow {
        font-size: 10px;
        letter-spacing: 0.14em;
        margin-bottom: 18px;
    }
    .closing-note__title {
        font-size: 29px;
    }
    .closing-note__sub {
        font-size: 15px;
    }
    .closing-note__meta {
        font-size: 11px;
        line-height: 1.8;
    }
    .footer {
        padding-top: 42px;
    }
    .footer__contact-link {
        font-size: 15px;
    }
}
