﻿/* ============================================================
   Sentinel BI — Redesign v2
   Editorial layout, bold typography, product-first
   ============================================================ */

:root {
    --font-body: "Inter", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-nav: "DM Sans", sans-serif;
    --bg: #0b0b0d;
    --bg-raised: #131318;
    --surface: #f5f1ec;
    --surface-alt: #ece6df;
    --text: #f0ebe6;
    --text-muted: #7d7773;
    --text-dark: #1a1717;
    --text-dark-muted: #6b6462;
    --red: #df1c2f;
    --red-dark: #a90e1e;
    --red-glow: rgba(223, 28, 47, 0.15);
    --line: rgba(255, 255, 255, 0.08);
    --line-dark: rgba(0, 0, 0, 0.07);
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
    --container: min(1200px, calc(100vw - 48px));
    --section-pad: clamp(80px, 12vh, 160px);
    --ticker-height: 26px;
    --ticker-gap: 8px;
    --topbar-offset: calc(var(--ticker-height) + var(--ticker-gap));
    --topbar-height: 72px;
    --topbar-height-compact: 64px;
    --menu-origin-x: calc(100% - 40px);
    --menu-origin-y: 54px;
}


/* ══ Reset ══ */

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

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

@media (max-width: 900px) {
    html { scroll-behavior: smooth; }
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

main, footer, header, .nav-mega {
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1, h2, h3, h4, p, ul, blockquote, figure {
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    padding: 0;
    list-style: none;
}


/* ══ Layout ══ */

.container {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* ══ Typography ══ */

.eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    margin-bottom: 20px;
}

.eyebrow-dark {
    color: var(--red);
}

.accent {
    color: var(--red);
}


/* ══ Buttons ══ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 11px 26px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, background 0.35s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.btn:hover::before {
    left: 125%;
}

.btn-primary {
    background: var(--red);
    color: white;
}

.hero-actions .btn-primary {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(223, 28, 47, 0); }
    50% { box-shadow: 0 0 24px 6px rgba(223, 28, 47, 0.3); }
}

.hero-actions .btn-primary:hover {
    animation: none;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(223, 28, 47, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
    border-color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.06);
}

.btn-lg {
    padding: 14px 34px;
    font-size: 0.9375rem;
}

/* ghost — texto com seta, sem fundo */
.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border: none;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: 600;
    transition: color 0.25s, transform 0.25s;
}

.btn-ghost:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(3px);
    box-shadow: none;
}

/* ghost em seção com fundo claro */
.proposta .btn-ghost {
    color: var(--text-dark-muted);
}

.proposta .btn-ghost:hover {
    color: var(--text-dark);
}

/* Linha de CTA dentro de seções */
.section-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.section-cta-row.section-cta-center {
    justify-content: center;
}


/* ══ Scroll Progress ══ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 10000;
}

.scroll-progress span {
    display: block;
    height: 100%;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
    box-shadow: 0 0 12px rgba(223, 28, 47, 0.6), 0 0 4px rgba(223, 28, 47, 0.4);
    filter: drop-shadow(2px 0 8px rgba(223, 28, 47, 0.5));
}


/* ══ Custom Cursor ══ */

.cursor-dot {
    position: fixed;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    will-change: transform;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(223, 28, 47, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    will-change: transform;
    transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s, border-color 0.3s;
}

.cursor-ring.is-hover {
    width: 56px;
    height: 56px;
    top: -28px;
    left: -28px;
    border-color: var(--red);
}

.cursor-ring.is-clicking {
    width: 32px;
    height: 32px;
    top: -16px;
    left: -16px;
}


/* ══════════════════════════════════════════════════
   TOP TICKER
   ══════════════════════════════════════════════════ */

.topbar-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--ticker-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 16, 0.9);
    backdrop-filter: blur(10px) saturate(1.05);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
    mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar-ticker.is-scrolled {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.topbar-ticker-marquee {
    display: flex;
    width: max-content;
    min-width: 100%;
    animation: topbar-ticker-loop 26s linear infinite;
    will-change: transform;
}

.topbar-ticker:hover .topbar-ticker-marquee {
    animation-play-state: paused;
}

.topbar-ticker-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: max-content;
    gap: 18px;
    padding-right: 18px;
}

.topbar-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding-left: 20px;
    white-space: nowrap;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(236, 205, 210, 0.86);
}

.topbar-ticker-item::before {
    content: "//";
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
    flex-shrink: 0;
}

@keyframes topbar-ticker-loop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .topbar-ticker-marquee {
        animation: none;
    }
}


/* ══════════════════════════════════════════════════
   TOPBAR — dark glass
   ══════════════════════════════════════════════════ */

.topbar {
    position: fixed;
    top: var(--topbar-offset);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--topbar-height);
    background: rgba(10, 10, 14, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: auto;
    /* Entrada: slide-down */
    animation: topbar-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.topbar::before {
    display: none;
}

@keyframes topbar-enter {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.topbar::after {
    display: none;
}

.topbar.is-scrolled {
    top: 0;
    height: var(--topbar-height-compact);
    background: rgba(10, 10, 14, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: auto;
}

body.is-menu-open .topbar {
    background: rgba(10, 10, 14, 0.92);
    box-shadow: none;
    pointer-events: auto;
}

body.is-menu-open .topbar::after { display: none; }

body.is-menu-open .topbar .btn-primary {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

body.is-menu-open .brand-text {
    color: #fff;
}

.topbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0 clamp(20px, 3vw, 48px);
    align-items: center;
    height: 100%;
    padding: 0 clamp(36px, 5vw, 72px);
    position: relative;
    overflow: visible;
    pointer-events: auto;
}

.topbar-inner::before,
.topbar-inner::after {
    display: none;
}

.topbar-inner > * {
    position: relative;
    z-index: 1;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    text-decoration: none;
    grid-column: 2;
    justify-self: center;
}

/* Separador decorativo logo | nav */
.brand::after {
    display: none;
}

.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.3s;
}

.brand-logo-wordmark {
    height: 48px;
}

.brand:hover .brand-logo {
    transform: scale(1.03);
    opacity: 0.9;
}

.brand.has-logo .brand-text { display: block; }

.brand-text {
    font-family: var(--font-nav);
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.01em;
}

.nav-desktop {
    display: flex;
    gap: clamp(18px, 1.6vw, 28px);
    align-items: center;
    flex-wrap: nowrap;
}

.nav-desktop-left {
    grid-column: 1;
    justify-self: end;
}

.topbar-left-group {
    grid-column: 1;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(32px, 4vw, 64px);
}

.topbar-brand-name {
    font-family: var(--font-nav);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
    opacity: 1;
}

.topbar-brand-name:hover {
    opacity: 0.8;
}

.topbar-brand-accent {
    color: #df1c2f;
}

.nav-desktop-right {
    justify-content: flex-end;
}

.topbar-side-right {
    grid-column: 3;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(12px, 1vw, 18px);
    min-width: 0;
}

.nav-desktop a {
    font-family: var(--font-nav);
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.25s;
    position: relative;
    padding: 6px 0;
    border-radius: 0;
    white-space: nowrap;
    /* link stagger na entrada */
    opacity: 0;
    animation: nav-link-enter 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

.nav-desktop a:nth-child(1)  { animation-delay: 0.15s; }
.nav-desktop a:nth-child(2)  { animation-delay: 0.20s; }
.nav-desktop a:nth-child(3)  { animation-delay: 0.25s; }
.nav-desktop a:nth-child(4)  { animation-delay: 0.30s; }
.nav-desktop a:nth-child(5)  { animation-delay: 0.35s; }
.nav-desktop a:nth-child(6)  { animation-delay: 0.40s; }
.nav-desktop a:nth-child(7)  { animation-delay: 0.45s; }
.nav-desktop a:nth-child(8)  { animation-delay: 0.50s; }

@keyframes nav-link-enter {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* pill highlight no hover */
.nav-desktop a::before {
    display: none;
}

.nav-desktop a:hover::before {
    display: none;
}

/* dot indicador ativo */
.nav-desktop a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 20px;
    height: 1px;
    border-radius: 999px;
    background: rgba(244, 207, 211, 0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
    opacity: 0;
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
    color: rgba(255, 255, 255, 1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
    /* entrada com delay após links */
    opacity: 0;
    animation: nav-link-enter 0.5s cubic-bezier(0.22,1,0.36,1) 0.55s both;
}

/* CTA navbar */
.header-actions .btn-primary {
    font-family: var(--font-nav);
    font-size: 0.84rem;
    font-weight: 600;
    min-height: 38px;
    padding: 8px 18px;
    letter-spacing: -0.01em;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(223, 28, 47, 0.7);
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(223, 28, 47, 0.25), inset 0 0 12px rgba(223, 28, 47, 0.06);
    display: flex;
    align-items: center;
    gap: 0;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.header-actions .btn-primary:hover {
    background: rgba(223, 28, 47, 0.12);
    border-color: rgba(223, 28, 47, 1);
    box-shadow: 0 0 20px rgba(223, 28, 47, 0.4), inset 0 0 16px rgba(223, 28, 47, 0.1);
}

.header-actions .btn-primary::after {
    display: none;
}

@keyframes navDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.6); }
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: 1001;
}

.menu-btn:hover {
    border-color: var(--red);
    background: rgba(223, 28, 47, 0.06);
}

.menu-btn:active {
    transform: scale(0.92);
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s;
    transform-origin: center;
}

.menu-btn:hover span:nth-child(1) {
    width: 14px;
}

.menu-btn:hover span:nth-child(3) {
    width: 14px;
}

/* X animation when open */
.menu-btn.is-open {
    border-color: rgba(255, 255, 255, 0.15);
    background: transparent;
}

.menu-btn.is-open span {
    background: #fff;
}

.menu-btn.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
    width: 20px;
}

.menu-btn.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
    width: 20px;
}


/* ══════════════════════════════════════════════════
   MENU OVERLAY
   ══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   MENU OVERLAY — side panel (Hex-style)
   ══════════════════════════════════════════════════ */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-menu-open .menu-overlay {
    background: rgba(0, 0, 0, 0.55);
    pointer-events: all;
}

body.is-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    touch-action: none;
}

body.is-menu-open .whatsapp-float,
body.is-menu-open .back-to-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.92);
}

/* ── Panel ── */
.menu-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(400px, 100vw);
    background: #0d0d12;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

body.is-menu-open .menu-panel {
    transform: translateX(0);
}

/* ── Panel header ── */
.menu-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-brand img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.menu-brand-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
}

.menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ── Scrollable body ── */
.menu-body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

.menu-body::-webkit-scrollbar { display: none; }

/* ── Groups ── */
.menu-group {
    padding: 16px 0 4px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.menu-group:last-child {
    border-bottom: none;
}

.menu-group-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.28);
    padding: 0 20px 6px;
}

/* ── Nav items ── */
.menu-nav {
    display: flex;
    flex-direction: column;
}

.menu-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    min-height: 50px;
    line-height: 1.3;
    transition: background 0.18s, color 0.18s;
    -webkit-tap-highlight-color: transparent;
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    border-radius: 0;
    position: relative;
}

.menu-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.menu-nav a::before,
.menu-nav a::after {
    display: none;
}

.menu-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.menu-nav a:hover .menu-item-icon {
    background: rgba(223, 28, 47, 0.12);
    border-color: rgba(223, 28, 47, 0.25);
    color: var(--red);
}

.menu-item-label {
    flex: 1;
    min-width: 0;
}

.menu-item-chevron {
    color: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    transition: color 0.18s, transform 0.18s;
}

.menu-nav a:hover .menu-item-chevron {
    color: rgba(255, 255, 255, 0.5);
    transform: translateX(3px);
}

/* Override old stagger selectors */
body.is-menu-open .menu-nav a {
    opacity: 1;
    transform: none;
    filter: none;
}

/* ── Footer ── */
.menu-footer {
    padding: 16px 20px max(16px, env(safe-area-inset-bottom, 12px));
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-footer .btn-primary {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 8px 24px rgba(223, 28, 47, 0.25);
}

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

.menu-contact a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 4px 0;
    transition: color 0.2s;
}

.menu-contact a:hover {
    color: rgba(255, 255, 255, 0.65);
}



/* ══════════════════════════════════════════════════
   INTRO ANIMATION
   ══════════════════════════════════════════════════ */

body:not(.is-loaded) .topbar {
    opacity: 0;
    transform: translateY(-20px);
}

body.is-loaded .topbar {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s 0.1s, transform 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1),
                padding 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                backdrop-filter 0.5s;
}

body:not(.is-loaded) .hero-content {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
}

body.is-loaded .hero-content {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: opacity 0.9s 0.25s, transform 0.9s 0.25s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s 0.25s;
}

body:not(.is-loaded) .hero-product {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    filter: blur(6px);
}

body.is-loaded .hero-product {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition: opacity 1s 0.45s, transform 1s 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 1s 0.45s;
}


/* ══════════════════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════════════════ */

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

[data-reveal="left"] {
    transform: translateX(-56px);
    filter: blur(5px);
}

[data-reveal="left"].is-visible {
    transform: translateX(0);
    filter: blur(0);
}

[data-reveal="right"] {
    transform: translateX(56px);
    filter: blur(5px);
}

[data-reveal="right"].is-visible {
    transform: translateX(0);
    filter: blur(0);
}

[data-reveal="scale"] {
    transform: scale(0.88);
    filter: blur(8px);
}

[data-reveal="scale"].is-visible {
    transform: scale(1);
    filter: blur(0);
}

[data-reveal="blur"] {
    transform: translateY(20px);
    filter: blur(12px);
}

[data-reveal="blur"].is-visible {
    transform: translateY(0);
    filter: blur(0);
}


/* ══════════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   HERO — Redesign editorial
   ══════════════════════════════════════════════════ */

.hero {
    background: transparent;
    padding: 0;
    overflow: clip;
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
}

.hero-bg-media::before {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: 1;
    background:
        radial-gradient(circle at 72% 34%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.06) 10%, transparent 28%),
        linear-gradient(116deg, transparent 22%, rgba(255,255,255,0.08) 47%, rgba(223,28,47,0.14) 54%, transparent 72%);
    mix-blend-mode: screen;
    opacity: 0.68;
    filter: blur(10px);
    animation: heroVideoSweep 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.hero-bg-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(ellipse 56% 72% at 74% 48%, rgba(223,28,47,0.30) 0%, rgba(223,28,47,0.12) 38%, transparent 72%),
        linear-gradient(90deg, rgba(7,8,11,0.88) 0%, rgba(7,8,11,0.62) 24%, rgba(7,8,11,0.24) 54%, rgba(7,8,11,0.76) 100%),
        linear-gradient(180deg, rgba(7,8,11,0.42) 0%, rgba(7,8,11,0.12) 26%, rgba(7,8,11,0.64) 100%);
}

.hero-bg-video {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    transform-origin: center center;
    filter: saturate(1.05) contrast(1.10) brightness(0.62) blur(4px);
    opacity: 0.9;
    animation: heroVideoDrift 18s ease-in-out infinite alternate;
}

.hero-video-scan {
    position: absolute;
    top: -16%;
    bottom: -16%;
    left: -14%;
    width: min(46vw, 720px);
    z-index: 2;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255,255,255,0.04) 28%,
            rgba(255,255,255,0.16) 48%,
            rgba(223,28,47,0.18) 60%,
            transparent 100%);
    transform: rotate(14deg);
    transform-origin: center;
    filter: blur(22px);
    mix-blend-mode: screen;
    opacity: 0.54;
    animation: heroVideoScan 11s cubic-bezier(0.37, 0, 0.18, 1) infinite;
}

.hero-video-rings {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-video-ring {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: radial-gradient(circle at center,
            rgba(255,255,255,0.08) 0%,
            rgba(255,255,255,0.03) 20%,
            transparent 64%);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 0 64px rgba(223,28,47,0.16);
    opacity: 0.34;
}

.hero-video-ring--one {
    width: min(44vw, 680px);
    height: min(44vw, 680px);
    top: 8%;
    right: -10%;
    animation: heroRingPulse 10s ease-in-out infinite;
}

.hero-video-ring--two {
    width: min(28vw, 420px);
    height: min(28vw, 420px);
    bottom: 6%;
    right: 18%;
    opacity: 0.22;
    animation: heroRingPulse 8.5s ease-in-out infinite reverse;
}

@keyframes heroVideoDrift {
    0% {
        transform: scale(1.08) rotate(-1deg) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.12) rotate(0.4deg) translate3d(1.5%, -1.2%, 0);
    }
}

@keyframes heroVideoSweep {
    0% {
        transform: translate3d(-2%, -1%, 0) rotate(-4deg);
        opacity: 0.5;
    }
    100% {
        transform: translate3d(3%, 2%, 0) rotate(3deg);
        opacity: 0.82;
    }
}

@keyframes heroVideoScan {
    0% {
        transform: translateX(-12%) rotate(14deg);
        opacity: 0;
    }
    18% {
        opacity: 0.54;
    }
    52% {
        opacity: 0.32;
    }
    100% {
        transform: translateX(150%) rotate(14deg);
        opacity: 0;
    }
}

@keyframes heroRingPulse {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.18;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.38;
    }
}

/* Grid background sutil */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 100%);
}

/* Glow vermelho de fundo */
.hero-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 70% at 70% 55%, rgba(223,28,47,0.13) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 40%, rgba(223,28,47,0.06) 0%, transparent 60%);
}

/* Grain overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

.hero-container {
    position: relative;
    z-index: 1;
    padding-top: calc(160px + var(--ticker-height));
    padding-bottom: 80px;
}

/* Linha de acento vertical esquerda */
.hero-accent-line {
    position: absolute;
    left: clamp(16px, 3vw, 48px);
    top: calc(140px + var(--ticker-height));
    bottom: 80px;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--red) 25%, var(--red) 75%, transparent 100%);
    opacity: 0.5;
}

/* Grid principal */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100svh - 200px);
    position: relative;
}

/* ── Eyebrow técnico ── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
}

.hero-eyebrow-tag {
    background: rgba(223,28,47,0.15);
    border: 1px solid rgba(223,28,47,0.3);
    color: #df1c2f;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
}

.hero-eyebrow-sep {
    color: rgba(255,255,255,0.15);
    font-weight: 300;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px rgba(223, 28, 47, 0.8);
    animation: badge-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* ── H1 ── */
.hero-title {
    display: flex;
    flex-direction: column;
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero-title-line {
    display: block;
}

.hero-title-line--small {
    font-size: clamp(1rem, 2.8vw, 2.4rem);
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.hero-title-line--big {
    font-size: clamp(2rem, 5.8vw, 5.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.hero-title-line--accent {
    font-size: clamp(2rem, 5.8vw, 5.2rem);
    font-weight: 800;
    background: linear-gradient(100deg, #df1c2f 0%, #ff5566 50%, #df1c2f 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradientShift 4s linear infinite;
}

@keyframes heroGradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── Descrição ── */
.hero-desc {
    font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
    color: rgba(255,255,255,0.45);
    max-width: 440px;
    margin-bottom: 40px;
    line-height: 1.75;
}

/* ── Ações ── */
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-cta-main svg {
    transition: transform 0.2s ease;
}
.hero-cta-main:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    background: rgba(255,255,255,0.04);
}

/* ── Métricas inline ── */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    width: fit-content;
}

.hero-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-metric strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-metric span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.hero-metric-div {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ── Trust ── */
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.02em;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

/* ══════════════════════════════════════════════════
   PRODUCT SHOWCASE
   ══════════════════════════════════════════════════ */

.hero-product {
    position: relative;
    perspective: 1200px;
}

.product-showcase {
    position: relative;
    width: 100%;
    padding-top: 72%;
}

.product-glow {
    position: absolute;
    bottom: -15%;
    left: 5%;
    width: 90%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(223, 28, 47, 0.3) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.product-layer {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-layer img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

/* Back left */
.product-back-left {
    width: 55%;
    top: 14%;
    left: 0;
    z-index: 1;
    transform: rotateY(8deg) scale(0.88) translateX(-4%);
    box-shadow: -8px 16px 48px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.5;
}

/* Back right */
.product-back-right {
    width: 55%;
    top: 5%;
    right: 0;
    z-index: 2;
    transform: rotateY(-6deg) scale(0.91) translateX(4%);
    box-shadow: 8px 16px 48px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.6;
}

/* Frame principal com chrome de browser */
.hero-screen-frame {
    position: absolute;
    width: 80%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    border-radius: 10px 10px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 32px 80px rgba(0,0,0,0.65),
        0 0 60px rgba(223,28,47,0.12);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-showcase:hover .hero-screen-frame {
    transform: translateX(-50%) translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.14),
        0 40px 100px rgba(0,0,0,0.7),
        0 0 80px rgba(223,28,47,0.18);
}

.hero-screen-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1a20;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 9px 14px;
}

.hero-screen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.hero-screen-dot:nth-child(1) { background: #ff5f57; }
.hero-screen-dot:nth-child(2) { background: #febc2e; }
.hero-screen-dot:nth-child(3) { background: #28c840; }

.hero-screen-url {
    flex: 1;
    font-size: 0.625rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.03em;
    font-family: monospace;
    margin-left: 8px;
}

.hero-screen-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

.hero-screen-frame .product-layer {
    position: relative;
    border-radius: 0;
    width: 100%;
}

.hero-screen-frame .product-front {
    position: relative;
    width: 100%;
    bottom: auto;
    left: auto;
    transform: none;
    z-index: auto;
    box-shadow: none;
}

/* Hover lift nos cards de fundo */
.product-showcase:hover .product-back-left {
    transform: rotateY(8deg) scale(0.88) translateX(-4%) translateY(-10px);
    opacity: 0.65;
}

.product-showcase:hover .product-back-right {
    transform: rotateY(-6deg) scale(0.91) translateX(4%) translateY(-7px);
    opacity: 0.75;
}

/* "AO VIVO" badge (no topbar) */
.product-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc40;
    animation: badge-pulse 1.8s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46,204,64,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(46,204,64,0); }
}


/* ══════════════════════════════════════════════════
   SOCIAL PROOF
   ══════════════════════════════════════════════════ */

.social-proof {
    background: transparent;
    padding: clamp(48px, 8vh, 96px) 0;
    border-bottom: 1px solid var(--line);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: clamp(48px, 6vh, 80px);
    text-align: center;
}

.proof-stat strong {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1.1;
}

.proof-stat span {
    display: block;
    margin-top: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.proof-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.testimonial p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial footer strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
}

.testimonial footer span {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════════════════
   2. PROPOSTA DE VALOR
   ══════════════════════════════════════════════════ */

.proposta {
    background: var(--surface);
    color: var(--text-dark);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

/* Padrão de grid técnico no fundo */
.proposta-grid-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(26, 23, 23, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 23, 23, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.proposta-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.proposta h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 36px;
}

.proposta .accent {
    color: var(--red);
}

/* Quote redesenhada com aspas tipográficas */
.proposta-quote-block {
    position: relative;
    margin-bottom: 40px;
    padding: 24px 24px 24px 28px;
    background: rgba(26, 23, 23, 0.04);
    border-radius: 2px 12px 12px 2px;
    border-left: 3px solid var(--red);
}

.proposta-quote-mark {
    position: absolute;
    top: -20px;
    left: 16px;
    font-family: "Georgia", serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--red);
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
}

.proposta-quote {
    font-size: 1rem;
    font-style: normal;
    color: var(--text-dark-muted);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Animated text highlight */
.text-highlight {
    background: linear-gradient(120deg, rgba(223, 28, 47, 0.15) 0%, rgba(223, 28, 47, 0.15) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 0 0;
    transition: background-size 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 2px 6px;
    margin: -2px -6px;
    border-radius: 4px;
}

.text-highlight.is-visible {
    background-size: 100% 100%;
}

/* Proposta brand stamp — removido */
.proposta-stamp { display: none; }

/* Section logo divider */
.section-logo-divider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 120px;
    background: var(--surface);
    overflow: hidden;
}

.section-logo-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.section-logo-divider:has(+ .planos) {
    background: var(--surface);
}

.section-logo-divider:has(+ .planos)::before {
    background: var(--bg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}

.section-logo-divider:not(:has(+ .planos)) {
    background: var(--bg);
}

.section-logo-divider:not(:has(+ .planos))::before {
    background: var(--surface);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0%);
}

.section-logo-divider img {
    width: 36px;
    height: auto;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    position: relative;
    z-index: 1;
}

/* Arte background behind problemas */
.arte-bg {
    position: absolute;
    inset: -40px;
    background: url('assets/sentinel-arte.png') center center / cover no-repeat;
    filter: blur(6px) brightness(0.35);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

/* Metrics counters strip */
.metrics-strip {
    background: transparent;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 48px 0;
    overflow: hidden;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.metric-number {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--red);
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.proposta-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proposta-point {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: start;
    padding: 24px 28px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(26,23,23,0.07);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s,
                box-shadow 0.35s,
                background 0.3s;
    backdrop-filter: blur(4px);
}

.proposta-point::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(223,28,47,0) 0%, rgba(223,28,47,0.04) 100%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.proposta-point:hover {
    transform: translateY(-3px) translateX(4px);
    border-color: rgba(223,28,47,0.2);
    box-shadow: 0 8px 32px rgba(26,23,23,0.08);
    background: rgba(255,255,255,0.85);
}

.proposta-point:hover::after {
    opacity: 1;
}

/* Ícone */
.proposta-point-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(223,28,47,0.07);
    border: 1px solid rgba(223,28,47,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.proposta-point:hover .proposta-point-icon {
    background: rgba(223,28,47,0.12);
    border-color: rgba(223,28,47,0.25);
}

.proposta-point-body {
    min-width: 0;
}

.proposta-point-body strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.proposta-point-body p {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    line-height: 1.6;
    margin: 0;
}

/* Número decorativo */
.proposta-point-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    opacity: 0.1;
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -0.03em;
    align-self: center;
    transition: opacity 0.3s;
}

.proposta-point:hover .proposta-point-num {
    opacity: 0.2;
}


/* ══════════════════════════════════════════════════
   3. PROBLEMAS & SOLUÇÕES — Card redesign
   ══════════════════════════════════════════════════ */

.problemas {
    background: transparent;
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.pb-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pb-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 0%, transparent 80%);
}

.problemas > .container {
    position: relative;
    z-index: 1;
}

.pb-intro {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 44px;
    align-items: center;
    margin-bottom: 60px;
}

.pb-header {
    margin-bottom: 0;
    max-width: 560px;
}

.pb-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-top: 12px;
}

.pb-media {
    margin: 0;
    display: block;
    padding: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.pb-media-frame {
    position: relative;
    min-height: 230px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at 50% 0%, rgba(223,28,47,0.14) 0%, transparent 42%),
        linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
        #090a0d;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.42),
        inset 0 1px 0 rgba(255,255,255,0.05);
    isolation: isolate;
}

.pb-media-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,9,12,0.06) 0%, rgba(8,9,12,0.24) 42%, rgba(8,9,12,0.82) 100%),
        linear-gradient(120deg, rgba(223,28,47,0.18) 0%, transparent 34%),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 5px);
    mix-blend-mode: normal;
    z-index: 1;
    pointer-events: none;
}

.pb-media-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) left 14px top 14px / 26px 1px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) left 14px top 14px / 1px 26px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) right 14px bottom 14px / 26px 1px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) right 14px bottom 14px / 1px 26px no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    z-index: 3;
    pointer-events: none;
}

.pb-media-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    filter: saturate(0.92) contrast(1.06) brightness(0.8);
}

.pb-media-chip {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(223,28,47,0.22);
    background: #101116;
    color: rgba(255,255,255,0.78);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow:
        0 16px 30px rgba(0,0,0,0.32),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.pb-media-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 12px rgba(223,28,47,0.6);
}

.pb-media figcaption {
    margin-top: 10px;
    padding: 0 2px;
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.01em;
}

/* ── Cards stack ── */
.pb-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.pb-card {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.025);
    overflow: hidden;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.pb-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(223,28,47,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.pb-card:hover {
    border-color: rgba(223,28,47,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(223,28,47,0.08);
    transform: translateY(-2px);
}

.pb-card:hover::before { opacity: 1; }

/* Número decorativo gigante */
.pb-card-num {
    position: absolute;
    top: -10px;
    right: 28px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(223,28,47,0.06);
    pointer-events: none;
    letter-spacing: -0.04em;
    transition: color 0.35s;
    user-select: none;
}

.pb-card:hover .pb-card-num {
    color: rgba(223,28,47,0.1);
}

/* Layout interno: problema | divisor | solução */
.pb-card-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    padding: 36px 40px;
    position: relative;
    z-index: 1;
}

/* Lado esquerdo — problema */
.pb-card-problem {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 40px;
}

.pb-card-problem blockquote {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 700;
    line-height: 1.3;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    margin: 0;
    padding-left: 16px;
    border-left: 2px solid rgba(255,255,255,0.1);
    transition: border-color 0.35s, color 0.35s;
}

.pb-card:hover .pb-card-problem blockquote {
    color: rgba(255,255,255,0.92);
    border-left-color: rgba(223,28,47,0.5);
}

/* Divisor animado */
.pb-card-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    flex-shrink: 0;
}

.pb-card-divider-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(223,28,47,0.4), transparent);
}

.pb-card-divider-arrow {
    font-size: 1.1rem;
    color: var(--red);
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.pb-card:hover .pb-card-divider-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Lado direito — solução */
.pb-card-solution {
    padding-left: 40px;
}

.pb-card-solution strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.pb-card-solution p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pb-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pb-tag {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    border: 1px solid rgba(223,28,47,0.25);
    background: rgba(223,28,47,0.06);
    padding: 4px 10px;
    border-radius: 100px;
    transition: background 0.25s, border-color 0.25s;
}

.pb-card:hover .pb-tag {
    background: rgba(223,28,47,0.1);
    border-color: rgba(223,28,47,0.4);
}

/* Legado — mantém .tag para outros usos */
.tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    border: 1px solid rgba(223, 28, 47, 0.3);
    padding: 5px 14px;
    border-radius: 4px;
    transition: background 0.35s, border-color 0.35s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.tag:hover {
    background: rgba(223, 28, 47, 0.08);
    border-color: rgba(223, 28, 47, 0.5);
    transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .pb-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }

    .pb-header {
        max-width: 100%;
    }

    .pb-media {
        padding: 10px;
    }

    .pb-media-frame,
    .pb-media-video {
        min-height: 200px;
    }

    .pb-media figcaption {
        font-size: 0.72rem;
        padding: 0 2px 4px;
    }

    .pb-card-inner {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 0;
    }
    .pb-card-problem { padding-right: 0; padding-bottom: 20px; }
    .pb-card-divider {
        flex-direction: row;
        padding: 0 0 20px;
        height: auto;
        gap: 12px;
    }
    .pb-card-divider-line {
        height: 1px;
        width: 40px;
        background: linear-gradient(to right, transparent, rgba(223,28,47,0.4), transparent);
    }
    .pb-card-solution { padding-left: 0; }
    .pb-card-num { font-size: 5rem; top: -6px; right: 16px; }
}


/* ══════════════════════════════════════════════════
   4. PRODUTO — Gallery + Modules
   ══════════════════════════════════════════════════ */

.produto {
    background: transparent;
    padding: var(--section-pad) 0 0;
    position: relative;
    overflow: hidden;
}

/* ── Produto background decorativo ── */
.pv-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pv-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 10%, transparent 75%);
}

.pv-bg-glow--1 {
    position: absolute;
    width: 700px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: radial-gradient(ellipse, rgba(223,28,47,0.1) 0%, transparent 65%);
    filter: blur(60px);
}

.pv-bg-glow--2 {
    position: absolute;
    width: 600px;
    height: 400px;
    top: 100px;
    right: -150px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.07) 0%, transparent 65%);
    filter: blur(60px);
}

/* ── Tab navigation ── */
.pv-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pv-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    font-family: var(--font-nav);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
    white-space: nowrap;
}

.pv-tab svg { opacity: 0.6; transition: opacity 0.25s; }

.pv-tab:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text);
    background: rgba(255,255,255,0.07);
}

.pv-tab:hover svg { opacity: 1; }

.pv-tab--active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 0 24px rgba(223,28,47,0.35);
}

.pv-tab--active svg { opacity: 1; }

.pv-tab--active:hover {
    background: #c9162a;
    border-color: #c9162a;
    color: #fff;
}

/* ── Showcase container ── */
.pv-showcase {
    display: grid;
    grid-template-columns: 1fr 88px;
    gap: 16px;
    align-items: start;
    margin-bottom: 16px;
}

/* Wrapper que empilha painéis com grid-rows para manter altura */
.pv-panels-wrap {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.pv-panels-wrap .pv-panel {
    grid-row: 1;
    grid-column: 1;
}

/* ── Painéis (um por tab) — grid stacking ── */
.pv-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1),
                transform 0.45s cubic-bezier(0.22,1,0.36,1),
                visibility 0s linear 0.45s;
    transform: translateY(12px) scale(0.985);
}

.pv-panel--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1),
                transform 0.45s cubic-bezier(0.22,1,0.36,1),
                visibility 0s linear 0s;
}

/* ── Screen wrap (browser chrome + screenshot) ── */
.pv-screen-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 2px 0 rgba(255,255,255,0.06) inset,
        0 40px 120px rgba(0,0,0,0.7),
        0 0 80px rgba(223,28,47,0.12);
    transition: box-shadow 0.4s, border-color 0.4s;
}

.pv-screen-wrap:hover {
    border-color: rgba(223,28,47,0.3);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.07),
        0 2px 0 rgba(255,255,255,0.08) inset,
        0 60px 140px rgba(0,0,0,0.75),
        0 0 100px rgba(223,28,47,0.2);
}

.pv-screen-chrome {
    background: linear-gradient(180deg, #1c1c24 0%, #15151d 100%);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pv-chrome-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pv-chrome-dot:nth-child(1) { background: #ff5f57; box-shadow: 0 0 5px #ff5f57; }
.pv-chrome-dot:nth-child(2) { background: #febc2e; box-shadow: 0 0 5px #febc2e; }
.pv-chrome-dot:nth-child(3) { background: #28c840; box-shadow: 0 0 5px #28c840; }

.pv-chrome-url {
    flex: 1;
    text-align: center;
    font-size: 0.625rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
    padding: 3px 12px;
    border-radius: 6px;
    margin: 0 8px;
}

.pv-live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.pv-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #df1c2f;
    box-shadow: 0 0 8px #df1c2f;
    animation: live-pulse 1.2s ease-in-out infinite;
}

.pv-screen-img {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.pv-screen-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.pv-screen-img:hover img { transform: scale(1.02); }

.pv-screen-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%, transparent 38%,
        rgba(255,255,255,0.05) 50%,
        transparent 62%, transparent 100%
    );
    background-size: 200% 200%;
    animation: shine-slide 7s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

/* ── Métricas flutuantes ── */
.pv-float {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: rgba(13,13,18,0.82);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
    pointer-events: none;
    animation: float-card 5s ease-in-out infinite;
}

.pv-float--tl {
    top: 56px;
    left: -20px;
    animation-delay: 0s;
}

.pv-float--br {
    bottom: 24px;
    right: -16px;
    animation-delay: -2.5s;
}

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

.pv-float-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(223,28,47,0.15);
    border: 1px solid rgba(223,28,47,0.25);
    color: var(--red);
    flex-shrink: 0;
}

.pv-float-icon--blue {
    background: rgba(223,28,47,0.15);
    border-color: rgba(223,28,47,0.25);
    color: #df1c2f;
}

.pv-float-icon--green {
    background: rgba(223,28,47,0.15);
    border-color: rgba(223,28,47,0.25);
    color: #df1c2f;
}

.pv-float-icon--red {
    background: rgba(239,68,68,0.15);
    border-color: rgba(239,68,68,0.3);
    color: #f87171;
}

.pv-float-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pv-float-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.35);
}

.pv-float-value {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.pv-float-delta {
    font-size: 0.6875rem;
    font-weight: 600;
}

.pv-float-delta--up   { color: #df1c2f; }
.pv-float-delta--down { color: #f87171; }

/* ── Thumbnails laterais ── */
.pv-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
    padding-top: 48px;
}

.pv-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 6px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    overflow: hidden;
}

.pv-thumb:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateX(-2px);
}

.pv-thumb--active {
    border-color: var(--red);
    box-shadow: 0 0 12px rgba(223,28,47,0.25);
}

.pv-thumb img {
    width: 100%;
    height: 44px;
    object-fit: cover;
    object-position: top left;
    border-radius: 6px;
    display: block;
}

.pv-thumb span {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.35);
}

.pv-thumb--active span { color: var(--red); }

/* ── Grid de detalhe (4 figuras) ── */
.pv-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 0;
    margin-top: 4px;
}

.pv-detail-fig {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 190px;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.pv-detail-fig:hover {
    border-color: rgba(223,28,47,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transform: translateY(-3px);
}

.pv-detail-fig img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.pv-detail-fig:hover img { transform: scale(1.05); }

.pv-detail-fig figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 44px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    pointer-events: none;
}

.pv-detail-fig figcaption span {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 3px;
}

.pv-detail-fig figcaption strong {
    display: block;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
    .pv-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pv-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .pv-panels-wrap { grid-column: 1; }
    .pv-thumbs {
        flex-direction: row;
        padding-top: 0;
        overflow-x: auto;
        gap: 8px;
        grid-column: 1;
    }
    .pv-thumb {
        flex-shrink: 0;
        width: 72px;
    }
    .pv-thumb img { height: 36px; }
    .pv-float--tl { top: 44px; left: 8px; }
    .pv-float--br { bottom: 16px; right: 8px; }
    .pv-float { padding: 9px 12px; }
    .pv-float-value { font-size: 0.8125rem; }
}

@media (max-width: 600px) {
    .pv-tabs { gap: 6px; }
    .pv-tab { padding: 8px 14px; font-size: 0.75rem; }
    .pv-detail-grid { grid-template-columns: 1fr 1fr; }
    .pv-detail-fig { min-height: 150px; }
    .pv-float { display: none; }
}

.produto-header {
    margin-bottom: 48px;
}

.produto-header-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.produto-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 100px;
    padding: 4px 12px 4px 8px;
}

.produto-header-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc40;
    box-shadow: 0 0 6px rgba(46, 204, 64, 0.7);
    animation: badge-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.produto-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.produto-header-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Gallery grid — asymmetric */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
    min-height: 480px;
}

.gallery-main {
    grid-row: 1 / -1;
}

.gallery-grid figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0;
    cursor: default;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.35s;
}

.gallery-grid figure:hover {
    border-color: rgba(223, 28, 47, 0.3);
}

/* Tag de categoria */
.gallery-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 4px 10px;
}

.gallery-grid figure[data-lightbox] {
    cursor: pointer;
}

.gallery-grid figure[data-lightbox]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 1;
    transition: background 0.35s ease;
    pointer-events: none;
}

.gallery-grid figure[data-lightbox]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3h5M3 3v5M17 3h-5M17 3v5M3 17h5M3 17v-5M17 17h-5M17 17v-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.gallery-grid figure[data-lightbox]:hover::before {
    background: rgba(0,0,0,0.25);
}

.gallery-grid figure[data-lightbox]:hover::after {
    opacity: 1;
    transform: scale(1);
}

.gallery-grid figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-grid figure:hover img {
    transform: scale(1.03);
}

.gallery-grid figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 24px 24px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.4) 60%,
        transparent 100%
    );
}

.gallery-grid figcaption span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 4px;
}

.gallery-grid figcaption strong {
    display: block;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ── Gallery hero row (linha de frente) ── */
.gallery-hero-row {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.gallery-hero-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-hero-main,
.gallery-hero-sub {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.35s, box-shadow 0.35s;
}

.gallery-hero-main {
    min-height: 380px;
}

.gallery-hero-sub {
    flex: 1;
    min-height: 0;
}

.gallery-hero-main:hover,
.gallery-hero-sub:hover {
    border-color: rgba(223,28,47,0.35);
    box-shadow: 0 0 0 1px rgba(223,28,47,0.12), 0 24px 48px rgba(0,0,0,0.4);
}

.gallery-hero-main img,
.gallery-hero-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-hero-main:hover img,
.gallery-hero-sub:hover img {
    transform: scale(1.02);
}

.gallery-hero-main figcaption,
.gallery-hero-sub figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 52px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    pointer-events: none;
}

.gallery-hero-main figcaption span,
.gallery-hero-sub figcaption span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 4px;
}

.gallery-hero-main figcaption strong,
.gallery-hero-sub figcaption strong {
    display: block;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Tag acento na principal */
.gallery-tag-accent {
    background: rgba(223,28,47,0.75) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: #fff !important;
}

/* ── Gallery grid secundário (4 itens) ── */
.gallery-grid-secondary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 0;
}

.gallery-grid-secondary figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
    min-height: 200px;
    transition: border-color 0.35s, box-shadow 0.35s;
}

.gallery-grid-secondary figure:hover {
    border-color: rgba(223,28,47,0.3);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.gallery-grid-secondary figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-grid-secondary figure:hover img {
    transform: scale(1.04);
}

.gallery-grid-secondary figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    pointer-events: none;
}

.gallery-grid-secondary figcaption span {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 3px;
}

.gallery-grid-secondary figcaption strong {
    display: block;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

/* Responsivo galeria nova */
@media (max-width: 1024px) {
    .gallery-hero-row {
        grid-template-columns: 1fr;
    }
    .gallery-hero-stack {
        flex-direction: row;
    }
    .gallery-grid-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-hero-stack {
        flex-direction: column;
    }
    .gallery-grid-secondary {
        grid-template-columns: 1fr 1fr;
    }
}

/* Modules sub-section */
.modulos-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.015) 30%, rgba(255,255,255,0.015) 70%, transparent);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-top: var(--section-pad);
}

.modulos-header {
    margin-bottom: 32px;
}

.modulos-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.modulos-header h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.modulos-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0;
}

/* Tags de categoria — estilo editorial técnico */
.modulos-cats {
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.modulos-cat-pill {
    font-family: "DM Mono", "Fira Code", "Courier New", monospace;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: none;
    border-radius: 0;
    border-right: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    position: relative;
    transition: background 0.25s;
}

.modulos-cat-pill:last-child {
    border-right: none;
}

.modulos-cat-pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.modulos-cat-comercial {
    color: rgba(255,255,255,0.45);
}
.modulos-cat-comercial::before { background: #df1c2f; }
.modulos-cat-comercial:hover { background: rgba(223,28,47,0.06); color: #df1c2f; }

.modulos-cat-estoque {
    color: rgba(255,255,255,0.45);
}
.modulos-cat-estoque::before { background: #df1c2f; }
.modulos-cat-estoque:hover { background: rgba(223,28,47,0.06); color: #df1c2f; }

.modulos-cat-fin {
    color: rgba(255,255,255,0.45);
}
.modulos-cat-fin::before { background: #df1c2f; }
.modulos-cat-fin:hover { background: rgba(223,28,47,0.06); color: #df1c2f; }

.modulos-cat-adv {
    color: rgba(255,255,255,0.45);
}
.modulos-cat-adv::before { background: #df1c2f; }
.modulos-cat-adv:hover { background: rgba(223,28,47,0.06); color: #df1c2f; }


/* ══ Module Carousel ══ */

.mod-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 56px 0 0;
}

.mod-carousel-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.mod-carousel-track:active {
    cursor: grabbing;
}

.mod-slide {
    --mod-accent-rgb: 223, 28, 47;
    position: relative;
    overflow: visible;
    flex: 0 0 420px;
    height: 500px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.5s,
                filter 0.5s;
    transform: translateY(20px) scale(0.84);
    opacity: 0.28;
    filter: blur(7px) saturate(0.72);
}

.mod-slide::before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: 18px;
    width: 72px;
    height: 38px;
    background:
        radial-gradient(circle, rgba(var(--mod-accent-rgb),0.92) 0 1.3px, transparent 1.3px) 0 0 / 12px 12px repeat,
        linear-gradient(90deg, rgba(var(--mod-accent-rgb),0.28), transparent 72%);
    opacity: 0.24;
    pointer-events: none;
    z-index: 4;
    filter: drop-shadow(0 0 12px rgba(var(--mod-accent-rgb), 0.18));
    transition: opacity 0.45s, transform 0.45s;
}

.mod-slide::after {
    content: "ERP SIGNAL";
    position: absolute;
    top: 104px;
    left: 30px;
    padding: 7px 11px 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    font-family: "DM Sans", sans-serif;
    font-size: 0.47rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    z-index: 4;
    transition: opacity 0.45s, transform 0.45s, border-color 0.45s, color 0.45s, box-shadow 0.45s;
}

.mod-slide[data-category="Comercial"]::after {
    content: "LIVE PIPE";
}

.mod-slide[data-category="Estoque & Operacao"]::after,
.mod-slide[data-category="Estoque & Operação"]::after {
    content: "STOCK GRID";
}

.mod-slide[data-category="Financeiro"]::after {
    content: "RISK WATCH";
}

.mod-slide[data-category="Avancado"]::after,
.mod-slide[data-category="Avançado"]::after {
    content: "DEEP LAYER";
}

.mod-slide[data-category="Comercial"] {
    --mod-accent-rgb: 223, 28, 47;
}

.mod-slide[data-category="Estoque & Operacao"],
.mod-slide[data-category="Estoque & Operação"] {
    --mod-accent-rgb: 223, 28, 47;
}

.mod-slide[data-category="Financeiro"] {
    --mod-accent-rgb: 223, 28, 47;
}

.mod-slide[data-category="Avancado"],
.mod-slide[data-category="Avançado"] {
    --mod-accent-rgb: 223, 28, 47;
}

.mod-slide.is-active {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0) saturate(1);
}

.mod-slide.is-active::before {
    opacity: 0.82;
    transform: translate3d(2px, -4px, 0);
}

.mod-slide.is-active::after {
    color: rgba(255,255,255,0.68);
    border-color: rgba(var(--mod-accent-rgb), 0.22);
    background: linear-gradient(90deg, rgba(var(--mod-accent-rgb),0.16), rgba(255,255,255,0.03));
    box-shadow:
        0 0 22px rgba(var(--mod-accent-rgb), 0.12),
        inset 0 1px 0 rgba(255,255,255,0.07);
    transform: translate3d(0, -2px, 0);
}

.mod-slide.is-near {
    transform: translateY(10px) scale(0.93);
    opacity: 0.66;
    filter: blur(2px) saturate(0.9);
}

.mod-slide.is-near::before {
    opacity: 0.48;
}

.mod-slide.is-near::after {
    opacity: 0.72;
}

.mod-slide.is-far {
    transform: translateY(26px) scale(0.86);
    opacity: 0.4;
    filter: blur(5px) saturate(0.78);
}

.mod-slide.is-far::before,
.mod-slide.is-far::after {
    opacity: 0.18;
}

.mod-slide-inner {
    height: 100%;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 14%),
        radial-gradient(circle at 18% 18%, rgba(255,114,122,0.16) 0%, transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(var(--mod-accent-rgb),0.18) 0%, transparent 34%),
        radial-gradient(circle at 76% 86%, rgba(255,92,106,0.08) 0%, transparent 24%),
        linear-gradient(160deg, #111216 0%, #090a0d 58%, #040508 100%);
    box-shadow:
        0 32px 72px rgba(0, 0, 0, 0.54),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(255,255,255,0.02);
    transition: border-color 0.45s, box-shadow 0.45s, transform 0.45s;
}

.mod-slide-inner::before {
    content: "";
    position: absolute;
    inset: -8%;
    background:
        repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 5px),
        repeating-radial-gradient(circle at 16% 24%, rgba(255,255,255,0.055) 0 1px, transparent 1px 12px),
        repeating-radial-gradient(circle at 84% 16%, rgba(255,255,255,0.03) 0 1px, transparent 1px 14px),
        repeating-radial-gradient(circle at 62% 76%, rgba(255,255,255,0.028) 0 1px, transparent 1px 16px);
    opacity: 0.38;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 0.45s, transform 0.6s;
}

.mod-slide-inner::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.05);
    background:
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) left 16px top 16px / 26px 1px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) left 16px top 16px / 1px 26px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) right 16px top 16px / 26px 1px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) right 16px top 16px / 1px 26px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) left 16px bottom 16px / 26px 1px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) left 16px bottom 16px / 1px 26px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) right 16px bottom 16px / 26px 1px no-repeat,
        linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) right 16px bottom 16px / 1px 26px no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.015);
    pointer-events: none;
    z-index: 1;
}

.mod-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(4.8rem, 9vw, 7.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.09em;
    color: #ff6a74;
    position: absolute;
    top: 24px;
    right: 18px;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 24px rgba(255,106,116,0.28), 0 0 54px rgba(255,106,116,0.12);
    opacity: 0.9;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s;
}

.mod-slide-meta {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
}

.mod-cat {
    font-family: "DM Sans", sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(var(--mod-accent-rgb), 0.66);
    padding: 0;
    background: none;
    border: none;
    position: relative;
    text-shadow: 0 0 12px rgba(var(--mod-accent-rgb), 0.08);
    transition: color 0.35s;
}

.mod-cat::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 22px;
    height: 1px;
    background: rgba(var(--mod-accent-rgb), 0.34);
    transition: width 0.45s cubic-bezier(0.22,1,0.36,1), background 0.35s, box-shadow 0.35s;
}

.mod-slide.is-active .mod-cat {
    color: rgba(var(--mod-accent-rgb), 0.95);
}

.mod-slide.is-active .mod-cat::after {
    width: 100%;
    background: rgba(var(--mod-accent-rgb), 0.95);
    box-shadow: 0 0 10px rgba(var(--mod-accent-rgb), 0.35);
}

.mod-slide.is-active .mod-slide-inner {
    border-color: rgba(var(--mod-accent-rgb), 0.32);
    box-shadow:
        0 36px 92px rgba(0, 0, 0, 0.62),
        0 0 0 1px rgba(var(--mod-accent-rgb), 0.18),
        0 0 40px rgba(var(--mod-accent-rgb), 0.12),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.mod-slide.is-active .mod-slide-inner::before {
    opacity: 0.5;
    transform: scale(1.03);
}

.mod-slide.is-active .mod-slide-inner::after {
    border-color: rgba(var(--mod-accent-rgb), 0.12);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 0 18px rgba(var(--mod-accent-rgb), 0.08);
}

.mod-slide.is-active .mod-num {
    transform: scale(1.06) translate3d(2px, -2px, 0);
    opacity: 1;
}

.mod-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.9rem, 3.3vw, 2.25rem);
    font-weight: 800;
    color: #f6f0e9;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin: 0;
    position: absolute;
    bottom: 122px;
    left: 30px;
    right: 44px;
    z-index: 2;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
}

.mod-title::before {
    content: "";
    display: block;
    width: 78px;
    height: 8px;
    margin-bottom: 20px;
    background: radial-gradient(circle, rgba(var(--mod-accent-rgb),0.85) 0 1.1px, transparent 1.1px) 0 50% / 13px 8px repeat-x;
    opacity: 0.5;
    transition: opacity 0.35s, filter 0.35s, transform 0.35s;
}

.mod-title em {
    font-style: normal;
    font-weight: 600;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.42);
    display: block;
    margin-top: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mod-desc {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.6;
    position: absolute;
    bottom: 34px;
    left: 30px;
    right: 126px;
    z-index: 2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mod-slide.is-active .mod-desc {
    color: rgba(255,255,255,0.74);
}

.mod-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.42), rgba(255,255,255,0));
    margin-top: 16px;
    margin-bottom: 0;
    transition: width 0.4s cubic-bezier(0.22,1,0.36,1), background 0.35s, box-shadow 0.35s;
}

.mod-slide.is-active .mod-title::after {
    width: 78px;
    background: linear-gradient(90deg, rgba(var(--mod-accent-rgb),0.95), rgba(var(--mod-accent-rgb),0));
    box-shadow: 0 0 12px rgba(var(--mod-accent-rgb), 0.16);
}

.mod-slide.is-active .mod-title::before {
    opacity: 0.95;
    filter: drop-shadow(0 0 12px rgba(var(--mod-accent-rgb), 0.24));
    transform: translateX(2px);
}

.mod-badge {
    position: absolute;
    bottom: 34px;
    right: 30px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    font-size: 0.56rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.mod-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.mod-badge-core {
    color: rgba(223,28,47,0.7);
    border-color: rgba(223,28,47,0.24);
    background: rgba(8, 9, 12, 0.58);
}

.mod-badge-premium {
    color: rgba(255,185,0,0.8);
    border-color: rgba(255,185,0,0.24);
    background: rgba(8, 9, 12, 0.58);
}

.mod-slide-premium .mod-slide-inner {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 14%),
        radial-gradient(circle at 18% 18%, rgba(255,114,122,0.18) 0%, transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(167,139,250,0.24) 0%, transparent 36%),
        radial-gradient(circle at 76% 86%, rgba(255,92,106,0.08) 0%, transparent 24%),
        linear-gradient(160deg, #121118 0%, #08080d 58%, #040508 100%);
}

.mod-slide-premium.is-active .mod-slide-inner {
    border-color: rgba(167,139,250,0.36);
}

/* Carousel UI — info bar */
.mod-carousel-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 28px;
}

.mod-carousel-info {
    flex: 1;
    min-width: 0;
}

.mod-active-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 4px;
}

.mod-active-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mod-active-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mod-carousel-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.mod-carousel-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 5px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.07);
}

.mod-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.mod-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.mod-nav-btn:active {
    transform: scale(0.9);
}

.mod-carousel-counter {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 40px;
    text-align: center;
}

.mod-counter-current {
    color: var(--text);
    transition: opacity 0.18s;
}

.mod-counter-current.is-changing {
    opacity: 0.3;
}

.mod-counter-sep {
    margin: 0 2px;
}

.mod-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: white;
    color: var(--bg);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mod-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

/* Carousel dot indicators (mobile) */
.mod-carousel-dots {
    display: none;
}

.mod-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s,
                transform 0.35s;
    flex-shrink: 0;
}

.mod-dot.is-active {
    width: 22px;
    border-radius: 3px;
    background: var(--red);
}

.mod-dot.is-near {
    width: 8px;
    background: rgba(255, 255, 255, 0.4);
}

/* Swipe hint animation */
@keyframes swipeHint {
    0%   { transform: translate3d(0, 0, 0); }
    30%  { transform: translate3d(-40px, 0, 0); }
    60%  { transform: translate3d(12px, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.mod-carousel-track.swipe-hint {
    animation: swipeHint 1s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ══════════════════════════════════════════════════
   5. PLANOS
   ══════════════════════════════════════════════════ */

.planos {
    background: var(--bg);
    color: white;
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.planos-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.planos-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7,8,11,0.9) 0%, rgba(7,8,11,0.66) 28%, rgba(7,8,11,0.4) 55%, rgba(7,8,11,0.84) 100%),
        linear-gradient(180deg, rgba(7,8,11,0.22) 0%, rgba(7,8,11,0.1) 28%, rgba(7,8,11,0.56) 100%);
    z-index: 2;
}

.planos-bg-video {
    position: absolute;
    inset: -2%;
    width: 104%;
    height: 104%;
    object-fit: cover;
    object-position: center 38%;
    filter: grayscale(0.18) saturate(0.68) contrast(1.02) brightness(0.48) blur(5px);
    opacity: 0.28;
    transform: scale(1.04);
}

.planos-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 100%);
}

.planos-bg-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(ellipse 55% 50% at 15% 90%, rgba(223,28,47,0.14) 0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 85% 10%, rgba(223,28,47,0.09) 0%, transparent 60%);
}

.planos-header {
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.planos-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── Base card ── */
.pricing-card {
    position: relative;
    background:
        radial-gradient(circle at 50% -20%, rgba(223,28,47,0.06) 0%, transparent 55%),
        rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 36px 28px 32px;
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 64px rgba(0,0,0,0.42),
        0 0 0 1px rgba(223,28,47,0.15),
        inset 0 1px 0 rgba(255,255,255,0.06);
    border-color: rgba(223,28,47,0.2);
}

/* Large decorative rank number */
.plan-rank {
    position: absolute;
    top: -8px;
    right: 18px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 7.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.035);
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    transition: color 0.4s;
}

.pricing-card:hover .plan-rank {
    color: rgba(223,28,47,0.07);
}

.plan-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(223,28,47,0.75);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.plan-kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: rgba(223,28,47,0.5);
    display: block;
    flex-shrink: 0;
}

.pricing-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.pricing-card > p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.46);
    margin-bottom: 28px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.plan-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.plan-list li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.62);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.plan-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 1px;
    background: var(--red);
    opacity: 0.6;
}

.pricing-card .btn {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    justify-content: center;
    margin-top: 28px;
}

/* ── Plan base button ── */
.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition:
        background 0.3s,
        border-color 0.3s,
        box-shadow 0.3s,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.3s;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.btn-plan:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.22);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 8px 24px rgba(0,0,0,0.28);
}

/* ── Featured plan button ── */
.btn-plan-featured {
    background: var(--red);
    border-color: transparent;
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
    padding: 15px 28px;
    border-radius: 14px;
    box-shadow:
        0 8px 28px rgba(223,28,47,0.38),
        inset 0 1px 0 rgba(255,255,255,0.15);
    letter-spacing: 0.03em;
}

.btn-plan-featured:hover {
    background: var(--red-dark);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow:
        0 14px 40px rgba(223,28,47,0.5),
        inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ── Enterprise plan button ── */
.btn-plan-enterprise {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.6);
}

.btn-plan-enterprise:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.24);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 10px 28px rgba(0,0,0,0.32);
}

/* ── Featured card ── */
.pricing-card-featured {
    background:
        radial-gradient(circle at 50% -15%, rgba(223,28,47,0.28) 0%, transparent 52%),
        radial-gradient(circle at 5% 95%, rgba(223,28,47,0.12) 0%, transparent 40%),
        rgba(255,255,255,0.04);
    border-color: rgba(223,28,47,0.4);
    box-shadow:
        0 0 0 1px rgba(223,28,47,0.14),
        0 0 80px rgba(223,28,47,0.14),
        0 32px 80px rgba(0,0,0,0.38),
        inset 0 1px 0 rgba(255,255,255,0.07);
    animation: none;
    background-image: none;
    background-clip: unset;
    background-origin: unset;
}

.pricing-card-featured::before {
    content: "Recomendado";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    padding: 5px 22px;
    border-radius: 0 0 12px 12px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(223,28,47,0.45);
    z-index: 2;
}

.pricing-card-featured .plan-kicker {
    margin-top: 22px;
    color: var(--red);
}

.pricing-card-featured .plan-list li {
    color: rgba(255,255,255,0.82);
}

.pricing-card-featured .plan-list li::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: 5px;
    background: var(--red);
    opacity: 1;
    box-shadow: 0 0 8px rgba(223,28,47,0.55);
}

.pricing-card-featured:hover {
    box-shadow:
        0 0 0 1px rgba(223,28,47,0.28),
        0 0 100px rgba(223,28,47,0.2),
        0 40px 100px rgba(0,0,0,0.52),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.pricing-card-featured .plan-rank {
    color: rgba(223,28,47,0.09);
}

/* ── Enterprise card ── */
.pricing-card-enterprise {
    background:
        radial-gradient(circle at 85% 15%, rgba(255,255,255,0.055) 0%, transparent 40%),
        rgba(255,255,255,0.025);
    border-color: rgba(255,255,255,0.1);
}

.pricing-card-enterprise .plan-kicker {
    color: rgba(255,255,255,0.42);
}

.pricing-card-enterprise .plan-kicker::before {
    background: rgba(255,255,255,0.25);
}

.pricing-card-enterprise:hover {
    border-color: rgba(255,255,255,0.18);
    box-shadow:
        0 24px 64px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.pricing-card-enterprise .plan-rank {
    color: rgba(255,255,255,0.03);
}

/* ── Pricing note ── */
.pricing-note {
    margin-top: 44px;
    padding: 22px 32px;
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.pricing-note p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}

.pricing-note strong {
    color: rgba(255,255,255,0.75);
}

.pricing-note a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}


/* ══════════════════════════════════════════════════
   5b. COMPARATIVO
   ══════════════════════════════════════════════════ */

.comparativo {
    background: var(--bg-dark);
    padding: var(--section-pad) 0;
}

.comparativo-header {
    margin-bottom: 48px;
}

.comparativo-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: white;
}

.comparativo-sub {
    font-size: 1rem;
    color: var(--text-light-muted);
    line-height: 1.6;
    max-width: 640px;
    margin-top: 16px;
}

.comparativo-sub strong {
    color: var(--red);
}

.comparativo-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparativo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 600px;
}

.comparativo-table thead th {
    padding: 18px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light-muted);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparativo-table thead th:first-child {
    text-align: left;
}

.comparativo-table thead th.comparativo-destaque {
    color: var(--red);
    background: rgba(223, 28, 47, 0.06);
}

.comparativo-table tbody td {
    padding: 16px 20px;
    text-align: center;
    color: var(--text-light-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.45;
}

.comparativo-table tbody tr:last-child td {
    border-bottom: none;
}

.comparativo-label {
    text-align: left !important;
    font-weight: 600;
    color: white !important;
    white-space: nowrap;
}

td.comparativo-destaque {
    color: white !important;
    font-weight: 600;
    background: rgba(223, 28, 47, 0.06);
}

.comparativo-fonte {
    margin-top: 24px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .comparativo-table-wrap {
        border: none !important;
        border-radius: 0 !important;
        overflow: visible !important;
    }

    .comparativo-table,
    .comparativo-table thead,
    .comparativo-table tbody,
    .comparativo-table tr,
    .comparativo-table th,
    .comparativo-table td {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .comparativo-table {
        border-collapse: separate !important;
    }

    .comparativo-table thead {
        display: none !important;
    }

    .comparativo-table tbody {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
    }

    .comparativo-table tbody tr {
        display: flex !important;
        flex-direction: column;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        overflow: hidden;
        background: rgba(255, 255, 255, 0.02);
    }

    .comparativo-table tbody td {
        padding: 10px 16px !important;
        border-bottom: none !important;
        font-size: 0.82rem;
        text-align: left !important;
        line-height: 1.4;
    }

    .comparativo-table tbody td.comparativo-label {
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 12px 16px !important;
        font-size: 0.7rem !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        white-space: normal !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
        color: white !important;
        font-weight: 700;
    }

    .comparativo-table tbody td:not(.comparativo-label):not(.comparativo-destaque) {
        color: rgba(255, 255, 255, 0.4) !important;
        font-size: 0.78rem;
        padding: 8px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }

    .comparativo-table tbody td:not(.comparativo-label):not(.comparativo-destaque)::before {
        display: inline;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.25);
        margin-right: 8px;
    }

    .comparativo-table tbody tr td:nth-child(2)::before {
        content: "Consultorias: ";
    }

    .comparativo-table tbody tr td:nth-child(3)::before {
        content: "Self-service: ";
    }

    .comparativo-table tbody td.comparativo-destaque {
        background: rgba(223, 28, 47, 0.1) !important;
        border-top: 1px solid rgba(223, 28, 47, 0.15) !important;
        font-size: 0.88rem !important;
        padding: 12px 16px !important;
        color: white !important;
        font-weight: 600;
    }

    .comparativo-table tbody td.comparativo-destaque::before {
        content: "Sentinel BI: ";
        display: inline;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--red);
        font-weight: 700;
    }
}


/* ══════════════════════════════════════════════════
   6. COMO FUNCIONA
   ══════════════════════════════════════════════════ */

.como-funciona {
    background: transparent;
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.cf-header {
    margin-bottom: 56px;
}

.cf-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 72px;
    position: relative;
}

.timeline::after {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: var(--line);
}

.timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: var(--red);
    z-index: 0;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline.is-visible::before {
    transform: scaleX(1);
}

.timeline-step {
    text-align: center;
    position: relative;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-step:hover .step-num {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(223, 28, 47, 0.35);
}

.timeline-step h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Requirements */
.requirements {
    margin-bottom: 72px;
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color 0.4s, box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.requirements:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.requirements h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.req-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.req-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
}

.req-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 800;
}

/* ── FAQ redesign ── */
.faq-block {
    padding: 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
}

.faq-header h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 10px 0 14px;
}

.faq-header-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: transparent;
    overflow: hidden;
    transition: background 0.3s;
    position: relative;
}

.faq-item::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.faq-item[open]::before { transform: scaleY(1); }
.faq-item[open] { background: rgba(223,28,47,0.03); }

.faq-item summary {
    padding: 22px 20px 22px 24px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.65);
    transition: color 0.25s;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary,
.faq-item summary:hover { color: #fff; }

.faq-q-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.06em;
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.25s;
    min-width: 22px;
}

.faq-item[open] .faq-q-num,
.faq-item summary:hover .faq-q-num { opacity: 1; }

.faq-item summary::after {
    content: "";
    margin-left: auto;
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cline x1='6' y1='1' x2='6' y2='11' stroke='%23aaa' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='1' y1='6' x2='11' y2='6' stroke='%23aaa' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E")
        center / 12px no-repeat;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, background-color 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    border-color: rgba(223,28,47,0.4);
    background-color: rgba(223,28,47,0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cline x1='6' y1='1' x2='6' y2='11' stroke='%23df1c2f' stroke-width='1.5' stroke-linecap='round'/%3E%3Cline x1='1' y1='6' x2='11' y2='6' stroke='%23df1c2f' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq-body {
    animation: faqBodyIn 0.4s cubic-bezier(0.22,1,0.36,1);
}

.faq-body p {
    padding: 0 20px 24px 60px;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

@keyframes faqBodyIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes faqSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-header { position: static; }
    .faq-body p { padding-left: 20px; }
    .faq-item summary { padding: 18px 16px; font-size: 0.9rem; }
}

/* ── CF Steps (implantação redesign) ── */

.cf-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.cf-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.cf-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(223,28,47,0.07) 0%, transparent 70%);
    filter: blur(40px);
}

.cf-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 12px;
    max-width: 520px;
}

/* Vertical timeline */
.cf-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 64px;
}

.cf-steps-line {
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: rgba(255,255,255,0.06);
    z-index: 0;
}

.cf-steps-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(180deg, var(--red) 0%, rgba(223,28,47,0.3) 100%);
    transition: height 1.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 2px;
}

.cf-steps.is-visible .cf-steps-line-fill {
    height: 100%;
}

/* Individual step */
.cf-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 32px;
    align-items: start;
    padding: 20px 0 20px 0;
    position: relative;
    z-index: 1;
}

.cf-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Node */
.cf-step-node {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a22;
    border: 2px solid rgba(223,28,47,0.45);
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(223,28,47,0.25);
    transition: box-shadow 0.4s, border-color 0.4s;
}

.cf-step-node:hover {
    border-color: var(--red);
    box-shadow: 0 0 0 8px rgba(223,28,47,0.08), 0 0 24px rgba(223,28,47,0.25);
}

.cf-step-node-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(223,28,47,0.25);
    animation: node-ring-pulse 2.8s ease-in-out infinite;
}

@keyframes node-ring-pulse {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.12); }
}

.cf-step-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--red);
    letter-spacing: 0.02em;
}

.cf-step-node--done {
    background: rgba(223,28,47,0.12);
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(223,28,47,0.2), 0 0 0 8px rgba(223,28,47,0.06);
}

.cf-step-node--done .cf-step-node-ring {
    border-color: rgba(223,28,47,0.5);
    animation-duration: 1.8s;
}

.cf-step-duration {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    text-align: center;
}

/* Step card */
.cf-step-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 0;
    overflow: hidden;
    transform: perspective(800px) rotateX(0deg);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
                border-color 0.4s,
                box-shadow 0.4s;
}

.cf-step-card:hover {
    transform: perspective(800px) rotateX(-1.5deg) translateY(-3px);
    border-color: rgba(223,28,47,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(223,28,47,0.1);
}

.cf-step-card-glow {
    position: absolute;
    top: -60px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(223,28,47,0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s;
}

.cf-step-card:hover .cf-step-card-glow {
    opacity: 1.5;
}

.cf-step-card--done {
    border-color: rgba(223,28,47,0.25);
    background: rgba(223,28,47,0.05);
    box-shadow: inset 0 0 40px rgba(223,28,47,0.04);
}

.cf-step-card--done:hover {
    border-color: rgba(223,28,47,0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 30px rgba(223,28,47,0.15), 0 0 0 1px rgba(223,28,47,0.2);
}

.cf-step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(223,28,47,0.1);
    border: 1px solid rgba(223,28,47,0.2);
    margin-bottom: 16px;
    color: var(--red);
    flex-shrink: 0;
}

.cf-step-icon--done {
    background: rgba(223,28,47,0.15);
    border-color: rgba(223,28,47,0.4);
    box-shadow: 0 0 12px rgba(223,28,47,0.2);
}

.cf-step-body h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    margin-bottom: 8px;
    color: var(--text);
}

.cf-step-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.cf-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cf-step-tags span {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
}

.cf-step-tags .tag--green {
    color: #3ecf8e;
    border-color: rgba(62,207,142,0.25);
    background: rgba(62,207,142,0.07);
}

/* Requirements */
.cf-req {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px 48px;
    align-items: start;
    padding: 32px 40px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
    margin-bottom: 80px;
}

.cf-req-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    padding-top: 3px;
}

.cf-req-label svg {
    color: var(--red);
    flex-shrink: 0;
}

.cf-req-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cf-req-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cf-req-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.6;
    flex-shrink: 0;
}

/* Step entrance animation */
.cf-step[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.cf-step[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cf-step:nth-child(2)[data-reveal] { transition-delay: 0.1s; }
.cf-step:nth-child(3)[data-reveal] { transition-delay: 0.2s; }
.cf-step:nth-child(4)[data-reveal] { transition-delay: 0.3s; }
.cf-step:nth-child(5)[data-reveal] { transition-delay: 0.4s; }

/* Mobile adjustments */
@media (max-width: 700px) {
    .cf-step {
        grid-template-columns: 40px 1fr;
        gap: 0 16px;
        padding: 16px 0;
    }
    .cf-step-node {
        width: 40px;
        height: 40px;
        border-width: 1.5px;
    }
    .cf-step-node-ring { inset: -4px; }
    .cf-step-num { font-size: 0.75rem; }
    .cf-steps-line { left: 19px; }
    .cf-steps { margin-bottom: 40px; }
    .cf-step-card {
        padding: 16px;
        /* disable 3D on mobile — too heavy and clips */
        transform: none !important;
    }
    .cf-step-card:hover {
        transform: none !important;
    }
    .cf-step-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    .cf-step-icon svg { width: 18px; height: 18px; }
    .cf-step-body h3 { font-size: 0.9375rem; }
    .cf-step-body p { font-size: 0.8125rem; margin-bottom: 12px; }
    .cf-step-duration { font-size: 0.5625rem; }
    .cf-step-tags { gap: 6px; }
    .cf-step-tags span {
        font-size: 0.625rem;
        padding: 3px 8px;
    }
    .cf-req {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px;
        margin-bottom: 48px;
    }
    .cf-req-label {
        white-space: normal;
        font-size: 0.75rem;
    }
    .cf-req-list { gap: 8px 16px; }
    .cf-req-list li { font-size: 0.8125rem; }
    .cf-header { margin-bottom: 36px; }
    .cf-subtitle { font-size: 0.875rem; }
}

/* Extra small (≤ 400px — S23 and similar) */
@media (max-width: 400px) {
    .cf-step {
        grid-template-columns: 36px 1fr;
        gap: 0 12px;
    }
    .cf-step-node { width: 36px; height: 36px; }
    .cf-step-node-ring { inset: -3px; }
    .cf-steps-line { left: 17px; }
    .cf-step-card { padding: 14px; border-radius: 10px; }
    .cf-step-card-glow { display: none; }
    .cf-step-body h3 { font-size: 0.875rem; }
    .cf-req { padding: 16px; }
}


/* ══════════════════════════════════════════════════
   7. CTA FINAL
   ══════════════════════════════════════════════════ */

.cta-final {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--bg);
}

/* Grid de linhas de fundo */
.cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Vinheta vermelha central (como na imagem) */
.cta-red-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 55% at 50% 40%, rgba(180, 10, 28, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    position: relative;
}

/* ── Heading block ───────────────────────────── */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cta-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--red);
    margin-bottom: 20px;
}

.cta-content h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-align: center;
}

/* Segunda linha do heading em vermelho+itálico (estilo da imagem) */
.cta-content h2 em {
    font-style: italic;
    color: var(--red);
    display: block;
}

.cta-lead {
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
    text-align: center;
}

/* ── Lead Form ───────────────────────────────── */
.lead-form {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.form-group input {
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-group input:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(223, 28, 47, 0.06);
    box-shadow: 0 0 0 3px rgba(223, 28, 47, 0.14);
}

/* Botão full-width vermelho sólido (estilo da imagem) */
.form-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--red);
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: #c0152a;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(223, 28, 47, 0.4);
}

.form-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Estados de feedback do botão (mantidos do script.js) */
.form-submit.is-success { background: #25d366; }
.form-submit.is-error   { background: #c0392b; }

.form-note {
    font-size: 0.7rem;
    color: rgba(125, 119, 115, 0.7);
    text-align: center;
    line-height: 1.6;
}

.form-note a {
    color: rgba(125, 119, 115, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.form-note a:hover { color: var(--text); }

/* ── Contact block ───────────────────────────── */
.cta-contact {
    padding-top: 28px;
    border-top: 1px solid var(--line);
    text-align: center;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cta-contact strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 2px;
}

.cta-contact > span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 14px;
}

.cta-channels {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: #25d366;
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: 100px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.cta-whatsapp::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-whatsapp:hover::before { left: 125%; }
.cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}

.cta-email-link {
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 2px;
}

.cta-email-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--line);
    transition: background 0.3s;
}

.cta-email-link:hover { color: var(--text); }
.cta-email-link:hover::after { background: var(--text); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 640px) {
    .cta-content h2 {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .lead-form {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-grid-bg {
        background-size: 40px 40px;
    }
}

@keyframes linkUnderline {
    0%     { transform: scaleX(1);  transform-origin: right; }
    50%    { transform: scaleX(0);  transform-origin: right; }
    50.01% { transform: scaleX(0);  transform-origin: left; }
    100%   { transform: scaleX(1);  transform-origin: left; }
}


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */

.footer {
    background: #0d0d10;
    overflow: hidden;
    position: relative;
}

/* Linha vermelha no topo do footer */
.footer::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 40%, var(--red) 60%, transparent 100%);
}

/* ── Hero ── */
.footer-hero {
    position: relative;
    padding: clamp(52px, 8vh, 100px) 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

/* grade de fundo no hero */
.footer-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

/* mancha vermelha sutil no canto esquerdo */
.footer-hero::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(223,28,47,0.13) 0%, transparent 68%);
    pointer-events: none;
}

.footer-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(1.625rem, 3.8vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #f0ebe6;
}

.footer-tagline-red {
    color: var(--red);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--red);
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

/* shine no hover */
.footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-cta:hover::before { left: 125%; }

.footer-cta:hover {
    background: #c0152a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(223,28,47,0.42);
}

/* ── Body grid ── */
.footer-body {
    padding: 52px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Col 1 brand */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f0ebe6;
}

/* tagline curta na col brand */
.footer-brand-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.65;
    max-width: 220px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.03);
    transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: #fff;
    border-color: var(--red);
    background: rgba(223,28,47,0.14);
    transform: translateY(-2px);
}

/* Cols 2-4 */
.footer-col h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* traço decorativo antes do título */
.footer-col h4::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--red);
    opacity: 0.6;
    flex-shrink: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li,
.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: #f0ebe6;
}

/* seta sutil no hover dos links */
.footer-col ul li a::before {
    content: '→';
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
    color: var(--red);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ── Bottom bar ── */
.footer-bottom {
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-inner span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.18);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
    transition: color 0.25s;
}

.footer-bottom-links a:hover {
    color: #f0ebe6;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .footer-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand-col {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
    animation: wpp-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1.5s both;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

@keyframes wpp-enter {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 44px;
    height: 44px;
    background: var(--bg-raised);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s, color 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}


/* ══════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   TEXT SPLIT REVEAL
   ══════════════════════════════════════════════════ */

.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.word-inner {
    display: inline-block;
    transform: translateY(105%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--word-i) * 60ms);
}

.is-text-visible .word-inner {
    transform: translateY(0);
}


/* ══════════════════════════════════════════════════
   HOVER GLOW — Featured pricing card
   ══════════════════════════════════════════════════ */

.pricing-card-featured:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(223, 28, 47, 0.2),
                0 0 40px rgba(223, 28, 47, 0.08);
}

/* Active carousel slide glow */
.mod-slide.is-active .mod-slide-inner {
    box-shadow:
        0 36px 92px rgba(0, 0, 0, 0.62),
        0 0 0 1px rgba(var(--mod-accent-rgb), 0.18),
        0 0 40px rgba(var(--mod-accent-rgb), 0.12),
        inset 0 1px 0 rgba(255,255,255,0.1);
}


/* ══════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════ */

/* Trigger cursor */
[data-lightbox] {
    cursor: zoom-in;
}

/* Overlay */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.lightbox.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

/* Backdrop */
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.is-open .lightbox-backdrop {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Content — the image + caption wrapper */
.lightbox-content {
    position: relative;
    max-width: min(92vw, 1400px);
    max-height: 88vh;
    transform: scale(0.6) translateY(40px);
    opacity: 0;
    filter: blur(12px);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

.lightbox.is-open .lightbox-content {
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: blur(0);
}

.lightbox.is-closing .lightbox-content {
    transform: scale(0.92) translateY(20px);
    opacity: 0;
    filter: blur(8px);
    transition-duration: 0.35s;
}

.lightbox.is-closing .lightbox-backdrop {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition-duration: 0.35s;
}

/* Image */
.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Caption */
.lightbox-caption {
    text-align: center;
    padding: 12px 0 56px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
        opacity 0.4s ease 0.15s;
}

.lightbox.is-open .lightbox-caption {
    transform: translateY(0);
    opacity: 1;
}

.lightbox-title {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.lightbox-desc {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transform: scale(0) rotate(-90deg);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
        opacity 0.3s ease 0.2s,
        background 0.2s ease,
        border-color 0.2s ease;
}

.lightbox.is-open .lightbox-close {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Navigation */
.lightbox-nav {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 16px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
        opacity 0.4s ease 0.18s;
}

.lightbox.is-open .lightbox-nav {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.1);
}

.lightbox-counter {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    min-width: 40px;
    text-align: center;
}

/* Image swap animation */
.lightbox-content.is-switching {
    transform: scale(0.96);
    opacity: 0.4;
    filter: blur(4px);
    transition-duration: 0.2s;
}


/* ══════════════════════════════════════════════════
   SECTION TRANSITIONS — cinematic scroll reveal
   ══════════════════════════════════════════════════ */

[data-section-transition] {
    transition:
        opacity      0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform    0.9s cubic-bezier(0.16, 1, 0.3, 1),
        filter       0.9s cubic-bezier(0.16, 1, 0.3, 1),
        clip-path    0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

/* Estado inicial — antes de entrar */
[data-section-transition].sect-before {
    opacity: 0;
    transform: translateY(48px) scale(0.98);
    filter: blur(6px);
}

/* Saindo pelo topo (scroll para baixo passou a seção) */
[data-section-transition].sect-after {
    opacity: 0;
    transform: translateY(-24px) scale(0.99);
    filter: blur(3px);
}

/* Visível */
[data-section-transition].is-in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

/* Linha separadora luminosa entre seções */
[data-section-transition] + [data-section-transition]::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(223,28,47,0.0) 10%,
        rgba(255,255,255,0.06) 30%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.06) 70%,
        rgba(223,28,47,0.0) 90%,
        transparent 100%
    );
    margin-bottom: 0;
    opacity: 0;
    transform: scaleX(0.3);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}

[data-section-transition].is-in-view + [data-section-transition]::before,
[data-section-transition] + [data-section-transition].is-in-view::before {
    opacity: 1;
    transform: scaleX(1);
}


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

@media (min-width: 901px) {
    .pricing-card-featured {
        transform: scale(1.04);
    }
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    :root {
        --container: min(1200px, calc(100vw - 32px));
        --ticker-height: 32px;
        --ticker-gap: 0px;
        --topbar-height: 64px;
        --topbar-height-compact: 64px;
    }

    .topbar-ticker {
        mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
    }

    .topbar-ticker-marquee {
        animation-duration: 22s;
    }

    .topbar-ticker-item {
        font-size: 0.64rem;
        letter-spacing: 0.01em;
        padding-left: 16px;
    }

    .menu-overlay {
        background: transparent;
    }

    .topbar {
        background: rgba(10, 10, 14, 0.96);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
        pointer-events: auto;
        top: var(--topbar-offset);
        height: var(--topbar-height);
    }

    .nav-desktop {
        display: none;
    }


    .topbar-inner {
        display: flex;
        justify-content: space-between;
        padding: 0 2px 0 0;
    }

    .topbar-left-group {
        order: 2;
        justify-self: unset;
    }

    .brand {
        order: 1;
    }

    .topbar-side-right {
        order: 3;
    }

    .topbar-side-right {
        display: flex;
        align-items: center;
        margin-left: auto;
        gap: 0;
    }

    .header-actions {
        position: static;
        right: auto;
        top: auto;
        transform: none;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .brand-logo-wordmark {
        height: 46px;
    }
    .brand::after {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 0;
        align-items: flex-start;
        overflow: visible;
    }

    .hero-bg-media::after {
        background:
            linear-gradient(180deg, rgba(7,8,11,0.52) 0%, rgba(7,8,11,0.22) 24%, rgba(7,8,11,0.66) 100%),
            linear-gradient(90deg, rgba(7,8,11,0.82) 0%, rgba(7,8,11,0.4) 42%, rgba(7,8,11,0.72) 100%);
    }

    .hero-bg-media::before {
        opacity: 0.42;
        filter: blur(16px);
    }

    .hero-bg-video {
        object-position: 64% center;
        transform: scale(1.14);
        opacity: 0.66;
        filter: saturate(1.02) contrast(1.08) brightness(0.52) blur(0.7px);
    }

    .hero-video-scan {
        left: -28%;
        width: 68vw;
        opacity: 0.36;
    }

    .hero-video-ring--one {
        width: 58vw;
        height: 58vw;
        right: -18%;
        top: 12%;
    }

    .hero-video-ring--two {
        display: none;
    }

    .hero-container {
        padding-top: calc(120px + var(--ticker-height));
        padding-bottom: 48px;
    }

    .hero-accent-line {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: auto;
        width: 100%;
        max-width: 100%;
    }

    /* Conteúdo mobile: alinhado à esquerda (mais natural) */
    .hero-content {
        text-align: left;
        display: flex;
        max-width: 100%;
        overflow: hidden;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-eyebrow {
        font-size: 0.6rem;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 16px;
    }

    .hero-title {
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .hero-desc {
        text-align: left;
        max-width: 100%;
        margin-bottom: 24px;
        font-size: 0.875rem;
        line-height: 1.65;
    }

    .hero-actions {
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        margin-bottom: 24px;
        gap: 10px;
    }

    .hero-actions .btn-lg {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Métricas: 3 blocos em linha */
    .hero-metrics {
        width: 100%;
        justify-content: stretch;
        gap: 0;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        margin-bottom: 20px;
        display: flex;
    }

    .hero-metric {
        flex: 1;
        align-items: center;
        padding: 10px 6px;
        border: 1px solid rgba(255,255,255,0.07);
        background: rgba(255,255,255,0.03);
        border-right: none;
    }

    .hero-metric:last-child {
        border-right: 1px solid rgba(255,255,255,0.07);
    }

    .hero-metric:first-child { border-radius: 4px 0 0 4px; }
    .hero-metric:last-child  { border-radius: 0 4px 4px 0; }

    .hero-metric strong {
        font-size: 0.95rem;
    }

    .hero-metric span {
        font-size: 0.55rem;
    }

    .hero-metric-div {
        display: none;
    }

    /* Trust: horizontal compacto */
    .hero-trust {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .hero-trust-item {
        font-size: 0.7rem;
    }

    .hero-scroll-hint {
        display: none;
    }

    /* Produto: frame simples, sem cards secundários */
    .product-back-left,
    .product-back-right {
        display: none;
    }

    .product-showcase {
        padding-top: 0;
        height: auto;
    }

    .product-glow {
        display: none;
    }

    .hero-screen-frame {
        position: relative;
        width: 100%;
        bottom: auto;
        left: auto;
        transform: none;
        border-radius: 8px 8px 10px 10px;
        box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 48px rgba(0,0,0,0.5);
    }

    .product-showcase:hover .hero-screen-frame {
        transform: none;
        box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 48px rgba(0,0,0,0.5);
    }

    /* Proposta */
    .proposta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .planos-bg-video {
        inset: -4%;
        width: 108%;
        height: 108%;
        object-position: 58% 28%;
        opacity: 0.52;
        transform: scale(1.1);
        filter: grayscale(0.22) saturate(0.62) contrast(1.01) brightness(0.42);
    }

    .planos-bg::after {
        background:
            linear-gradient(180deg, rgba(7,8,11,0.54) 0%, rgba(7,8,11,0.24) 22%, rgba(7,8,11,0.72) 100%),
            linear-gradient(90deg, rgba(7,8,11,0.94) 0%, rgba(7,8,11,0.76) 30%, rgba(7,8,11,0.38) 66%, rgba(7,8,11,0.88) 100%);
    }

    .proposta-point {
        grid-template-columns: auto 1fr;
    }

    .proposta-point-num {
        display: none;
    }

    /* Problemas */
    .problema-row,
    .problema-row-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0;
    }

    .problema-row-reverse .problema-quote,
    .problema-row-reverse .problema-solucao {
        order: unset;
    }

    .problema-num {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .gallery-main {
        grid-row: auto;
    }

    /* Carousel */
    .mod-slide {
        flex: 0 0 330px;
        height: 430px;
    }

    .modulos-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .mod-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 20px 0 8px;
    }

    .mod-carousel-ui {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .mod-carousel-info {
        display: none;
    }

    /* Pills de categoria: full-width, pills iguais */
    .modulos-cats {
        width: 100%;
        flex-shrink: 1;
    }

    .modulos-cat-pill {
        flex: 1;
        text-align: center;
        padding: 8px 6px;
        font-size: 0.55rem;
    }

    .mod-carousel-actions {
        width: 100%;
        justify-content: center;
    }

    .mod-explore-btn {
        display: none;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        order: -1;
        transform: none;
    }

    /* Timeline */
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::after,
    .timeline::before {
        display: none;
    }

    /* CTA */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Social Proof */
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-testimonials {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 600px) {
    .hero-title-line--big,
    .hero-title-line--accent {
        font-size: clamp(1.6rem, 7.8vw, 2.2rem);
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-title-line--small {
        font-size: clamp(0.8rem, 3.6vw, 1rem);
    }

    .hero {
        min-height: 0;
        overflow: visible;
    }

    .hero-bg-video {
        display: none;
    }

    .hero-video-scan {
        display: none;
    }

    .hero-container {
        padding-top: calc(100px + var(--ticker-height));
        padding-bottom: 40px;
    }

    .hero-content {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-desc {
        font-size: 0.85rem;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-eyebrow-tag {
        display: none;
    }

    .mod-slide {
        flex: 0 0 286px;
        height: 390px;
    }

    .mod-slide::before {
        left: -10px;
        bottom: 20px;
        width: 54px;
        height: 28px;
        background:
            radial-gradient(circle, rgba(var(--mod-accent-rgb),0.9) 0 1px, transparent 1px) 0 0 / 10px 10px repeat,
            linear-gradient(90deg, rgba(var(--mod-accent-rgb),0.22), transparent 72%);
    }

    .mod-slide::after {
        top: 88px;
        left: 24px;
        padding: 6px 9px 6px 11px;
        font-size: 0.41rem;
        letter-spacing: 0.22em;
    }

    .mod-slide-inner {
        border-radius: 28px;
        padding: 24px;
    }

    .mod-slide-inner::after {
        inset: 8px;
        border-radius: 22px;
    }

    .mod-slide-meta {
        top: 22px;
        left: 22px;
        right: 22px;
    }

    .mod-num {
        top: 18px;
        right: 16px;
        font-size: 5.4rem;
    }

    .mod-title {
        bottom: 106px;
        left: 24px;
        right: 28px;
        font-size: 1.48rem;
    }

    .mod-title::before {
        width: 62px;
        margin-bottom: 16px;
        background-size: 11px 8px;
    }

    .mod-desc {
        left: 24px;
        right: 102px;
        bottom: 28px;
        font-size: 0.76rem;
    }

    .mod-badge {
        right: 22px;
        bottom: 28px;
        min-width: 74px;
        padding: 5px 9px;
    }

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

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

    .problema-quote blockquote {
        font-size: 1.25rem;
    }

    .proof-stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .back-to-top {
        bottom: 16px;
        right: 76px;
        width: 40px;
        height: 40px;
    }
}

/* ═══════════════════════════════════════════════════════
   ISO MOCKUP 3D — WOW FACTOR
   ═══════════════════════════════════════════════════════ */
.hero-product { overflow: visible; }

.iso-scene {
    position: relative;
    width: 100%;
    height: 620px;
    perspective: 1600px;
    perspective-origin: 50% 35%;
}

/* ── Glows ambiente ── */
.iso-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    z-index: 0;
}

.iso-glow--red {
    width: 70%;
    height: 55%;
    top: 20%;
    left: 15%;
    background: radial-gradient(ellipse, rgba(223,28,47,0.28) 0%, transparent 70%);
    animation: glow-breathe 5s ease-in-out infinite alternate;
}

.iso-glow--blue {
    width: 50%;
    height: 40%;
    bottom: 5%;
    right: 0%;
    background: radial-gradient(ellipse, rgba(99,102,241,0.15) 0%, transparent 70%);
    animation: glow-breathe 7s ease-in-out infinite alternate-reverse;
}

@keyframes glow-breathe {
    from { opacity: 0.6; transform: scale(0.95); }
    to   { opacity: 1;   transform: scale(1.1);  }
}

/* ── Partículas ── */
.iso-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.iso-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(223,28,47,0.7);
    animation: particle-rise linear infinite;
}

.iso-particle:nth-child(1) { left: 20%; bottom: 30%; width: 2px; height: 2px; animation-duration: 4s; animation-delay: 0s; }
.iso-particle:nth-child(2) { left: 50%; bottom: 20%; width: 3px; height: 3px; animation-duration: 5.5s; animation-delay: 1s; background: rgba(255,255,255,0.3); }
.iso-particle:nth-child(3) { left: 75%; bottom: 40%; width: 2px; height: 2px; animation-duration: 3.8s; animation-delay: 2s; }
.iso-particle:nth-child(4) { left: 35%; bottom: 10%; width: 4px; height: 4px; animation-duration: 6s; animation-delay: 0.5s; background: rgba(99,102,241,0.5); }
.iso-particle:nth-child(5) { left: 88%; bottom: 55%; width: 2px; height: 2px; animation-duration: 4.5s; animation-delay: 1.5s; background: rgba(255,255,255,0.2); }

@keyframes particle-rise {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

/* ── Base de todas as telas ── */
.iso-screen {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.iso-screen-body {
    position: relative;
    overflow: hidden;
}

.iso-screen-body img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}

/* Efeito de brilho deslizando na tela */
.iso-screen-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(255,255,255,0.06) 50%,
        transparent 60%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: shine-slide 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes shine-slide {
    0%   { background-position: 200% 200%; }
    50%  { background-position: -50% -50%; }
    100% { background-position: 200% 200%; }
}

/* ── Chrome da tela principal ── */
.iso-screen-chrome {
    background: linear-gradient(180deg, #1e1e26 0%, #16161e 100%);
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}

.iso-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px currentColor;
}
.iso-dot:nth-child(1) { background: #ff5f57; color: #ff5f57; }
.iso-dot:nth-child(2) { background: #febc2e; color: #febc2e; }
.iso-dot:nth-child(3) { background: #28c840; color: #28c840; }

.iso-url {
    flex: 1;
    font-size: 0.5625rem;
    color: rgba(255,255,255,0.28);
    letter-spacing: 0.04em;
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.iso-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}

.iso-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #df1c2f;
    box-shadow: 0 0 8px #df1c2f;
    animation: live-pulse 1.2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { transform: scale(1);    opacity: 1; }
    50%       { transform: scale(1.5);  opacity: 0.4; }
}

/* ── TELA PRINCIPAL ── */
.iso-screen--main {
    width: 84%;
    left: 8%;
    top: 3%;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 2px 0 rgba(255,255,255,0.08) inset,
        0 40px 100px rgba(0,0,0,0.7),
        0 0 0 60px rgba(223,28,47,0.0),
        0 0 80px rgba(223,28,47,0.18);
    animation: float-main 7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    transition: box-shadow 0.4s ease;
}

.iso-screen--main .iso-screen-body img { height: 270px; }

@keyframes float-main {
    0%   { transform: rotateX(8deg) rotateY(-14deg) rotateZ(1.5deg) translateY(0px) translateZ(0px); }
    25%  { transform: rotateX(6deg) rotateY(-12deg) rotateZ(1deg)   translateY(-12px) translateZ(10px); }
    50%  { transform: rotateX(9deg) rotateY(-15deg) rotateZ(2deg)   translateY(-6px)  translateZ(5px); }
    75%  { transform: rotateX(7deg) rotateY(-11deg) rotateZ(1.2deg) translateY(-16px) translateZ(8px); }
    100% { transform: rotateX(8deg) rotateY(-14deg) rotateZ(1.5deg) translateY(0px)   translateZ(0px); }
}

.iso-scene:hover .iso-screen--main {
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.18),
        0 2px 0 rgba(255,255,255,0.1) inset,
        0 60px 120px rgba(0,0,0,0.75),
        0 0 100px rgba(223,28,47,0.25);
}

/* ── TELA ESQUERDA ── */
.iso-screen--left {
    width: 52%;
    left: 3%;
    bottom: 0%;
    z-index: 4;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 24px 60px rgba(0,0,0,0.65),
        0 0 40px rgba(223,28,47,0.1);
    animation: float-left 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: -2s;
}

.iso-screen--left .iso-screen-body img { height: 178px; }

@keyframes float-left {
    0%   { transform: rotateX(5deg) rotateY(8deg)  rotateZ(-1.5deg) translateY(0px); }
    33%  { transform: rotateX(4deg) rotateY(7deg)  rotateZ(-1deg)   translateY(-10px); }
    66%  { transform: rotateX(6deg) rotateY(9deg)  rotateZ(-2deg)   translateY(-5px); }
    100% { transform: rotateX(5deg) rotateY(8deg)  rotateZ(-1.5deg) translateY(0px); }
}

/* ── TELA DIREITA ── */
.iso-screen--right {
    width: 50%;
    right: 3%;
    bottom: 0%;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.07);
    opacity: 0.88;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 20px 50px rgba(0,0,0,0.6);
    animation: float-right 9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: -4s;
}

.iso-screen--right .iso-screen-body img { height: 172px; }

@keyframes float-right {
    0%   { transform: rotateX(6deg) rotateY(-16deg) rotateZ(2deg)   translateY(0px); }
    40%  { transform: rotateX(5deg) rotateY(-14deg) rotateZ(1.5deg) translateY(-14px); }
    70%  { transform: rotateX(7deg) rotateY(-17deg) rotateZ(2.5deg) translateY(-7px); }
    100% { transform: rotateX(6deg) rotateY(-16deg) rotateZ(2deg)   translateY(0px); }
}


/* ── Mobile ── */
@media (max-width: 900px) {
    .iso-scene { height: 300px; perspective: 900px; }

    .iso-screen--main {
        width: 90%;
        left: 5%;
        top: 4%;
        animation: none;
        transform: rotateX(4deg) rotateY(-8deg) rotateZ(1deg);
    }

    .iso-screen--main .iso-screen-body img { height: 170px; }

    .iso-screen--left,
    .iso-screen--right { display: none; }

    .iso-notif { display: none; }
}

@media (max-width: 768px) {
    .planos-bg-video {
        display: none;
    }

    .planos-bg::after {
        background:
            linear-gradient(180deg, rgba(7,8,11,0.64) 0%, rgba(7,8,11,0.34) 20%, rgba(7,8,11,0.78) 100%),
            linear-gradient(90deg, rgba(7,8,11,0.96) 0%, rgba(7,8,11,0.82) 34%, rgba(7,8,11,0.44) 72%, rgba(7,8,11,0.9) 100%);
    }
}

@media (max-width: 640px) {
    .planos-bg::after {
        background:
            linear-gradient(180deg, rgba(7,8,11,0.72) 0%, rgba(7,8,11,0.42) 18%, rgba(7,8,11,0.82) 100%),
            linear-gradient(90deg, rgba(7,8,11,0.98) 0%, rgba(7,8,11,0.86) 36%, rgba(7,8,11,0.5) 74%, rgba(7,8,11,0.92) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-media::before,
    .hero-bg-video,
    .hero-video-scan,
    .hero-video-ring,
    .planos-bg-video {
        animation: none !important;
    }

    .iso-screen--main,
    .iso-screen--left,
    .iso-screen--right,
    .iso-screen-shine,
    .iso-glow--red,
    .iso-glow--blue,
    .iso-particle,
    .iso-live-dot {
        animation: none !important;
    }
}

/* ═══════════════════ PARCEIROS ═══════════════════ */
.parceiros {
    padding: 100px 0;
    color: #fff;
}

.parceiros-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
}

.parceiros-header-row {
    padding: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.parceiros-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    padding: 5px 14px;
}

.parceiros-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,0.6);
    flex-shrink: 0;
}

.parceiros-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
}

.parceiros-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 16px 0;
}

.parceiro-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.parceiro-logo {
    max-width: 340px;
    max-height: 130px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity 0.3s;
}

.parceiro-logo:hover {
    opacity: 0.9;
}

.parceiro-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    font-weight: 500;
}

.parceiros-cta-line {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

.parceiros-cta-line a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.parceiros-cta-line a:hover {
    opacity: 0.75;
}

@media (max-width: 600px) {
    .parceiros {
        padding: 64px 0;
    }

    .parceiros-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .parceiro-logo {
        max-width: 220px;
    }
}

/* ═══════════════════ S23 / TELAS MUITO PEQUENAS (≤390px) ═══════════════════ */
@media (max-width: 390px) {
    :root {
        --container: min(1200px, calc(100vw - 24px));
        --ticker-height: 30px;
        --ticker-gap: 0px;
        --topbar-height: 64px;
        --topbar-height-compact: 60px;
    }

    .topbar-ticker-item {
        font-size: 0.58rem;
        letter-spacing: 0.01em;
        padding-left: 14px;
    }

    /* Header compacto: esconder texto do botão, deixar só ícone ou reduzir */
    .topbar-inner {
        height: 64px;
        padding: 0 4px;
    }

    .header-actions .btn-primary {
        font-size: 0.75rem;
        padding: 8px 14px;
        gap: 5px;
    }

    /* Esconder o dot do botão para ganhar espaço */
    .header-actions .btn-primary::after {
        display: none;
    }

    .menu-btn {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .menu-nav {
        padding: 14px;
        border-radius: 24px;
    }

    .menu-nav a {
        min-height: 44px;
        padding: 0 16px 0 22px;
        font-size: 1rem;
        border-radius: 16px;
    }

    .menu-footer {
        padding: 14px;
        border-radius: 20px;
    }

    .menu-footer .btn-primary {
        min-height: 46px;
        font-size: 0.85rem;
        padding-inline: 16px;
    }

    .menu-contact a {
        min-height: 40px;
        font-size: 0.82rem;
    }

    .brand-logo {
        height: 36px;
    }

    /* Hero: padding compensando header menor */
    .hero-container {
        padding-top: calc(88px + var(--ticker-height));
    }

    /* Título hero menor para não transbordar */
    .hero-title-line--big,
    .hero-title-line--accent {
        font-size: clamp(1.5rem, 7.5vw, 1.9rem);
        white-space: normal;
        word-break: break-word;
    }

    .hero-title-line--small {
        font-size: clamp(0.75rem, 3.5vw, 0.9rem);
    }

    /* Descrição mais compacta */
    .hero-desc {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    /* Botões hero empilhados e full-width */
    .hero-actions .btn-lg {
        font-size: 0.85rem;
        padding: 13px 18px;
    }

    /* Métricas: fonte menor para caber em 3 colunas */
    .hero-metric strong {
        font-size: 0.85rem;
    }

    .hero-metric span {
        font-size: 0.5rem;
    }

    .hero-metric {
        padding: 8px 4px;
    }
}
