/* ============================================
   PRO SALES SOLUTIONS - CSS PREMIUM COMPLETO
   Versão 3.1 — Com Espaçamentos Aprimorados
   ============================================ */

/* ============================================
   1. VARIÁVEIS & TOKENS
   ============================================ */
:root {
    --dark: #050B1F;
    --dark-2: #0C1535;
    --blue-primary: #1A4BFF;
    --blue-deep: #0D33C8;
    --blue-light: #4A7AFF;
    --blue-pale: #EEF3FF;
    --blue-glow: rgba(26, 75, 255, 0.15);
    --accent: #00D4FF;
    --accent-warm: #FF6B35;
    --white: #FFFFFF;
    --off-white: #F8FAFF;
    --surface: #F0F5FF;
    --text-body: #0F1A2E;
    --text-muted: #5A6B8A;
    --text-faint: #8A9BB8;
    --border: rgba(26, 75, 255, 0.10);
    --border-hover: rgba(26, 75, 255, 0.25);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 9rem;
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 20px 50px -12px rgba(0, 0, 0, 0.08);
    --shadow-blue: 0 16px 48px -10px rgba(26, 75, 255, 0.25);
    --shadow-hover: 0 32px 64px -16px rgba(26, 75, 255, 0.18);
    --shadow-glow: 0 0 60px rgba(26, 75, 255, 0.10);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.35s var(--ease-in-out);
    --transition-fast: all 0.18s var(--ease-in-out);
    --transition-slow: all 0.6s var(--ease-out-expo);
    --navbar-height: 80px;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

/* ============================================
   3. LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-lg) 0;
}

.section--large {
    padding: var(--space-xl) 0;
}

.section--pale {
    background: var(--off-white);
}

.section--surface {
    background: var(--surface);
}

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
.heading-display {
    font-weight: 800;
    letter-spacing: -0.035em;
}

.heading-xl {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.heading-md {
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
}

.heading-sm {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.text-lead {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.75;
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent);
}

.text-blue {
    color: var(--blue-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   5. TAGS & BADGES
   ============================================ */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: var(--blue-pale);
    color: var(--blue-primary);
    border-radius: var(--radius-full);
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    border: 1px solid var(--border);
    transition: var(--transition-fast);
}

.tag:hover {
    background: var(--blue-primary);
    color: var(--white);
    border-color: var(--blue-primary);
}

.tag--white {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

/* ============================================
   6. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    outline: none;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s;
    border-radius: inherit;
}

.btn:active::after {
    background: rgba(255, 255, 255, 0.15);
}

.btn--primary {
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: 0 4px 20px -4px rgba(26, 75, 255, 0.40);
}

.btn--primary:hover {
    background: var(--blue-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--white {
    background: var(--white);
    color: var(--blue-primary);
    box-shadow: var(--shadow-card);
}

.btn--white:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.btn--ghost {
    background: transparent;
    border-color: var(--border-hover);
    color: var(--blue-primary);
}

.btn--ghost:hover {
    background: var(--blue-pale);
    border-color: var(--blue-primary);
    transform: translateY(-3px);
}

.btn--lg {
    padding: 18px 44px;
    font-size: 1rem;
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.82rem;
}

.btn .btn-arrow {
    transition: transform 0.25s var(--ease-spring);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   7. SCROLL REVEAL
   ============================================ */
[data-reveal] {
    opacity: 0;
    will-change: opacity, transform;
}

[data-reveal="up"] {
    transform: translateY(50px);
}

[data-reveal="down"] {
    transform: translateY(-30px);
}

[data-reveal="left"] {
    transform: translateX(-50px);
}

[data-reveal="right"] {
    transform: translateX(50px);
}

[data-reveal="scale"] {
    transform: scale(0.88);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].revealed {
    animation: dk-reveal-in var(--reveal-dur, 0.8s) var(--reveal-delay, 0ms) var(--ease-out-expo) both;
}

@keyframes dk-reveal-in {
    to {
        opacity: 1;
        transform: none;
    }
}

[data-stagger]>[data-stagger-child] {
    opacity: 0;
    transform: translateY(32px);
}

[data-stagger].revealed>[data-stagger-child] {
    animation: dk-reveal-in 0.7s var(--ease-out-expo) both;
}

[data-stagger].revealed>[data-stagger-child]:nth-child(1) {
    animation-delay: 0ms;
}
[data-stagger].revealed>[data-stagger-child]:nth-child(2) {
    animation-delay: 80ms;
}
[data-stagger].revealed>[data-stagger-child]:nth-child(3) {
    animation-delay: 160ms;
}
[data-stagger].revealed>[data-stagger-child]:nth-child(4) {
    animation-delay: 240ms;
}
[data-stagger].revealed>[data-stagger-child]:nth-child(5) {
    animation-delay: 320ms;
}

/* ============================================
   8. NAVBAR — Premium
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    padding: 0;
    transition: background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    background: transparent;
}

.navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 40px -12px rgba(0, 0, 0, 0.12);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out-expo);
}

.navbar.is-scrolled .navbar__inner {
    border-bottom-color: var(--border);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.navbar__logo-image {
    height: 120px;
    width: 180px;
    display: block;
    margin-bottom: -13px;
    object-fit: contain;
    transition: transform 0.35s var(--ease-spring), filter 0.3s;
}

.navbar__logo:hover .navbar__logo-image {
    transform: scale(1.03);
}

.navbar__logo-text {
    display: none !important;
}

.navbar__logo-icon {
    display: none !important;
}

.navbar__nav {
    display: flex;
}

.navbar__list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-body);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    width: calc(100% - 32px);
    height: 2.5px;
    background: linear-gradient(90deg, var(--blue-primary), var(--accent));
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out-expo);
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
    transform: scaleX(1);
}

.navbar__link:hover,
.navbar__link.is-active {
    color: var(--blue-primary);
    background: var(--blue-pale);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.navbar__actions::before {
    content: "";
    display: block;
    width: 1px;
    height: 26px;
    background: var(--border);
    margin-right: 0.25rem;
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.25s var(--ease-spring), box-shadow 0.25s;
    box-shadow: 0 4px 16px -4px rgba(37, 211, 102, 0.4);
    white-space: nowrap;
}

.navbar__cta i {
    font-size: 1rem;
}

.navbar__cta:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -6px rgba(37, 211, 102, 0.45);
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--blue-pale);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 0;
    padding: 0;
    flex-shrink: 0;
}

.ham-bar {
    display: block;
    width: 20px;
    height: 2.5px;
    background: var(--blue-primary);
    border-radius: var(--radius-full);
    transition: transform 0.35s var(--ease-out-expo), opacity 0.25s, width 0.3s;
}

.ham-bar+.ham-bar {
    margin-top: 5px;
}

.navbar__hamburger[aria-expanded="true"] .ham-bar--top {
    transform: translateY(7.5px) rotate(45deg);
}

.navbar__hamburger[aria-expanded="true"] .ham-bar--mid {
    opacity: 0;
    width: 0;
}

.navbar__hamburger[aria-expanded="true"] .ham-bar--bot {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   9. MOBILE DRAWER
   ============================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 100vw);
    height: 100dvh;
    background: var(--dark);
    z-index: 490;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 100px 2rem 2rem;
    position: relative;
    z-index: 1;
}

.mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mobile-nav__item {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.mobile-drawer.is-open .mobile-nav__item:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.08s;
}
.mobile-drawer.is-open .mobile-nav__item:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.14s;
}
.mobile-drawer.is-open .mobile-nav__item:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.20s;
}
.mobile-drawer.is-open .mobile-nav__item:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.26s;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.mobile-nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-nav__number {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-faint);
    width: 28px;
}

.mobile-drawer__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease-out-expo) 0.35s, transform 0.4s var(--ease-out-expo) 0.35s;
}

.mobile-drawer.is-open .mobile-drawer__footer {
    opacity: 1;
    transform: none;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 11, 31, 0.55);
    backdrop-filter: blur(6px);
    z-index: 480;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-expo);
}

.drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   10. ANNOUNCEMENT BAR — ESTILO PROFISSIONAL
   ============================================ */
.announcement-bar {
    position: relative;
    z-index: 3;
    background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue-primary) 55%, #2a5bff 100%);
    overflow: hidden;
    padding: 8px 0;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 140% at 15% 50%, rgba(255, 255, 255, 0.14), transparent 70%);
    pointer-events: none;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    padding: 12px 20px;
    position: relative;
    z-index: 1;
}

.announcement-bar__content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.announcement-bar__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    backdrop-filter: blur(4px);
}

.announcement-bar__badge svg {
    stroke: #FFD166;
    fill: none;
    flex-shrink: 0;
}

.announcement-bar__text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.announcement-bar__text strong {
    color: var(--white);
    font-weight: 700;
}

.announcement-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-deep);
    text-decoration: none;
    padding: 8px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-spring);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.announcement-bar__link svg {
    transition: transform 0.3s var(--ease-spring);
    stroke: var(--blue-deep);
}

.announcement-bar__link:hover {
    background: #66c2ff;
    color: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.announcement-bar__link:hover svg {
    transform: translateX(3px);
}

/* ============================================
   11. INVESTMENT HERO — Com espaçamento superior
   ============================================ */
.investment-hero {
    padding: 80px 20px 20px 20px;
    background: linear-gradient(135deg, var(--surface) 0%, var(--white) 100%);
    overflow: hidden;
    position: relative;
}

.investment-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, var(--blue-glow), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.investment-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.investment-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 30px 0 20px;
    position: relative;
    z-index: 1;
}

.investment-hero__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 580px;
}

.investment-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--blue-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    align-self: flex-start;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.investment-hero__tag:hover {
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-blue);
    transform: translateY(-2px);
}

.investment-hero__tag svg {
    stroke: var(--blue-primary);
    width: 12px;
    height: 12px;
}

.investment-hero__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin: 0;
}

.investment-hero__title .gradient-text {
    background: linear-gradient(135deg, var(--blue-primary) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-hero__lead {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 92%;
    margin: 0;
}

.investment-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--blue-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-spring);
    box-shadow: 0 8px 30px -8px rgba(26, 75, 255, 0.40);
    border: none;
    cursor: pointer;
}

.btn-primary svg {
    transition: transform 0.3s var(--ease-spring);
    stroke: currentColor;
    width: 14px;
    height: 14px;
}

.btn-primary:hover {
    background: var(--blue-deep);
    transform: translateY(-3px);
    box-shadow: 0 16px 44px -10px rgba(26, 75, 255, 0.45);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.investment-hero__trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: 2px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
}

.trust-item svg {
    stroke: var(--blue-primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
    flex-shrink: 0;
}

.investment-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 480px;
    background: var(--dark);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease-spring);
}

.visual-card:hover {
    transform: scale(1.01) translateY(-4px);
}

.visual-card__image {
    width: 100%;
    height: 100%;
}

.visual-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-card__floating {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    transition: transform 0.3s var(--ease-spring);
}

.visual-card:hover .visual-card__floating {
    transform: scale(1.05) translateY(-4px);
}

.floating-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
}

.floating-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================
   12. HERO — Home Page
   ============================================ */
.hero--home {
    position: relative;
    padding: calc(var(--navbar-height) + 30px) 0 60px !important;
    min-height: auto !important;
    background: linear-gradient(135deg, rgba(5, 11, 31, 0.88), rgba(5, 11, 31, 0.72)),
        url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=1600&q=80') center/cover no-repeat;
    color: var(--white);
}

.hero--home .hero__title {
    color: var(--white);
}

.hero--home .hero__lead {
    color: rgba(255, 255, 255, 0.88);
}

.hero--home .hero__trust-item strong {
    color: var(--accent);
}

.hero--home .hero__trust-item span {
    color: rgba(255, 255, 255, 0.8);
}

.hero--home .hero__trust-divider {
    background: rgba(255, 255, 255, 0.2);
}

.hero--home .tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero--home .btn--ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.hero--home .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero__glow {
    display: none !important;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px !important;
}

.hero__content {
    max-width: 560px;
}

.hero__title {
    font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 10px !important;
}

.hero__lead {
    font-size: clamp(1rem, 1.2vw, 1.1rem) !important;
    line-height: 1.65;
    max-width: 90% !important;
    margin-bottom: 24px !important;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: 24px !important;
}

.hero__actions .btn {
    padding: 16px 38px !important;
    font-size: 0.95rem !important;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__trust-item strong {
    font-family: var(--font-display);
    font-size: 1.5rem !important;
    font-weight: 800;
    line-height: 1;
}

.hero__trust-item span {
    font-size: 0.8rem !important;
    color: var(--text-muted);
}

.hero__trust-divider {
    display: block;
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

.hero__visual {
    position: relative;
}

.hero__media {
    position: relative;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 16 / 10 !important;
    max-height: 380px !important;
    background: var(--dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero__media .hero-slides {
    position: absolute;
    inset: 0;
}

.hero__media .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s var(--ease-out-expo);
}

.hero__media .slide.active {
    opacity: 1;
}

.hero__media .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(190deg, rgba(5, 11, 31, 0.05) 40%, rgba(5, 11, 31, 0.55) 100%);
}

.hero__badge {
    position: absolute;
    left: -20px !important;
    bottom: 28px !important;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px !important;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-blue);
}

.hero__badge-value {
    font-family: var(--font-display);
    font-size: 1.6rem !important;
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1;
}

.hero__badge-label {
    font-size: 0.7rem !important;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ============================================
   13. HERO INTERNAL — About / Contact
   ============================================ */
.hero-internal {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 11, 31, 0.85), rgba(5, 11, 31, 0.70)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80') center/cover no-repeat;
}

.hero-internal .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 var(--space-md);
}

.hero-internal .hero-content .tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero-internal .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-sm);
}

.hero-internal .hero-content p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    opacity: 0.85;
}

/* Hero Apoio ao Cliente - imagem diferente */
.hero-internal.hero-contact {
    background: linear-gradient(135deg, rgba(5, 11, 31, 0.88), rgba(5, 11, 31, 0.72)),
        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&q=80') center/cover no-repeat;
}

/* ============================================
   14. SIMULATOR
   ============================================ */
.simulator-section {
    padding: var(--space-xl) 0;
    background: var(--off-white);
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.sim-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.sim-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--border-hover);
}

.sim-card h3 {
    color: var(--blue-primary);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.input-group {
    margin-bottom: var(--space-md);
}

.input-group label {
    display: block;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--surface);
    border-radius: var(--radius-full);
    outline: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--blue-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 12px rgba(26, 75, 255, 0.30);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--blue-primary);
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--white);
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.current-val {
    font-weight: 700;
    color: var(--text-body);
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.result-item:last-of-type {
    border-bottom: none;
}

.result-item strong {
    color: var(--blue-primary);
    font-size: 1.1rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.btn-simular {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--blue-primary);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s var(--ease-spring);
    box-shadow: 0 4px 16px -4px rgba(26, 75, 255, 0.35);
    margin-top: var(--space-md);
}

.btn-simular:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* ============================================
   15. INFO BOXES — With Images & Hover
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.info-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.info-box:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.info-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.info-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s;
}

.info-box:hover .info-image {
    transform: scale(1.08);
    filter: brightness(0.92);
}

.info-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 75, 255, 0) 40%, rgba(26, 75, 255, 0.20) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.info-box:hover .info-image-overlay {
    opacity: 1;
}

.info-image-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--blue-primary);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: all 0.4s var(--ease-spring);
}

.info-box:hover .info-image-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.info-content {
    padding: var(--space-md);
}

.info-content h3 {
    color: var(--blue-primary);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
    transition: color 0.3s;
}

.info-box:hover h3 {
    color: var(--blue-deep);
}

.info-content p,
.info-content li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-content ul {
    list-style: none;
    padding: 0;
}

.info-content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.info-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
}

/* ============================================
   16. ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo), filter 0.4s;
}

.about-visual:hover img {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.experience-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--blue-primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-blue);
    transition: transform 0.3s var(--ease-spring);
}

.about-visual:hover .experience-card {
    transform: translateY(-4px) scale(1.03);
}

.experience-card .years {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
}

.experience-card p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.stat-item strong {
    display: block;
    color: var(--blue-primary);
    font-size: 1.6rem;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   17. CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    background: var(--blue-pale);
    padding: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.contact-form h3 {
    color: var(--blue-primary);
    font-size: 1.4rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px var(--blue-glow);
}

/* ============================================
   18. PRODUCTS / SOLUTIONS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
    width: 100%;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s;
}

.product-card:hover .product-image {
    transform: scale(1.08);
    filter: brightness(0.92);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 75, 255, 0) 30%, rgba(26, 75, 255, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.product-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue-primary);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: all 0.4s var(--ease-spring);
}

.product-card:hover .product-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.product-content {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.product-content h4 {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.product-card:hover .product-content h4 {
    color: var(--blue-primary);
}

.product-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.product-content a {
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s var(--ease-spring);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.product-content a:hover {
    gap: 10px;
}

/* ============================================
   19. CHAT ONLINE
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-primary), var(--accent));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(26, 75, 255, 0.35);
    transition: all 0.3s var(--ease-spring);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(26, 75, 255, 0.45);
}

.chat-toggle .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--accent-warm);
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.chat-window {
    width: 380px;
    max-width: 90vw;
    height: 500px;
    max-height: 70vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.4s var(--ease-spring);
}

.chat-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-info .avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.chat-header-info .status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    opacity: 0.85;
}

.chat-header-info .status .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot-chat 1.5s ease-in-out infinite;
}

@keyframes pulse-dot-chat {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.chat-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--off-white);
}

.chat-messages .message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.92rem;
    line-height: 1.5;
    animation: messageIn 0.3s var(--ease-spring);
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-messages .message.bot {
    background: var(--white);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: var(--text-body);
}

.chat-messages .message.bot .time {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

.chat-messages .message.user {
    background: var(--blue-primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-messages .message.user .time {
    font-size: 0.6rem;
    opacity: 0.7;
    margin-top: 4px;
    display: block;
}

.chat-messages .typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    max-width: 60px;
}

.chat-messages .typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.chat-messages .typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}
.chat-messages .typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.chat-input-area {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    background: var(--white);
    flex-shrink: 0;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(26, 75, 255, 0.08);
}

.chat-input-area button {
    padding: 10px 20px;
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s var(--ease-spring);
    white-space: nowrap;
}

.chat-input-area button:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
}

.chat-input-area button:active {
    transform: scale(0.95);
}

/* ============================================
   20. FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-lg) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    display: block;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s, transform 0.3s;
}

.footer-logo-image:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.footer h3 {
    display: none !important;
}

.footer a {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--blue-light));
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out-expo);
}

.footer a:hover {
    color: var(--accent);
}

.footer a:hover::after {
    transform: scaleX(1);
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li i {
    width: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-md) 0;
    text-align: center;
    opacity: 0.5;
    font-size: 0.85rem;
}

/* ============================================
   21. BACK TO TOP
   ============================================ */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 800;
    box-shadow: var(--shadow-blue);
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-spring);
    pointer-events: none;
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#back-to-top:hover {
    background: var(--blue-deep);
    transform: translateY(-3px) scale(1.06);
}

#back-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ============================================
   22. PAGE LOADER
   ============================================ */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo-image {
    height: 300px;
    width: auto;
    object-fit: contain;
    opacity: 0;
    animation: loader-brand-in 0.6s 0.1s var(--ease-out-expo) forwards;
}

@keyframes loader-brand-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   23. PAGE TRANSITION
   ============================================ */
#page-transition {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 8888;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.55s var(--ease-out-expo);
}

#page-transition.transitioning {
    clip-path: inset(0 0 0% 0);
    pointer-events: all;
}

#page-transition.revealing {
    clip-path: inset(100% 0 0 0);
}

/* ============================================
   24. UTILITIES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    z-index: 9999;
    background: var(--blue-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.section-divider {
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--accent));
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.float {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

/* ============================================
   24b. HOVER EFFECTS NO MODO MOBILE
   Replica os mesmos efeitos de hover do desktop
   para imagens, cards e links do footer também
   no modo mobile — tanto por toque (tap) quanto
   por cursor real (notebooks 2-em-1, tablets
   com mouse/trackpad, etc). Usa max-width em vez
   de depender apenas de "hover: none" para
   garantir que funcione em qualquer dispositivo
   dentro da faixa mobile.
   ============================================ */
@media (max-width: 900px) {

    /* ---- Info boxes (cards com imagem) ---- */
    .info-box:hover,
    .info-box:active,
    .info-box:focus-within {
        border-color: var(--border-hover);
        box-shadow: var(--shadow-hover);
        transform: translateY(-6px);
    }

    .info-box:hover .info-image,
    .info-box:active .info-image,
    .info-box:focus-within .info-image {
        transform: scale(1.08);
        filter: brightness(0.92);
    }

    .info-box:hover .info-image-overlay,
    .info-box:active .info-image-overlay,
    .info-box:focus-within .info-image-overlay {
        opacity: 1;
    }

    .info-box:hover .info-image-icon,
    .info-box:active .info-image-icon,
    .info-box:focus-within .info-image-icon {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .info-box:hover h3,
    .info-box:active h3,
    .info-box:focus-within h3 {
        color: var(--blue-deep);
    }

    /* ---- Product cards (cards com imagem) ---- */
    .product-card:hover,
    .product-card:active,
    .product-card:focus-within {
        border-color: var(--blue-primary);
        box-shadow: var(--shadow-hover);
        transform: translateY(-6px);
    }

    .product-card:hover .product-image,
    .product-card:active .product-image,
    .product-card:focus-within .product-image {
        transform: scale(1.08);
        filter: brightness(0.92);
    }

    .product-card:hover .product-image-overlay,
    .product-card:active .product-image-overlay,
    .product-card:focus-within .product-image-overlay {
        opacity: 1;
    }

    .product-card:hover .product-icon,
    .product-card:active .product-icon,
    .product-card:focus-within .product-icon {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    .product-card:hover .product-content h4,
    .product-card:active .product-content h4,
    .product-card:focus-within .product-content h4 {
        color: var(--blue-primary);
    }

    /* ---- Visual card (imagem do hero de investimento) ---- */
    .visual-card:hover,
    .visual-card:active {
        transform: scale(1.01) translateY(-4px);
    }

    .visual-card:hover .visual-card__floating,
    .visual-card:active .visual-card__floating {
        transform: scale(1.05) translateY(-4px);
    }

    /* ---- About visual (imagem da seção sobre) ---- */
    .about-visual:hover img,
    .about-visual:active img,
    .about-visual:focus-within img {
        transform: scale(1.03);
        filter: brightness(0.95);
    }

    .about-visual:hover .experience-card,
    .about-visual:active .experience-card,
    .about-visual:focus-within .experience-card {
        transform: translateY(-4px) scale(1.03);
    }

    /* ---- Sim card ---- */
    .sim-card:hover,
    .sim-card:active {
        box-shadow: var(--shadow-hover);
        border-color: var(--border-hover);
    }

    /* ---- Logo do footer ---- */
    .footer-logo-image:hover,
    .footer-logo-image:active {
        border-color: var(--accent);
        transform: scale(1.02);
    }

    /* ---- Logo da navbar ---- */
    .navbar__logo:hover .navbar__logo-image,
    .navbar__logo:active .navbar__logo-image {
        transform: scale(1.03);
    }

    /* ---- Links do footer - barra sob o link ---- */
    .footer a:hover,
    .footer a:active,
    .footer a:focus-visible {
        color: var(--accent);
    }

    .footer a:hover::after,
    .footer a:active::after,
    .footer a:focus-visible::after {
        transform: scaleX(1);
    }
}

/* ============================================
   25. RESPONSIVE — Espaçamentos Aprimorados
   ============================================ */
@media (max-width: 1100px) {
    .navbar__tel {
        display: none;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .investment-hero__grid {
        gap: 30px;
        padding: 25px 0;
    }

    .investment-hero__title {
        font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    }
}

@media (max-width: 992px) {
    .navbar__logo-image {
        height: 70px;
        width: 115px;
        margin-bottom: -9px;
    }

    .investment-hero {
        padding: 80px 16px 16px 16px;
    }

    .investment-hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0 10px;
    }

    .investment-hero__content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .investment-hero__tag {
        align-self: center;
    }

    .investment-hero__lead {
        max-width: 100%;
    }

    .investment-hero__actions {
        justify-content: center;
    }

    .investment-hero__trust {
        justify-content: center;
    }

    .visual-card {
        max-width: 420px;
        margin: 0 auto;
        aspect-ratio: 16/9;
    }

    .announcement-bar {
        padding: 6px 0;
    }

    .announcement-bar__inner {
        padding: 10px 16px;
        gap: 10px;
    }

    .hero--home {
        padding: calc(var(--navbar-height) + 20px) 0 40px !important;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 35px !important;
    }

    .hero__visual {
        order: -1;
    }

    .hero__media {
        max-height: 300px !important;
        aspect-ratio: 16/9 !important;
    }

    .hero__badge {
        left: 16px !important;
        bottom: 16px !important;
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__lead {
        max-width: 100% !important;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .navbar__nav,
    .navbar__actions {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .navbar__inner {
        height: 64px;
    }

    body {
        padding-top: 64px;
    }
}

@media (max-width: 768px) {
    .navbar__logo-image {
        height: 70px;
        width: 95px;
        margin-bottom: -6px;
    }

    .footer-logo-image {
        height: 60px;
        border-radius: 8px;
        padding: 3px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .section,
    .section--large {
        padding: var(--space-md) 0;
    }

    .investment-hero {
        padding: 70px 12px 12px 12px;
    }

    .investment-hero__grid {
        gap: 24px;
        padding: 16px 0 8px;
    }

    .investment-hero__title {
        font-size: clamp(1.6rem, 4.5vw, 2rem);
    }

    .investment-hero__lead {
        font-size: 0.95rem;
    }

    .investment-hero__trust {
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
        padding-top: 12px;
    }

    .trust-divider {
        display: none;
    }

    .btn-primary {
        padding: 11px 24px;
        font-size: 0.82rem;
        width: 100%;
        justify-content: center;
    }

    .investment-hero__actions {
        width: 100%;
        flex-direction: column;
    }

    .visual-card {
        max-width: 100%;
        aspect-ratio: 16/9;
    }

    .visual-card__floating {
        padding: 10px 14px;
        bottom: 12px;
        left: 12px;
    }

    .floating-number {
        font-size: 1.2rem;
    }

    .floating-label {
        font-size: 0.55rem;
    }

    /* ANNOUNCEMENT BAR - Mobile com mais espaço */
    .announcement-bar {
        padding: 10px 0;
    }

    .announcement-bar__inner {
        padding: 14px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .announcement-bar__content {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .announcement-bar__text {
        font-size: 0.85rem;
        text-align: center;
        width: 100%;
    }

    .announcement-bar__badge {
        font-size: 0.62rem;
        padding: 4px 12px;
    }

    .announcement-bar__link {
        font-size: 0.78rem;
        padding: 8px 20px;
        width: 100%;
        justify-content: center;
    }

    .hero--home {
        padding: calc(var(--navbar-height) + 16px) 0 30px !important;
    }

    .hero__title {
        font-size: 2rem !important;
    }

    .hero__media {
        max-height: 240px !important;
    }

    .hero__badge {
        padding: 12px 18px !important;
    }

    .hero__badge-value {
        font-size: 1.3rem !important;
    }

    .hero__trust-item strong {
        font-size: 1.2rem !important;
    }

    .about-visual img {
        height: 280px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .simulator-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        bottom: -10px;
        right: 10px;
        padding: 15px 25px;
    }

    .mobile-drawer {
        width: 100vw;
    }

    #back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 44px;
        height: 44px;
    }

    .info-box .info-image-wrapper {
        height: 150px;
    }

    .info-box .info-content {
        padding: var(--space-sm);
    }

    .info-box .info-image-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 12px;
        right: 12px;
    }

    .product-card .product-image-wrapper {
        height: 160px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-toggle {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .chat-window {
        width: calc(100vw - 40px);
        height: 400px;
        max-height: 60vh;
        position: fixed;
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 600px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-wrap: wrap;
        row-gap: var(--space-sm);
        justify-content: center;
    }

    .hero__badge {
        padding: 14px 18px;
        left: 16px;
    }

    .hero__badge-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .navbar__logo-image {
        height: 62px;
        width: 82px;
    }

    .footer-logo-image {
        height: 48px;
    }

    .investment-hero {
        padding: 60px 8px 8px 8px;
    }

    .investment-hero__grid {
        gap: 16px;
        padding: 12px 0 4px;
    }

    .investment-hero__title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }

    .investment-hero__lead {
        font-size: 0.85rem;
    }

    .investment-hero__tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .investment-hero__tag svg {
        width: 10px;
        height: 10px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.78rem;
    }

    .visual-card {
        aspect-ratio: 4/3;
    }

    .visual-card__floating {
        padding: 8px 12px;
        bottom: 10px;
        left: 10px;
    }

    .floating-number {
        font-size: 1rem;
    }

    .floating-label {
        font-size: 0.5rem;
    }

    .trust-item {
        font-size: 0.7rem;
        gap: 5px;
    }

    .trust-item svg {
        width: 12px;
        height: 12px;
    }

    /* ANNOUNCEMENT BAR - Mobile pequeno */
    .announcement-bar {
        padding: 8px 0;
    }

    .announcement-bar__inner {
        padding: 12px 12px;
        gap: 8px;
    }

    .announcement-bar__badge {
        font-size: 0.58rem;
        padding: 3px 10px;
    }

    .announcement-bar__text {
        font-size: 0.78rem;
    }

    .announcement-bar__link {
        font-size: 0.72rem;
        padding: 6px 16px;
    }

    .hero--home {
        padding: calc(var(--navbar-height) + 12px) 0 24px !important;
    }

    .hero__title {
        font-size: 1.6rem !important;
    }

    .hero__lead {
        font-size: 0.88rem !important;
    }

    .hero__actions .btn {
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
    }

    .hero__media {
        max-height: 200px !important;
    }

    .hero__badge {
        padding: 10px 14px !important;
        bottom: 12px !important;
        left: 12px !important;
    }

    .hero__badge-value {
        font-size: 1.1rem !important;
    }

    .hero__badge-label {
        font-size: 0.6rem !important;
    }

    .hero__trust-item strong {
        font-size: 1rem !important;
    }

    .hero__trust-item span {
        font-size: 0.65rem !important;
    }

    .about-visual img {
        height: 200px;
    }

    .btn--lg {
        padding: 16px 28px;
        font-size: 0.92rem;
    }

    .info-box .info-image-wrapper {
        height: 130px;
    }

    .info-box .info-image-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        bottom: 10px;
        right: 10px;
    }

    .product-card .product-image-wrapper {
        height: 140px;
    }

    .product-card .product-content {
        padding: 16px 18px 18px;
    }

    .chat-window {
        height: 350px;
        bottom: 72px;
        right: 10px;
        width: calc(100vw - 20px);
    }

    .chat-toggle {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .contact-item {
        padding: 10px 0;
    }

    .contact-item p {
        font-size: 0.82rem;
    }

    .btn-simular {
        padding: 14px;
        font-size: 0.9rem;
    }

    .hero-internal {
        height: 35vh;
        min-height: 220px;
    }

    .hero-internal .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-internal .hero-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .investment-hero {
        padding: 50px 4px 4px 4px;
    }

    .investment-hero__title {
        font-size: 1.2rem;
    }

    .investment-hero__lead {
        font-size: 0.78rem;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 0.72rem;
    }

    .visual-card__floating {
        padding: 6px 10px;
    }

    .floating-number {
        font-size: 0.85rem;
    }

    .floating-label {
        font-size: 0.45rem;
    }

    .announcement-bar__inner {
        padding: 10px 8px;
        gap: 6px;
    }

    .announcement-bar__text {
        font-size: 0.72rem;
    }

    .announcement-bar__link {
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .hero__title {
        font-size: 1.3rem !important;
    }

    .hero__lead {
        font-size: 0.78rem !important;
    }

    .hero__media {
        max-height: 160px !important;
    }

    .hero__badge {
        padding: 8px 12px !important;
    }

    .hero__badge-value {
        font-size: 0.9rem !important;
    }

    .hero__badge-label {
        font-size: 0.5rem !important;
    }
}

/* ============================================
   26. REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #page-loader {
        display: none;
    }

    [data-reveal],
    [data-stagger]>* {
        opacity: 1 !important;
        transform: none !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero__badge,
    .visual-card__floating {
        animation: none !important;
    }

    .chat-toggle .badge {
        animation: none !important;
    }

    .chat-header-info .status .dot {
        animation: none !important;
    }
}