/* ================================================
   ALYX MED — Premium Landing Page Styles
   ================================================ */

/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-dark: #0D3D4A;
    --blue-petrol: #0F6E82;
    --blue-cyan: #1A9EAD;
    --blue-ice: #C8E8F0;
    --white: #FFFFFF;
    --gray-1: #F0F0F0;
    --gray-2: #DCDCDC;
    --gray-3: #B8BCC8;
    --gray-4: #6B7280;
    --almost-black: #151D2E;
    --navy: #151D2E;
    --gradient-main: linear-gradient(135deg, #0F6E82, #1A9EAD);
    --gradient-text: linear-gradient(135deg, #1A9EAD, #0F6E82);
    --shadow-sm: 0 1px 3px rgba(13, 61, 74, 0.06);
    --shadow-md: 0 4px 16px rgba(13, 61, 74, 0.08);
    --shadow-lg: 0 8px 32px rgba(13, 61, 74, 0.1);
    --shadow-xl: 0 16px 48px rgba(13, 61, 74, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--almost-black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

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

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

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

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

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

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

@keyframes typing {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1); }
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(26, 158, 173, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(26, 158, 173, 0.45);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--almost-black);
    border: 1.5px solid var(--gray-2);
}

.btn-outline:hover {
    border-color: var(--blue-cyan);
    color: var(--blue-petrol);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-4);
}

.btn-ghost:hover {
    color: var(--blue-petrol);
}

.btn-white {
    background: var(--white);
    color: var(--blue-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

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

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 220, 220, 0.3);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-inner .logo {
    flex-shrink: 0;
}

.navbar .nav-links {
    margin-left: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-img-footer {
    height: 32px;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-4);
    transition: color 0.2s ease;
}

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--almost-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FCFD 0%, var(--white) 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--blue-cyan);
    top: -200px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--blue-petrol);
    bottom: -100px;
    left: -100px;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 158, 173, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 158, 173, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(26, 158, 173, 0.08);
    border: 1px solid rgba(26, 158, 173, 0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-petrol);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--almost-black);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-4);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-cta-hint {
    font-size: 13px;
    color: var(--gray-4);
    max-width: 420px;
    margin: 0 0 48px;
    line-height: 1.5;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-2);
}

.hero-proof-number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--blue-dark);
}

.hero-proof-label {
    font-size: 13px;
    color: var(--gray-4);
}

/* HERO DASHBOARD MOCKUP */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
    overflow: hidden;
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-1);
    border-bottom: 1px solid var(--gray-2);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-2);
}

.mockup-dots span:first-child { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:last-child { background: #27CA40; }

.mockup-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-4);
    border: 1px solid var(--gray-2);
}

.mockup-content {
    display: flex;
    min-height: 320px;
}

.mockup-sidebar {
    width: 48px;
    background: var(--blue-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 4px;
}

.mockup-sidebar-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
}

.mockup-sidebar-item.active {
    background: rgba(26, 158, 173, 0.3);
    color: var(--blue-cyan);
}

.mockup-main {
    flex: 1;
    padding: 16px;
    background: #F8FAFB;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.mockup-greeting {
    font-weight: 700;
    font-size: 14px;
    color: var(--almost-black);
}

.mockup-date {
    font-size: 11px;
    color: var(--gray-4);
}

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

.mockup-kpi {
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-2);
}

.mockup-kpi-label {
    display: block;
    font-size: 10px;
    color: var(--gray-4);
    margin-bottom: 4px;
}

.mockup-kpi-value {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--almost-black);
}

.mockup-kpi-change {
    font-size: 10px;
    font-weight: 600;
}

.mockup-kpi-change.positive { color: #10B981; }

.mockup-charts {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
}

.mockup-chart-main,
.mockup-chart-side {
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-2);
}

.mockup-chart-title {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--almost-black);
    margin-bottom: 12px;
}

.mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.mockup-chart-bars .bar {
    flex: 1;
    background: var(--blue-ice);
    border-radius: 4px 4px 0 0;
    height: var(--h);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.3s;
}

.mockup-chart-bars .bar.accent {
    background: var(--gradient-main);
}

.mockup-chart-bars .bar span {
    font-size: 8px;
    color: var(--gray-4);
    padding-bottom: 2px;
    display: none;
}

.mockup-agenda {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: var(--gray-1);
    border-radius: 6px;
    font-size: 10px;
}

.agenda-time {
    font-weight: 600;
    color: var(--almost-black);
    min-width: 32px;
}

.agenda-name {
    flex: 1;
    color: var(--gray-4);
}

.agenda-tag {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.agenda-tag.confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.agenda-tag.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

/* MOBILE MOCKUP */
.mockup-mobile {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 160px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 3px solid var(--gray-1);
    animation: float 6s ease-in-out infinite;
}

.mobile-notch {
    width: 60px;
    height: 6px;
    background: var(--gray-2);
    border-radius: 3px;
    margin: 8px auto 4px;
}

.mobile-screen {
    padding: 8px;
}

.mobile-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--almost-black);
    margin-bottom: 8px;
}

.mobile-header-bar svg {
    color: var(--gray-4);
}

.mobile-kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 8px;
}

.mobile-kpi {
    background: var(--gray-1);
    padding: 6px;
    border-radius: 6px;
    text-align: center;
}

.mobile-kpi-val {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--almost-black);
}

.mobile-kpi-lbl {
    font-size: 8px;
    color: var(--gray-4);
}

.mobile-chart-mini {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-bottom: 8px;
    padding: 0 4px;
}

.mini-bar {
    flex: 1;
    background: var(--blue-ice);
    border-radius: 2px 2px 0 0;
    height: var(--h);
}

.mini-bar.accent {
    background: var(--gradient-main);
}

.mobile-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 8px;
}

.mobile-list-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: var(--gray-4);
    padding: 4px 6px;
    background: var(--gray-1);
    border-radius: 4px;
}

.ml-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.ml-dot.confirmed { background: #10B981; }
.ml-dot.pending { background: #F59E0B; }

/* SECTIONS COMMON */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(26, 158, 173, 0.08);
    border: 1px solid rgba(26, 158, 173, 0.12);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-petrol);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--almost-black);
}

.section-desc {
    font-size: 16px;
    color: var(--gray-4);
    line-height: 1.7;
}

/* PROBLEMS */
.section-problems {
    background: var(--gray-1);
}

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

.problem-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-2);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 158, 173, 0.2);
}

.problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 158, 173, 0.08);
    border-radius: var(--radius-sm);
    color: var(--blue-cyan);
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--almost-black);
}

.problem-card p {
    font-size: 14px;
    color: var(--gray-4);
    line-height: 1.6;
}

/* BEFORE / AFTER COMPARISON */
.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 48px;
}

.ba-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-2);
}

.ba-before {
    border-color: #F5C6CB;
}

.ba-after {
    border-color: rgba(26, 158, 173, 0.3);
}

.ba-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ba-before .ba-label {
    background: #FFF1F2;
    color: #B91C1C;
    border-bottom: 1px solid #F5C6CB;
}

.ba-after .ba-label {
    background: rgba(26, 158, 173, 0.06);
    color: var(--blue-petrol);
    border-bottom: 1px solid rgba(26, 158, 173, 0.2);
}

.ba-label svg {
    flex-shrink: 0;
}

.ba-items {
    padding: 8px 0;
}

.ba-item {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-4);
    border-bottom: 1px solid var(--gray-1);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.ba-item:last-child {
    border-bottom: none;
}

.ba-before .ba-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FCA5A5;
    flex-shrink: 0;
}

.ba-item-good {
    color: var(--almost-black);
    font-weight: 600;
}

.ba-after .ba-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-cyan);
    flex-shrink: 0;
}

.ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: var(--blue-petrol);
    position: sticky;
    top: 50%;
    align-self: center;
    opacity: 0.5;
}

/* MODULES */
.section-modules {
    background: var(--almost-black);
}

.section-modules .section-tag {
    background: rgba(26, 158, 173, 0.15);
    color: var(--blue-cyan);
    border-color: rgba(26, 158, 173, 0.3);
}

.section-modules .section-title {
    color: var(--white);
}

.section-modules .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.module-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-card:hover {
    background: rgba(26, 158, 173, 0.08);
    border-color: rgba(26, 158, 173, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 158, 173, 0.12);
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.module-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 158, 173, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-cyan);
    flex-shrink: 0;
}

.module-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-cyan);
    background: rgba(26, 158, 173, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.module-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.module-tagline {
    font-size: 13px;
    font-weight: 600;
    color: rgba(200, 232, 240, 0.8);
    line-height: 1.4;
}

.module-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    flex: 1;
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.module-tags span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.module-card-highlight {
    border-color: rgba(26, 158, 173, 0.35);
    background: rgba(26, 158, 173, 0.06);
    position: relative;
}

.module-card-highlight::before {
    content: 'NOVO';
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--blue-cyan);
    color: var(--almost-black);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 0 0 6px 6px;
}

.module-result {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-cyan);
    background: rgba(26, 158, 173, 0.08);
    border: 1px solid rgba(26, 158, 173, 0.2);
    border-radius: 6px;
    padding: 6px 10px;
    line-height: 1.3;
}

.module-result svg {
    flex-shrink: 0;
    color: var(--blue-cyan);
}

/* HELP DESK */
.section-helpdesk {
    background: var(--gray-1);
}

.helpdesk-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
    margin-top: 56px;
}

.helpdesk-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hd-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hd-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 158, 173, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-petrol);
    flex-shrink: 0;
    border: 1px solid rgba(26, 158, 173, 0.15);
}

.hd-feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--almost-black);
    margin-bottom: 5px;
}

.hd-feature p {
    font-size: 13.5px;
    color: var(--gray-4);
    line-height: 1.65;
}

/* Mockup */
.helpdesk-visual {
    position: relative;
    padding-bottom: 80px;
}

.hd-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-2);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hd-mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-1);
}

.hd-mockup-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--almost-black);
}

.hd-new-btn {
    font-size: 11px;
    font-weight: 700;
    background: var(--blue-petrol);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
}

.hd-tabs {
    display: flex;
    gap: 0;
    padding: 0 20px;
    border-bottom: 1px solid var(--gray-1);
}

.hd-tab {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-4);
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.hd-tab.active {
    color: var(--blue-petrol);
    border-bottom-color: var(--blue-cyan);
}

.hd-tickets {
    padding: 4px 0;
}

.hd-ticket {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-1);
    cursor: pointer;
    transition: background 0.15s ease;
}

.hd-ticket:last-child { border-bottom: none; }

.hd-ticket:hover { background: var(--gray-1); }

.hd-ticket-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hd-ticket-status {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.hd-ticket-status.open     { background: rgba(26,158,173,0.1); color: var(--blue-petrol); }
.hd-ticket-status.progress { background: rgba(245,158,11,0.12); color: #92400E; }
.hd-ticket-status.resolved { background: rgba(16,185,129,0.1); color: #065F46; }

.hd-ticket-info {
    min-width: 0;
}

.hd-ticket-info strong {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--almost-black);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hd-ticket-info span {
    font-size: 11px;
    color: var(--gray-4);
}

/* Chat card */
.hd-chat-card {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 250px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-2);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hd-chat-header {
    background: var(--blue-dark);
    padding: 12px 14px;
}

.hd-chat-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hd-agent-avatar {
    width: 30px;
    height: 30px;
    background: var(--blue-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.hd-agent-name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.hd-agent-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255,255,255,0.6);
}

.hd-status-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hd-chat-messages {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hd-msg { display: flex; }

.hd-msg-bubble {
    font-size: 12px;
    line-height: 1.45;
    padding: 8px 11px;
    border-radius: 10px;
    max-width: 85%;
}

.hd-msg-agent .hd-msg-bubble {
    background: var(--gray-1);
    color: var(--almost-black);
    border-bottom-left-radius: 3px;
}

.hd-msg-user {
    justify-content: flex-end;
}

.hd-msg-user .hd-msg-bubble {
    background: var(--blue-petrol);
    color: var(--white);
    border-bottom-right-radius: 3px;
}

.hd-chat-sla {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    color: var(--gray-4);
    padding: 8px 14px 10px;
    border-top: 1px solid var(--gray-1);
}

.hd-chat-sla svg { color: var(--blue-cyan); flex-shrink: 0; }
.hd-chat-sla strong { color: var(--almost-black); }

/* FINANCE */
.finance-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.finance-dashboard {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-2);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.fin-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-2);
}

.fin-dash-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--almost-black);
}

.fin-dash-tabs {
    display: flex;
    gap: 4px;
    background: var(--gray-1);
    padding: 3px;
    border-radius: 8px;
}

.fin-tab {
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    color: var(--gray-4);
    cursor: pointer;
    transition: all 0.2s;
}

.fin-tab.active {
    background: var(--white);
    color: var(--almost-black);
    box-shadow: var(--shadow-sm);
}

.fin-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 20px;
}

.fin-kpi {
    padding: 12px;
    background: var(--gray-1);
    border-radius: var(--radius-sm);
}

.fin-kpi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.fin-kpi-label {
    font-size: 11px;
    color: var(--gray-4);
}

.fin-kpi-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.fin-kpi-badge.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.fin-kpi-badge.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.fin-kpi-value {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--almost-black);
    margin-bottom: 8px;
}

.fin-kpi-bar {
    height: 4px;
    background: var(--gray-2);
    border-radius: 2px;
    overflow: hidden;
}

.fin-kpi-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gradient-main);
    transition: width 1s ease;
}

.fin-kpi-fill.expense { background: #EF4444; }
.fin-kpi-fill.profit { background: #10B981; }
.fin-kpi-fill.low { background: #10B981; }

.fin-chart-area {
    padding: 0 20px 20px;
}

.fin-chart-header {
    padding: 12px 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--almost-black);
}

.fin-chart-visual {
    position: relative;
}

.fin-line-chart {
    width: 100%;
    height: 120px;
}

.fin-chart-labels {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    font-size: 9px;
    color: var(--gray-3);
}

/* FINANCE FEATURES */
.finance-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fin-feature {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.fin-feature:hover {
    background: var(--gray-1);
    border-color: var(--gray-2);
}

.fin-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 158, 173, 0.08);
    border-radius: var(--radius-sm);
    color: var(--blue-cyan);
}

.fin-feature h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--almost-black);
    margin-bottom: 4px;
}

.fin-feature p {
    font-size: 13px;
    color: var(--gray-4);
    line-height: 1.5;
}

/* AI SECTION */
.section-ai {
    background: var(--almost-black);
    position: relative;
    overflow: hidden;
}

.section-ai::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(26, 158, 173, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ai-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.section-ai .section-tag {
    background: rgba(26, 158, 173, 0.15);
    border-color: rgba(26, 158, 173, 0.25);
}

.section-ai .section-title {
    color: var(--white);
}

.section-ai .section-desc {
    color: var(--gray-3);
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.ai-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ai-feature-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--blue-cyan);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 158, 173, 0.1);
    border-radius: 8px;
}

.ai-feature-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.ai-feature-item p {
    font-size: 13px;
    color: var(--gray-3);
    line-height: 1.6;
}

/* AI DEMO CARD */
.ai-demo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.ai-demo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-cyan);
}

.ai-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse 2s ease-in-out infinite;
}

.ai-demo-body {
    padding: 20px;
}

.ai-transcript {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-transcript-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ai-speaker {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-speaker.doctor { color: var(--blue-cyan); }
.ai-speaker.patient { color: var(--gray-3); }

.ai-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-style: italic;
}

.ai-analysis {
    background: rgba(26, 158, 173, 0.06);
    border: 1px solid rgba(26, 158, 173, 0.12);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.ai-analysis-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.ai-tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.ai-tag.high {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #F87171;
}

.ai-suggestion {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-suggestion-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--blue-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ai-suggestion-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.ai-demo-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11px;
    color: var(--gray-3);
}

.ai-typing-indicator {
    display: flex;
    gap: 3px;
}

.ai-typing-indicator span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue-cyan);
    animation: typing 1.4s ease-in-out infinite;
}

.ai-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

/* SHOWCASE */
.section-showcase {
    background: var(--gray-1);
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.showcase-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-4);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.showcase-tab:hover {
    border-color: var(--blue-cyan);
    color: var(--blue-petrol);
}

.showcase-tab.active {
    background: var(--gradient-main);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(26, 158, 173, 0.3);
}

.showcase-tab.active svg {
    stroke: var(--white);
}

.showcase-content {
    position: relative;
}

.showcase-app-frame {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-2);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    min-height: 440px;
}

/* APP SIDEBAR */
.sc-sidebar {
    width: 210px;
    flex-shrink: 0;
    background: #0B1829;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.sc-sb-brand {
    padding: 18px 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-sb-logo {
    width: auto;
    height: 28px;
    filter: brightness(0) invert(1);
}

.sc-sb-tagline {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue-cyan);
    line-height: 1.2;
}

.sc-sb-user {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-sb-avatar {
    width: 28px;
    height: 28px;
    background: var(--blue-petrol);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.sc-sb-userinfo {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sc-sb-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}

.sc-sb-role {
    font-size: 9px;
    font-weight: 600;
    color: var(--blue-cyan);
    letter-spacing: 0.06em;
}

.sc-sb-search {
    margin: 10px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
}

.sc-sb-nav {
    flex: 1;
    padding: 4px 0;
    overflow-y: auto;
}

.sc-sb-nav::-webkit-scrollbar { display: none; }

.sc-sb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.sc-sb-module {
    justify-content: space-between;
}

.sc-sb-module svg {
    flex-shrink: 0;
    opacity: 0.4;
}

.sc-sb-dashboard {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    letter-spacing: 0.02em;
}

.sc-sb-item.active {
    background: var(--blue-petrol);
    color: var(--white);
    border-radius: 0;
}

.sc-sb-item.active svg {
    opacity: 1;
}

.sc-sb-dashboard.active {
    background: rgba(26, 158, 173, 0.2);
    color: var(--blue-cyan);
    border-radius: 6px;
    margin: 0 8px;
    padding: 9px 10px;
}

.sc-sb-module.active {
    background: rgba(26, 158, 173, 0.12);
    color: var(--blue-cyan);
}

.sc-sb-footer {
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
}

/* PANELS AREA */
.sc-panels-area {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.showcase-panel {
    display: none;
    height: 100%;
}

.showcase-panel.active {
    display: flex;
    flex-direction: column;
    animation: fadeUp 0.3s ease;
}

.showcase-screen {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-2);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.sc-header, .sc-calendar, .sc-prontuario, .sc-analytics, .sc-reports {
    padding-left: 20px;
    padding-right: 20px;
}

.sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-2);
}

.sc-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--almost-black);
}

.sc-actions {
    display: flex;
    gap: 8px;
}

.sc-btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    background: var(--gradient-main);
    color: var(--white);
}

.sc-btn.outline {
    background: transparent;
    color: var(--gray-4);
    border: 1px solid var(--gray-2);
}

/* CALENDAR */
.sc-calendar {
    padding: 20px 24px;
}

.sc-cal-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.sc-cal-header span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-4);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-cal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.sc-cal-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-slot {
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 1.4;
    border: 1px solid transparent;
}

.sc-slot.empty {
    background: var(--gray-1);
    color: var(--gray-3);
    border: 1px dashed var(--gray-2);
}

.sc-slot.filled {
    color: var(--white);
    font-weight: 500;
}

.sc-slot.filled small {
    opacity: 0.8;
}

.sc-slot.filled.blue { background: var(--blue-petrol); }
.sc-slot.filled.green { background: #10B981; }
.sc-slot.filled.orange { background: #F59E0B; }

/* PRONTUÁRIO */
.sc-prontuario {
    padding: 20px 24px;
}

.sc-patient-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--gray-2);
}

.sc-patient-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.sc-patient-info strong {
    display: block;
    font-size: 14px;
    color: var(--almost-black);
}

.sc-patient-info span {
    font-size: 12px;
    color: var(--gray-4);
}

.sc-medical-records {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-record {
    padding: 16px;
    background: var(--gray-1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--blue-cyan);
}

.sc-record.older {
    opacity: 0.7;
    border-left-color: var(--gray-3);
}

.sc-record-date {
    font-size: 11px;
    color: var(--gray-4);
    margin-bottom: 2px;
}

.sc-record-type {
    font-size: 13px;
    font-weight: 700;
    color: var(--almost-black);
    margin-bottom: 8px;
}

.sc-record-content p {
    font-size: 12px;
    color: var(--gray-4);
    line-height: 1.6;
    margin-bottom: 4px;
}

.sc-record-content strong {
    color: var(--almost-black);
}

.sc-record-tags {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.sc-tag {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    background: rgba(26, 158, 173, 0.08);
    color: var(--blue-petrol);
}

.sc-tag.ai-generated {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

/* ANALYTICS */
.sc-analytics {
    padding: 20px 24px;
}

.sc-analytics-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.sc-akpi {
    padding: 14px;
    background: var(--gray-1);
    border-radius: var(--radius-sm);
    text-align: center;
}

.sc-akpi-val {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--almost-black);
}

.sc-akpi-label {
    display: block;
    font-size: 11px;
    color: var(--gray-4);
    margin-top: 2px;
}

.sc-akpi-change {
    display: inline-block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.sc-akpi-change.up {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.sc-analytics-charts {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.sc-achart {
    padding: 16px;
    background: var(--gray-1);
    border-radius: var(--radius-sm);
}

.sc-achart-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--almost-black);
    margin-bottom: 14px;
}

.sc-horizontal-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc-hbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-hbar-label {
    font-size: 11px;
    color: var(--gray-4);
    min-width: 90px;
}

.sc-hbar-track {
    flex: 1;
    height: 8px;
    background: var(--gray-2);
    border-radius: 4px;
    overflow: hidden;
}

.sc-hbar-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 4px;
}

.sc-hbar-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--almost-black);
    min-width: 30px;
    text-align: right;
}

.sc-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
}

.sc-mbar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.sc-mbar-fill {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: var(--blue-ice);
    height: var(--h);
    transition: height 0.5s ease;
}

.sc-mbar-fill.accent {
    background: var(--gradient-main);
}

.sc-mbar span {
    margin-top: 6px;
    font-size: 10px;
    color: var(--gray-4);
}

/* REPORTS */
.sc-reports {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sc-report-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--gray-1);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.sc-report-item:hover {
    background: rgba(26, 158, 173, 0.04);
}

.sc-report-icon {
    color: var(--blue-cyan);
}

.sc-report-info {
    flex: 1;
}

.sc-report-info strong {
    display: block;
    font-size: 13px;
    color: var(--almost-black);
}

.sc-report-info span {
    font-size: 11px;
    color: var(--gray-4);
}

.sc-report-status {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sc-report-status.ready {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.sc-report-status.processing {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    background-image: linear-gradient(90deg, rgba(245,158,11,0.1) 0%, rgba(245,158,11,0.2) 50%, rgba(245,158,11,0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

/* INTEGRATIONS */
.integrations-visual {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.integrations-hub {
    position: relative;
    width: 360px;
    height: 360px;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hub-logo {
    width: auto;
    height: 72px;
    filter: drop-shadow(0 4px 12px rgba(26, 158, 173, 0.3));
}

.hub-connections {
    position: absolute;
    inset: 0;
}

.hub-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hub-node-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transform: translate(
        calc(cos(var(--angle)) * var(--dist)),
        calc(sin(var(--angle)) * var(--dist))
    );
    transition: all 0.3s ease;
    z-index: 1;
}

.hub-node-inner:hover {
    transform: translate(
        calc(cos(var(--angle)) * var(--dist)),
        calc(sin(var(--angle)) * var(--dist))
    ) translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 158, 173, 0.3);
}

.hub-node-inner svg {
    color: var(--blue-cyan);
}

.hub-node-inner span {
    font-size: 11px;
    font-weight: 600;
    color: var(--almost-black);
    white-space: nowrap;
}

.hub-line {
    display: none;
}

/* SECURITY */
.security-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.security-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.security-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.security-item:hover {
    background: var(--gray-1);
    border-color: var(--gray-2);
}

.security-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 158, 173, 0.08);
    border-radius: var(--radius-sm);
    color: var(--blue-cyan);
}

.security-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--almost-black);
    margin-bottom: 4px;
}

.security-item p {
    font-size: 13px;
    color: var(--gray-4);
    line-height: 1.5;
}

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

.security-shield {
    position: relative;
    width: 240px;
    height: 240px;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(26, 158, 173, 0.15);
}

.shield-ring.ring-1 {
    width: 240px;
    height: 240px;
    animation: ringPulse 4s ease-in-out infinite;
}

.shield-ring.ring-2 {
    width: 180px;
    height: 180px;
    animation: ringPulse 4s ease-in-out infinite 0.5s;
    border-color: rgba(26, 158, 173, 0.25);
}

.shield-ring.ring-3 {
    width: 120px;
    height: 120px;
    animation: ringPulse 4s ease-in-out infinite 1s;
    border-color: rgba(26, 158, 173, 0.35);
}

.shield-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26, 158, 173, 0.4);
    z-index: 1;
}

/* BENEFITS */
.section-benefits {
    background: var(--gray-1);
}

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

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-2);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 158, 173, 0.2);
}

.benefit-metric {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-metric svg {
    stroke: var(--blue-cyan);
}

.benefit-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--almost-black);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--gray-4);
    line-height: 1.6;
}

/* CTA */
.section-cta {
    background: var(--almost-black);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--blue-petrol);
    opacity: 0.12;
    top: -200px;
    left: -100px;
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--blue-cyan);
    opacity: 0.1;
    bottom: -200px;
    right: -100px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--gray-3);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* FOOTER */
.footer {
    background: var(--almost-black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-4);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--gray-4);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--blue-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom span {
    font-size: 13px;
    color: var(--gray-4);
}

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

.footer-social a {
    color: var(--gray-4);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--blue-cyan);
}

/* ================================================
   DEMO NAV BADGE
   ================================================ */

.btn-demo-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.22);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-demo-nav:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: #10B981;
    transform: translateY(-1px);
}

.demo-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* ================================================
   DEMO INTERATIVA SECTION
   ================================================ */

.section-demo {
    background: var(--almost-black);
    position: relative;
    overflow: hidden;
}

.demo-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.demo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}

.demo-orb-1 {
    width: 700px;
    height: 700px;
    background: var(--blue-cyan);
    opacity: 0.07;
    top: -280px;
    right: -180px;
}

.demo-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--blue-petrol);
    opacity: 0.1;
    bottom: -200px;
    left: -150px;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.demo-content .section-title,
.demo-section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 16px;
}

/* LEFT copy */
.demo-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10B981;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.demo-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 7px rgba(16, 185, 129, 0.9);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.demo-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 0;
}

.demo-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0 36px;
}

.demo-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.demo-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(26, 158, 173, 0.12);
    border: 1px solid rgba(26, 158, 173, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-cyan);
}

.demo-main-cta {
    font-size: 15px;
    padding: 16px 32px;
    gap: 10px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 40px rgba(26, 158, 173, 0.38);
}

.demo-main-cta:hover {
    box-shadow: 0 6px 52px rgba(26, 158, 173, 0.55) !important;
    transform: translateY(-2px) !important;
}

.demo-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 0;
    margin-top: 20px;
}

.demo-trust-row span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

.demo-trust-row svg { color: var(--blue-cyan); opacity: 0.6; }

.demo-trust-sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.15) !important;
    font-size: 14px !important;
}

/* RIGHT visual */
.demo-visual {
    position: relative;
}

.demo-window {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.07);
    background: #0B1829;
}

.demo-win-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #0D1E31;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-win-dots {
    display: flex;
    gap: 6px;
}

.demo-win-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-win-dots span:nth-child(1) { background: #FF5F56; }
.demo-win-dots span:nth-child(2) { background: #FFBD2E; }
.demo-win-dots span:nth-child(3) { background: #27CA40; }

.demo-win-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.demo-win-tag {
    background: rgba(26, 158, 173, 0.18);
    border: 1px solid rgba(26, 158, 173, 0.3);
    color: var(--blue-cyan);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Screen area */
.demo-screens-area {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.demo-screen-slide {
    position: absolute;
    inset: 0;
    padding: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.demo-screen-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Gradient overlay + enter button */
.demo-screen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to top, #0B1829 0%, rgba(11, 24, 41, 0.82) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    z-index: 10;
    pointer-events: none;
}

.demo-screen-overlay a {
    pointer-events: auto;
}

.demo-enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.demo-enter-btn:hover {
    background: rgba(26, 158, 173, 0.28);
    border-color: rgba(26, 158, 173, 0.55);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 158, 173, 0.3);
}

/* Footer with indicators */
.demo-win-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #0D1E31;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-indicators {
    display: flex;
    gap: 5px;
}

.demo-ind {
    height: 3px;
    width: 18px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.35s ease;
}

.demo-ind.active {
    width: 30px;
    background: var(--blue-cyan);
}

.demo-screen-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.28);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

/* App shell inside each screen */
.demo-app-shell {
    display: flex;
    height: 100%;
    gap: 10px;
}

.demo-app-sidebar {
    width: 32px;
    flex-shrink: 0;
    background: #0D1A2B;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 5px;
}

.demo-app-sb-item {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.25);
    transition: all 0.2s;
}

.demo-app-sb-item.active {
    background: rgba(26, 158, 173, 0.22);
    color: var(--blue-cyan);
}

.demo-app-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-app-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.demo-app-date {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.28);
}

/* KPI row */
.demo-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.demo-kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-kpi-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.38);
}

.demo-kpi-val {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
}

.demo-kpi-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    align-self: flex-start;
    margin-top: 1px;
}

/* Bar chart */
.demo-chart-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 7px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-chart-lbl {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.02em;
}

.demo-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    flex: 1;
    height: 80px;
}

.demo-bar {
    flex: 1;
    background: rgba(26, 158, 173, 0.18);
    border-radius: 3px 3px 0 0;
    height: var(--h);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 4px;
}

.demo-bar-accent {
    background: var(--gradient-main) !important;
    box-shadow: 0 0 14px rgba(26, 158, 173, 0.45);
}

.demo-bar span {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
}

/* Agenda */
.demo-agenda-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    flex: 1;
}

.demo-agenda-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.demo-agenda-day {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    letter-spacing: 0.06em;
    padding-bottom: 3px;
}

.demo-ag-slot {
    padding: 5px 4px 4px;
    border-radius: 4px;
    font-size: 8px;
    line-height: 1.45;
    font-weight: 500;
}

.demo-ag-slot small { opacity: 0.75; font-weight: 400; }

.demo-ag-slot.blue   { background: rgba(15, 110, 130, 0.65); color: #C8E8F0; }
.demo-ag-slot.green  { background: rgba(16, 185, 129, 0.22); color: #6EE7B7; }
.demo-ag-slot.orange { background: rgba(245, 158, 11, 0.22); color: #FCD34D; }
.demo-ag-slot.empty  { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.22); border: 1px dashed rgba(255,255,255,0.09); }

/* Financeiro */
.demo-fin-kpis {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.demo-fin-kpi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 7px;
    padding: 9px;
}

.demo-fin-kpi-lbl {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 2px;
}

.demo-fin-kpi-val {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 6px;
}

.demo-fin-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.demo-fin-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width 1s ease;
}

.demo-fin-profit { background: #10B981 !important; }

.demo-fin-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
}

.demo-fin-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-size: 10px;
}

.demo-fin-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.demo-dot-green { background: #10B981; }
.demo-dot-red   { background: #EF4444; }

.demo-fin-desc {
    flex: 1;
    color: rgba(255, 255, 255, 0.6);
}

.demo-fin-amt {
    font-weight: 700;
    white-space: nowrap;
}

.demo-fin-amt.green { color: #34D399; }
.demo-fin-amt.red   { color: #F87171; }

/* Floating badges */
.demo-float-1,
.demo-float-2 {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(13, 61, 74, 0.18);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

.demo-float-1 {
    top: -16px;
    left: -20px;
    animation: float 7s ease-in-out infinite;
}

.demo-float-2 {
    bottom: 66px;
    right: -20px;
    animation: float 7s ease-in-out infinite;
    animation-delay: -3.5s;
}

.demo-float-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.demo-float-icon.blue  { background: rgba(26, 158, 173, 0.1); color: var(--blue-cyan); }
.demo-float-icon.green { background: rgba(16, 185, 129, 0.1); color: #10B981; }

.demo-float-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--almost-black);
    white-space: nowrap;
}

.demo-float-sub {
    display: block;
    font-size: 10px;
    color: var(--gray-4);
    white-space: nowrap;
}

/* ================================================
   PÁGINA DE VENDAS
   ================================================ */

.page-vendas {
    background: var(--white);
}

/* Hero */
.vendas-hero {
    position: relative;
    padding: 160px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #F8FCFD 0%, var(--white) 100%);
}

.vendas-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.vendas-orb-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--blue-cyan);
    opacity: 0.12;
    border-radius: 50%;
    filter: blur(90px);
    top: -200px;
    right: -100px;
}

.vendas-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--blue-petrol);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(90px);
    bottom: -150px;
    left: -100px;
}

.vendas-hero-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vendas-hero-title {
    font-size: clamp(36px, 4.8vw, 60px);
    font-weight: 800;
    line-height: 1.08;
    margin: 16px 0 20px;
    color: var(--almost-black);
    letter-spacing: -0.02em;
}

.vendas-hero-subtitle {
    font-size: 18px;
    color: var(--gray-4);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* Plan toggle */
.vendas-toggle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.vendas-pricing-hint {
    font-size: 14px;
    color: var(--gray-4);
    text-align: center;
    max-width: 520px;
    margin: 0;
    line-height: 1.55;
}

.vendas-pricing-hint strong {
    color: var(--blue-dark);
}

.vendas-toggle-save-alt {
    background: rgba(26, 158, 173, 0.15);
    color: var(--blue-petrol);
}

.vendas-toggle-btn.active .vendas-toggle-save-alt {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.vendas-toggle {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--gray-2);
    border-radius: 100px;
    padding: 4px;
    box-shadow: var(--shadow-sm);
}

.vendas-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-4);
    cursor: pointer;
    transition: all 0.25s ease;
}

.vendas-toggle-btn.active {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(26, 158, 173, 0.3);
}

.vendas-toggle-save {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.18);
    color: #047857;
    letter-spacing: 0.04em;
}

.vendas-toggle-btn.active .vendas-toggle-save {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

/* Pricing cards */
.section-pricing {
    padding-top: 40px;
}

.planos-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.planos-intro-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.25;
}

.planos-intro-desc {
    font-size: 16px;
    color: var(--gray-4);
    line-height: 1.65;
    margin: 0;
}

.pricing-help-link {
    text-align: center;
    font-size: 14px;
    color: var(--gray-4);
    margin: 24px 0 0;
}

.pricing-help-link a {
    color: var(--blue-dark);
    font-weight: 600;
    text-decoration: none;
}

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

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

.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pricing-plan-tier {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-volume-note {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0 24px;
    padding: 20px 24px;
    background: var(--gray-0);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-md);
}

.pricing-volume-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--gray-4);
    text-align: center;
}

.pricing-volume-item strong {
    font-size: 14px;
    color: var(--navy);
}

.pricing-grid-4 .pricing-total-amount {
    font-size: 48px;
}

.pricing-grid-4 .pricing-plan-desc {
    min-height: 72px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 158, 173, 0.25);
}

.pricing-card-featured {
    background: var(--blue-dark);
    border: 2px solid var(--blue-cyan);
    box-shadow: 0 24px 64px rgba(13, 61, 74, 0.4);
    transform: translateY(-14px);
    color: #fff;
}

.pricing-card-featured:hover {
    transform: translateY(-18px);
    box-shadow: 0 32px 72px rgba(10, 35, 66, 0.55);
}

.pricing-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-cyan);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(26, 158, 173, 0.5);
}

.pricing-card-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-plan-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-plan-tag {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--blue-petrol);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-card-featured .pricing-plan-tag {
    color: var(--blue-ice);
}

.pricing-card-featured .pricing-plan-tier {
    color: rgba(255, 255, 255, 0.55);
}

.pricing-plan-desc {
    font-size: 13.5px;
    color: var(--gray-4);
    line-height: 1.55;
    min-height: 60px;
}

.pricing-card-featured .pricing-plan-desc {
    color: rgba(255, 255, 255, 0.65);
}

/* ── pricing-hero: bloco de preço hero unificado ── */

.pricing-hero {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pricing-savings-pill {
    display: none;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #065F46;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
    letter-spacing: 0.02em;
}

.pricing-card-featured .pricing-savings-pill {
    color: #065F46;
    background: #ECFDF5;
    border: 1px solid #6EE7B7;
}

.pricing-show-discount .pricing-savings-pill {
    display: inline-flex;
}

.pricing-hero-prefix {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-4);
    margin-top: 4px;
}

.pricing-hero-row {
    display: flex;
    align-items: baseline;
    gap: 3px 5px;
    flex-wrap: wrap;
}

.pricing-hero-currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--almost-black);
    line-height: 1;
}

.pricing-total-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: var(--almost-black);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-hero-period {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-4);
    align-self: flex-end;
    padding-bottom: 6px;
}

.pricing-hero-formula {
    font-size: 12.5px;
    color: var(--gray-4);
    margin: 0;
    line-height: 1.45;
}

.pricing-hero-note {
    font-size: 11.5px;
    color: var(--gray-4);
    margin-top: 2px;
}

.pricing-card.pricing-show-discount .pricing-total-amount,
.pricing-card.pricing-show-discount .pricing-hero-currency {
    color: var(--blue-petrol);
}

/* Featured card overrides */
.pricing-card-featured .pricing-total-amount,
.pricing-card-featured .pricing-hero-currency,
.pricing-card-featured.pricing-show-discount .pricing-total-amount,
.pricing-card-featured.pricing-show-discount .pricing-hero-currency {
    color: #fff;
}

.pricing-card-featured .pricing-hero-prefix,
.pricing-card-featured .pricing-hero-period,
.pricing-card-featured .pricing-hero-note {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card-featured .pricing-hero-formula {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card-featured .pricing-card-features {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.pricing-card-featured .pricing-features-label {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card-featured .pricing-features-list li {
    color: #fff;
}

.pricing-card-featured .pricing-feature-text,
.pricing-card-featured .pricing-feature-text strong {
    color: #fff;
}

.pricing-card-featured .pricing-features-list svg {
    color: var(--blue-ice);
    flex-shrink: 0;
}

.pricing-price-compare {
    display: none;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-card.pricing-show-discount .pricing-price-compare {
    display: flex;
}

.pricing-price-from {
    font-size: 14px;
    color: var(--gray-4);
}

.pricing-price-was {
    font-size: 15px;
    color: var(--gray-4);
    text-decoration: line-through;
    text-decoration-color: rgba(220, 38, 38, 0.45);
}

.pricing-discount-pill {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
    letter-spacing: 0.03em;
}

.pricing-card-featured .pricing-discount-pill {
    background: #fff;
    color: var(--blue-dark);
}

.pricing-card-featured .pricing-price-from {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-card-featured .pricing-price-was {
    color: rgba(255, 255, 255, 0.75);
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.pricing-savings {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #047857;
    line-height: 1.4;
}

.pricing-card:not(.pricing-show-discount) .pricing-savings {
    display: none !important;
}

.pricing-card.pricing-show-discount .pricing-amount {
    color: var(--blue-petrol);
}

.pricing-card-featured.pricing-show-discount .pricing-amount {
    color: var(--blue-cyan);
}

.pricing-price-block {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 0;
}

.pricing-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--almost-black);
}

.pricing-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--almost-black);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 14px;
    color: var(--gray-4);
    font-weight: 500;
}

.pricing-price-custom {
    align-items: center;
    min-height: 44px;
}

.pricing-custom-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--almost-black);
    letter-spacing: -0.01em;
}

.pricing-billing {
    font-size: 12px;
    color: var(--gray-4);
    margin-top: -8px;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 13px 20px;
    font-size: 14px;
}

.pricing-card-features {
    border-top: 1px solid var(--gray-1);
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--almost-black);
    line-height: 1.55;
}

.pricing-feature-text {
    flex: 1;
    min-width: 0;
    text-align: left;
    line-height: 1.55;
}

.pricing-features-list svg {
    color: var(--blue-cyan);
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-feature-text strong,
.pricing-features-list strong {
    color: inherit;
    font-weight: 700;
}

/* Implantação (vendas) */
.section-implantacao {
    background: var(--gray-0);
}

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

.implantacao-card {
    background: var(--white);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.implantacao-card-featured {
    border: 2px solid var(--blue-cyan);
    box-shadow: 0 12px 40px rgba(26, 158, 173, 0.12);
}

.implantacao-porte {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue-petrol);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.implantacao-desc {
    font-size: 13px;
    color: var(--gray-4);
    margin: 0;
    line-height: 1.5;
}

.implantacao-price {
    font-size: 15px;
    color: var(--gray-4);
}

.implantacao-price strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--almost-black);
}

.implantacao-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-5);
    line-height: 1.5;
}

.implantacao-list li::before {
    content: "· ";
    color: var(--blue-cyan);
    font-weight: 700;
}

.implantacao-cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
    font-size: 13px;
    color: var(--gray-4);
}

.pricing-disclaimer svg {
    color: var(--blue-cyan);
}

/* ROI section */
.section-roi {
    background: var(--gray-1);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.roi-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-2);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

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

.roi-metric {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}

.roi-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--almost-black);
    margin-bottom: 8px;
}

.roi-card p {
    font-size: 13.5px;
    color: var(--gray-4);
    line-height: 1.6;
}

.roi-callout {
    background: var(--white);
    border: 1px solid var(--gray-2);
    border-left: 4px solid var(--blue-cyan);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.roi-callout-icon {
    width: 52px;
    height: 52px;
    background: rgba(26, 158, 173, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-cyan);
    flex-shrink: 0;
}

.roi-callout-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.roi-callout-body strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--almost-black);
}

.roi-callout-body span {
    font-size: 13px;
    color: var(--gray-4);
    line-height: 1.5;
}

/* Comparison table */
.compare-wrap {
    background: var(--white);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    min-width: 720px;
}

.compare-table th,
.compare-table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--gray-1);
}

.compare-table th {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue-petrol);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #F8FBFC;
    padding-top: 18px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-2);
    position: relative;
}

.compare-feature-col {
    text-align: left !important;
    color: var(--almost-black) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.compare-featured-col {
    background: rgba(26, 158, 173, 0.05) !important;
    color: var(--blue-cyan) !important;
}

.compare-featured-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    color: var(--white);
    background: var(--gradient-main);
    padding: 2px 8px;
    border-radius: 100px;
    margin: 0 auto 6px;
    width: fit-content;
    letter-spacing: 0.06em;
}

.compare-table td:first-child {
    text-align: left;
    color: var(--almost-black);
    font-weight: 500;
}

.compare-table td {
    color: var(--gray-4);
}

.compare-table td strong {
    color: var(--almost-black);
    font-weight: 700;
}

.compare-row-header td {
    background: #F8FBFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px !important;
    font-weight: 800;
    color: var(--blue-petrol) !important;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 12px 18px !important;
    text-align: left !important;
}

.compare-row-highlight td {
    background: rgba(26, 158, 173, 0.06);
}

.compare-row-highlight td:first-child {
    font-weight: 600;
    color: var(--blue-petrol);
}

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

/* FAQ */
.section-faq {
    background: var(--gray-1);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(26, 158, 173, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--almost-black);
    user-select: none;
}

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

.faq-chevron {
    color: var(--blue-cyan);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--gray-4);
    line-height: 1.7;
}

.faq-body a {
    color: var(--blue-petrol);
    text-decoration: underline;
    text-decoration-color: rgba(15, 110, 130, 0.3);
}

/* Contato section */
.section-contato {
    background: var(--almost-black);
    position: relative;
    overflow: hidden;
}

.contato-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contato-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contato-title {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 16px 0 16px;
    letter-spacing: -0.01em;
}

.contato-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.contato-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contato-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all 0.25s ease;
    text-decoration: none;
}

.contato-option:hover {
    background: rgba(26, 158, 173, 0.1);
    border-color: rgba(26, 158, 173, 0.3);
    transform: translateX(4px);
}

.contato-option-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 158, 173, 0.15);
    border-radius: var(--radius-sm);
    color: var(--blue-cyan);
    flex-shrink: 0;
}

.contato-option-icon.contato-icon-blue {
    background: rgba(26, 158, 173, 0.12);
}

.contato-options-single {
    max-width: 100%;
}

.contato-option-whatsapp .contato-option-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.contato-option-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contato-option-body strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.contato-option-body span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.contato-option-arrow {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.25s ease;
}

.contato-option:hover .contato-option-arrow {
    color: var(--blue-cyan);
    transform: translateX(4px);
}

/* Contato form */
.contato-form-wrap {
    position: relative;
}

.contato-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-form-header {
    margin-bottom: 4px;
}

.contato-form-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--almost-black);
    margin-bottom: 6px;
}

.contato-form-header p {
    font-size: 13.5px;
    color: var(--gray-4);
    line-height: 1.5;
}

.contato-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contato-field > span {
    font-size: 12px;
    font-weight: 600;
    color: var(--almost-black);
}

.contato-field input,
.contato-field select {
    padding: 11px 14px;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--almost-black);
    background: var(--white);
    transition: all 0.2s ease;
    outline: none;
}

.contato-field input:focus,
.contato-field select:focus {
    border-color: var(--blue-cyan);
    box-shadow: 0 0 0 3px rgba(26, 158, 173, 0.12);
}

.contato-field input::placeholder { color: var(--gray-3); }

.contato-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contato-submit {
    margin-top: 8px;
    padding: 14px 24px;
    font-size: 15px;
    justify-content: center;
}

.contato-form-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-4);
    text-align: center;
    justify-content: center;
    margin-top: 4px;
}

.contato-form-footer svg { color: var(--blue-cyan); flex-shrink: 0; }

.contato-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contato-form-error {
    font-size: 14px;
    color: #DC2626;
    line-height: 1.5;
    margin: 0;
    padding: 10px 12px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: var(--radius-md);
    display: none;
}

.contato-form-error.show {
    display: block;
}

.contato-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Sent state */
.contato-sent {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.contato-sent.show {
    display: block;
}

.contato-sent.show ~ .contato-form,
.contato-form-wrap:has(.contato-sent.show) .contato-form {
    display: none;
}

.contato-sent-icon {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contato-sent h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--almost-black);
    margin-bottom: 8px;
}

.contato-sent p {
    font-size: 14px;
    color: var(--gray-4);
    line-height: 1.6;
}

.contato-sent a {
    color: var(--blue-petrol);
    text-decoration: underline;
}

/* Responsive for vendas */
@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-volume-note {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .pricing-volume-item {
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .pricing-grid,
    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .implantacao-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .pricing-card-featured {
        transform: none;
    }
    .pricing-card-featured:hover {
        transform: translateY(-3px);
    }
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contato-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .roi-callout {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .vendas-hero { padding: 130px 0 40px; }
    .vendas-toggle {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--radius-md);
        max-width: 100%;
    }
    .vendas-toggle-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    .faq-grid { grid-template-columns: 1fr; }
    .contato-field-row { grid-template-columns: 1fr; }
    .roi-grid { grid-template-columns: 1fr; }
    .roi-callout { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .ai-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .security-visual {
        order: -1;
    }

    .security-shield {
        width: 200px;
        height: 200px;
    }

    .shield-ring.ring-1 { width: 200px; height: 200px; }
    .shield-ring.ring-2 { width: 150px; height: 150px; }
    .shield-ring.ring-3 { width: 100px; height: 100px; }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .helpdesk-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .helpdesk-visual {
        padding-bottom: 60px;
    }

    .hd-chat-card {
        right: 0;
    }

    .demo-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .demo-float-1 { top: -10px; left: -10px; }
    .demo-float-2 { bottom: 60px; right: -10px; }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px 24px;
        border-bottom: 1px solid var(--gray-2);
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }

    .nav-actions.open {
        display: flex;
        position: absolute;
        top: calc(100% + 180px);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0 24px 20px;
        box-shadow: var(--shadow-lg);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-badges {
        gap: 6px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-proof {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-proof-divider {
        display: none;
    }

    .mockup-mobile {
        display: none;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .sc-sidebar {
        width: 160px;
    }

    .sc-sb-item {
        padding: 8px 12px;
        font-size: 9px;
    }

    .sc-sb-dashboard {
        font-size: 10px;
    }

    .showcase-tabs {
        flex-wrap: wrap;
        gap: 6px;
    }

    .showcase-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .sc-sidebar {
        display: none;
    }

    .sc-cal-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sc-cal-header {
        grid-template-columns: repeat(3, 1fr);
    }

    .sc-cal-header span:nth-child(n+4),
    .sc-cal-col:nth-child(n+4) {
        display: none;
    }

    .sc-analytics-kpis {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-analytics-charts {
        grid-template-columns: 1fr;
    }

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

    .integrations-hub {
        width: 280px;
        height: 280px;
    }

    .hub-node-inner {
        --dist-mobile: 100px;
        transform: translate(
            calc(cos(var(--angle)) * 100px),
            calc(sin(var(--angle)) * 100px)
        );
        padding: 10px;
    }

    .hub-node-inner:hover {
        transform: translate(
            calc(cos(var(--angle)) * 100px),
            calc(sin(var(--angle)) * 100px)
        ) translateY(-4px);
    }

    .hub-node-inner span {
        font-size: 9px;
    }

    .hub-node-inner svg {
        width: 18px;
        height: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .fin-kpis {
        grid-template-columns: 1fr;
    }

    .hd-chat-card {
        position: static;
        width: 100%;
        margin-top: 16px;
        right: auto;
    }

    .helpdesk-visual {
        padding-bottom: 0;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ba-arrow {
        display: none;
    }

    .ba-before {
        border-bottom: none;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .ba-after {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-float-1,
    .demo-float-2 {
        display: none;
    }

    .demo-main-cta {
        width: 100%;
        justify-content: center;
    }

    .btn-demo-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .mockup-kpis {
        grid-template-columns: 1fr;
    }

    .mockup-charts {
        grid-template-columns: 1fr;
    }

    .sc-patient-info {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .integrations-hub {
        width: 240px;
        height: 240px;
    }

    .hub-node-inner {
        transform: translate(
            calc(cos(var(--angle)) * 80px),
            calc(sin(var(--angle)) * 80px)
        );
        padding: 8px;
    }

    .hub-node-inner:hover {
        transform: translate(
            calc(cos(var(--angle)) * 80px),
            calc(sin(var(--angle)) * 80px)
        ) translateY(-4px);
    }

    .hub-node-inner span {
        display: none;
    }

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