:root {
    
    --primary: #FF7A1A;
    --primary-dark: #E56A0F;
    --primary-light: rgba(255, 122, 26, 0.08);
    --success: #10B981;
    --error: #EF4444;
    
    
    --dark: #202020;
    --darker: #121212;
    --gray: #3C3C3C;
    --gray-light: #666666;
    --gray-lighter: #F8F8F8;
    --white: #FFFFFF;
    
    
    --text-primary: #202020;
    --text-secondary: #3C3C3C;
    --text-light: #666666;
    --text-on-dark: #FFFFFF;
    
    
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    
    
    --border: 1px solid #EAEAEA;
    --border-dark: 1px solid #333333;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 999px;
    
    
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
    
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 4px 12px rgba(255, 122, 26, 0.15);
    --shadow-primary-lg: 0 8px 25px rgba(255, 122, 26, 0.2);
    --shadow-overlay: 0 0 0 100vmax rgba(0, 0, 0, 0.5);
    
    
    --header-height: 88px; 
    --header-height-mobile: 76px; 
    --section-space-y: clamp(52px, 6vw, 84px);
    --section-space-y-mobile: clamp(40px, 8.5vw, 56px);
    --hero-bg-image: url('assets/image/banners/hero-bg-mobile.webp');
    --cta-bg-image: url('assets/image/banners/cta-bg-mobile.webp');
    --legal-bg-image: none;
    --hero-bg-blur: 0px;
    --hero-bg-scale: 0;
}

@media (min-width: 769px) {
    :root {
        --hero-bg-image: url('assets/image/banners/hero-bg-desktop.webp');
        --cta-bg-image: url('assets/image/banners/cta-bg-desktop.webp');
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1500px; 
    margin: 0 auto;
    padding: 0 clamp(var(--space-sm), 3vw, var(--space-md));
    width: 100%;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(var(--space-sm), 3vw, var(--space-md));
    width: 100%;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    line-height: 1.3;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.4;
}

.text-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-secondary);
}

.text-center > h1,
.text-center > h2 {
    margin-bottom: clamp(12px, 1.8vw, 18px);
}

.text-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-light);
}

.section {
    padding: var(--section-space-y) 0;
    width: 100%;
    scroll-margin-top: calc(var(--header-height) + 20px);
}

@media (max-width: 768px) {
    .section {
        scroll-margin-top: calc(var(--header-height-mobile) + 20px);
    }
}

.skip-to-content {
    position: fixed;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    z-index: 1001;
    transition: transform 0.3s, opacity 0.3s;
    outline: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px; 
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-150%);
}

.skip-to-content:focus {
    top: 16px;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.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;
}

.desktop-only {
    display: inline-flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-flex !important;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(32, 32, 32, 0.92);
    backdrop-filter: blur(10px);
    transition: background-color var(--transition-base), 
                box-shadow var(--transition-base),
                backdrop-filter var(--transition-base);
    padding: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header.scrolled {
    background-color: rgba(18, 18, 18, 0.98);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(15px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 92px; 
}

.logo-img {
    height: clamp(56px, 8vw, 85px); 
    width: auto;
    display: block;
    transition: transform var(--transition-base);
    max-width: 100%;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: clamp(38px, 4.8vw, 72px);
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    padding: var(--space-xs) 0;
    position: relative;
    outline: none;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
    .nav-link:hover {
        color: var(--primary);
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.nav-link:active {
    color: var(--primary);
    transform: translateY(1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    outline: none;
    min-height: 44px;
    min-width: 44px;
    position: relative;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.mobile-menu-toggle .fa-bars,
.mobile-menu-toggle .fa-times {
    transition: transform var(--transition-base);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .header {
        height: var(--header-height-mobile);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 100px var(--space-md) var(--space-xl);
        transition: right var(--transition-slow);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--white);
        font-size: 1.125rem;
        font-weight: 500;
        padding: var(--space-md) var(--space-sm);
        border-radius: var(--radius-md);
        text-align: left;
        min-height: 56px;
        display: flex;
        align-items: center;
        transition: all var(--transition-base);
        margin-bottom: var(--space-xs);
        border: 1px solid transparent;
        height: auto;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
        background-color: rgba(255, 122, 26, 0.1);
        border-color: rgba(255, 122, 26, 0.3);
        color: var(--primary);
    }
    
    .nav-link:active {
        background-color: rgba(255, 122, 26, 0.15);
        color: var(--primary);
        transform: translateY(0);
    }

    .nav-link-mobile-cta {
        background: var(--primary);
        color: var(--white);
        border-color: rgba(255, 122, 26, 0.62);
        font-weight: 700;
        justify-content: center;
    }

    .nav-link-mobile-cta:focus-visible {
        background: var(--primary-dark);
        color: var(--white);
    }
    
    
    .header-inner {
        min-height: var(--header-height-mobile);
        padding: var(--space-xs) 0;
    }
    
    .logo-img {
        height: clamp(52px, 7vw, 65px); 
    }
}

.btn-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px clamp(16px, 2vw, 24px);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.95rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    position: relative;
    min-width: 44px;
}

@media (hover: hover) and (pointer: fine) {
    .btn-header:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-primary);
    }
}

.btn-header:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-header:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: clamp(14px, 2vw, 16px) clamp(24px, 3vw, 32px);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 200px;
    min-height: 56px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-primary-lg);
    }
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

.btn-primary:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: clamp(14px, 2vw, 16px) clamp(24px, 3vw, 32px);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    min-width: 200px;
    min-height: 56px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
    }
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.btn-secondary:active {
    transform: translateY(0);
}

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: clamp(calc(var(--header-height) + 36px), 11vh, calc(var(--header-height) + 76px));
    padding-bottom: var(--section-space-y);
    width: 100%;
    margin-top: 0;
}

.interactive-banner {
    --banner-pointer-x: 50%;
    --banner-pointer-y: 50%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -8px;
    background-image:
        linear-gradient(135deg, rgba(32, 32, 32, 0.76) 0%, rgba(42, 42, 42, 0.72) 100%),
        var(--hero-bg-image);
    background-size: 120% 120%, cover;
    background-position:
        center calc(50% + var(--parallax-offset, 0px)),
        center calc(50% + var(--parallax-offset, 0px));
    background-repeat: no-repeat, no-repeat;
    transform: scale(calc(1 + var(--hero-bg-scale, 0)));
    filter: blur(var(--hero-bg-blur, 0px));
    will-change: filter, transform, background-position;
    transition: filter 120ms linear, transform 120ms linear, background-position 120ms linear;
    z-index: 0;
}

.hero.interactive-banner::after,
.cta-banner.interactive-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.14;
    background:
        radial-gradient(
            270px circle at var(--banner-pointer-x) var(--banner-pointer-y),
            rgba(255, 122, 26, 0.26) 0%,
            rgba(255, 122, 26, 0.12) 34%,
            rgba(255, 122, 26, 0) 72%
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.055) 0 1px,
            rgba(255, 255, 255, 0) 1px 36px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 0 1px,
            rgba(255, 255, 255, 0) 1px 36px
        );
    -webkit-mask-image: radial-gradient(
        340px circle at var(--banner-pointer-x) var(--banner-pointer-y),
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.64) 48%,
        rgba(0, 0, 0, 0) 84%
    );
    mask-image: radial-gradient(
        340px circle at var(--banner-pointer-x) var(--banner-pointer-y),
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.64) 48%,
        rgba(0, 0, 0, 0) 84%
    );
    transition: opacity 0.48s ease;
}

@media (hover: hover) and (pointer: fine) {
    .interactive-banner:hover::after {
        opacity: 0.62;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    min-height: clamp(430px, 62vh, 640px);
}

.hero-text-block {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    margin-bottom: clamp(14px, 2vw, 24px);
    color: var(--white);
    font-size: clamp(2rem, 5.2vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.032em;
    font-weight: 800;
    padding: 0;
    text-wrap: pretty;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: center;
}

.hero h1 .hero-title-line {
    display: block;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    animation: heroTextReveal 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 .hero-title-line.hero-title-line-dynamic {
    animation-delay: 120ms;
}

.hero h1 .hero-title-line-dynamic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.34em;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.hero-typewriter-bg {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0.08em 0.5em;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.hero-typewriter-word {
    display: inline-block;
    font-weight: 800;
    white-space: nowrap;
}

.hero-typewriter-cursor {
    width: 2px;
    height: 1.05em;
    margin-left: 0.14em;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 2px;
    animation: heroTypeCursorBlink 0.9s steps(1, end) infinite;
}

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

@keyframes heroTypeCursorBlink {
    0%, 45% {
        opacity: 1;
    }
    46%, 100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    font-weight: 400;
    padding: 0;
    text-wrap: pretty;
    word-break: normal;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    animation: heroTextReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.hero-actions {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

.hero-reviews {
    margin-top: var(--space-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: 10px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}

.hero-review-avatars {
    display: inline-flex;
    align-items: center;
}

.hero-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, rgba(255, 122, 26, 0.95) 0%, rgba(255, 166, 94, 0.95) 100%);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.hero-review-avatar:first-child {
    margin-left: 0;
}

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

.hero-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #ffd35a;
    font-size: 0.86rem;
}

.hero-review-summary p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        line-height: 1.6;
        padding: 0;
        text-wrap: balance; 
    }

    .hero-actions {
        margin-top: var(--space-md);
    }

    .hero-reviews {
        margin-top: var(--space-md);
        width: 100%;
        justify-content: center;
        gap: var(--space-sm);
        padding: 10px 12px;
    }

    .hero-review-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.62rem;
    }

    .hero-review-summary p {
        font-size: 0.8rem;
    }
    
    .hero h1 {
        text-wrap: balance;
        line-height: 1.16;
        word-break: normal;
        overflow-wrap: normal;
        font-size: clamp(1rem, 4.4vw, 1.5rem);
    }
    
    .hero h1 .hero-title-line {
        white-space: nowrap;
    }

    .hero h1 .hero-title-line-dynamic {
        white-space: nowrap;
        gap: 0.28em;
    }

    .hero-typewriter-bg {
        padding: 0.08em 0.35em;
    }

    .hero-content {
        min-height: auto;
        gap: var(--space-md);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-typewriter-cursor {
        animation: none;
        opacity: 1;
    }

    .hero h1 .hero-title-line,
    .hero-subtitle {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero::before {
        transition: none;
    }
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(var(--space-lg), 4vw, var(--space-xl));
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl) var(--space-sm) 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.timeline-horizontal {
    position: relative;
    margin: var(--space-xl) 0;
    width: 100%;
}

.timeline-progress {
    position: absolute;
    top: 48px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 122, 26, 0.3) 100%);
    z-index: 1;
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0.5;
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.45s ease;
    border-radius: 999px;
}

.timeline-progress.visible {
    transform: scaleX(1);
    opacity: 1;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(var(--space-md), 3vw, var(--space-xl));
    position: relative;
    z-index: 2;
    width: 100%;
}

.timeline-step {
    text-align: left;
    padding: 86px var(--space-md) var(--space-md);
    position: relative;
    width: 100%;
    border: 1px solid rgba(255, 122, 26, 0.22);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
    box-shadow: var(--shadow-sm);
    min-height: 276px;
    transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.44s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.44s ease, background 0.44s ease;
    backdrop-filter: saturate(1.03);
}

.timeline-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 122, 26, 0.08) 0%, rgba(255, 255, 255, 0) 52%);
    opacity: 0;
    transition: opacity 0.44s ease;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .timeline-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(255, 122, 26, 0.14);
        border-color: rgba(255, 122, 26, 0.4);
    }

    .timeline-step:hover::before {
        opacity: 1;
    }

    .timeline-step:hover .step-icon {
        transform: translateY(-2px) scale(1.02);
        box-shadow: var(--shadow-primary);
    }
}

.step-number {
    position: absolute;
    top: 16px;
    left: var(--space-md);
    transform: none;
    min-width: 42px;
    height: 30px;
    padding: 0 12px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
    letter-spacing: 0.02em;
}

.step-icon {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin: 0 0 14px;
    border: 2px solid var(--primary);
    transition: transform 0.44s ease, box-shadow 0.44s ease;
}

.timeline-step h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    padding: 0;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
}

.timeline-step p {
    color: var(--gray);
    max-width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.dashboard-lado-a-lado {
    --dashboard-rotate: 14deg;
    --dashboard-scale: 0.9;
    --dashboard-translate: 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(20px, 3vw, 32px);
    margin-top: clamp(var(--space-lg), 4vw, var(--space-xl));
    width: 100%;
}

.dashboard-texto-coluna {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    min-width: 0;
    text-align: center;
}

.dashboard-texto-coluna h3 {
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.2;
    letter-spacing: -0.022em;
    margin-bottom: var(--space-sm);
    padding-left: 0;
    font-weight: 800;
    color: var(--text-primary);
    text-wrap: balance;
}

.dashboard-texto-coluna > .text-body {
    font-size: 1rem;
    line-height: 1.64;
    color: var(--text-secondary);
    max-width: 52ch;
    margin: 0 auto;
    text-wrap: pretty;
}

.dashboard-lado-a-lado > .features-list {
    width: 100%;
    max-width: 1160px;
    margin: clamp(6px, 1.6vw, 16px) auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.dashboard-lado-a-lado > .features-list li {
    margin-top: var(--space-sm);
    margin-bottom: 0;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(4, 103, 230, 0.12);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(4, 103, 230, 0.06);
}

.dashboard-lado-a-lado > .features-list h3 {
    margin-bottom: 2px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.42;
    color: var(--text-primary);
}

.pipeline-heading {
    display: inline-flex;
    align-items: center;
    min-height: 1.42em;
}

.pipeline-heading.is-typing::after {
    content: '';
    width: 2px;
    height: 1.02em;
    margin-left: 2px;
    border-radius: 2px;
    background: var(--primary);
    animation: pipelineCursorBlink 0.78s steps(1, end) infinite;
}

@keyframes pipelineCursorBlink {
    0%, 48% {
        opacity: 1;
    }
    49%, 100% {
        opacity: 0;
    }
}

.dashboard-lado-a-lado > .features-list .text-body {
    font-size: 0.93rem;
    line-height: 1.56;
    color: var(--text-secondary);
}

.dashboard-imagem-coluna {
    width: min(100%, 1920px);
    max-width: 1920px;
    position: relative;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    box-shadow: none;
    border: 0;
    padding: 0;
    perspective: 1100px;
    transition: opacity 0.46s ease;
    opacity: 0;
    min-width: 0;
    aspect-ratio: 16 / 9;
}

#solucao .dashboard-imagem-coluna {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.dashboard-imagem-coluna::before {
    content: none;
}

.dashboard-imagem-coluna.visible {
    opacity: 1;
}

.dashboard-imagem-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0;
}

.dashboard-imagem-grande,
.dashboard-imagem {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    filter: none;
    opacity: 1;
    transform-origin: center top;
    transform:
        perspective(1100px)
        rotateX(var(--dashboard-rotate))
        translateY(var(--dashboard-translate))
        scale(var(--dashboard-scale));
    object-fit: cover;
    object-position: center;
    border-radius: clamp(16px, 1.8vw, 24px);
    border: 0;
    background: transparent;
    box-shadow: none;
}

.dashboard-imagem-coluna.visible .dashboard-imagem {
    opacity: 1;
}

.dashboard-lado-a-lado.dashboard-showcase-ready .dashboard-imagem-coluna.visible .dashboard-imagem {
    transition: transform 0.24s linear;
}

@media (hover: hover) and (pointer: fine) {
    .dashboard-imagem-coluna:hover .dashboard-imagem {
        transform:
            perspective(1100px)
            rotateX(var(--dashboard-rotate))
            translateY(calc(var(--dashboard-translate) - 2px))
            scale(calc(var(--dashboard-scale) * 1.01));
        box-shadow: 0 14px 34px rgba(255, 122, 26, 0.28);
    }
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.feature-check {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-legend {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: var(--space-sm);
}

.legend-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.legend-pill-available {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.legend-pill-future {
    background: rgba(60, 60, 60, 0.12);
    color: var(--gray);
}

.version-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.version-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-sm);
}

.version-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    width: 100%;
}

#funcionalidades .feature-card:nth-child(1) { transition-delay: 0.08s; }
#funcionalidades .feature-card:nth-child(2) { transition-delay: 0.18s; }
#funcionalidades .feature-card:nth-child(3) { transition-delay: 0.28s; }
#funcionalidades .feature-card:nth-child(4) { transition-delay: 0.38s; }
#funcionalidades .feature-card:nth-child(5) { transition-delay: 0.48s; }
#funcionalidades .feature-card:nth-child(6) { transition-delay: 0.58s; }
#funcionalidades .feature-card:nth-child(7) { transition-delay: 0.68s; }
#funcionalidades .feature-card:nth-child(8) { transition-delay: 0.78s; }

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg) var(--space-md);
    transition: transform 0.46s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.46s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.46s ease, border-color 0.46s ease, color 0.46s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    min-height: 300px;
    align-items: center;
    justify-content: center;
    outline: none;
}

.feature-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    pointer-events: none;
}

.feature-badge-available {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.2);
}

.feature-badge-future {
    background: rgba(60, 60, 60, 0.1);
    color: var(--gray);
    border-color: rgba(60, 60, 60, 0.22);
}

.feature-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.feature-status-available {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.feature-status-future {
    background: rgba(60, 60, 60, 0.12);
    color: var(--gray);
}

.feature-card.available {
    border-color: rgba(255, 122, 26, 0.28);
}

.feature-card.future {
    opacity: 0.92;
    border-color: rgba(60, 60, 60, 0.2);
    border-style: dashed;
    background: linear-gradient(135deg, #f6f6f6 0%, #fcfcfc 100%);
}

.feature-card.future::after {
    content: none;
}

@media (hover: hover) and (pointer: fine) {
    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .feature-card.available:hover {
        background: linear-gradient(140deg, #ff7a1a 0%, #ff8e3b 100%);
        border-color: var(--primary);
        box-shadow: var(--shadow-primary-lg);
    }

.feature-card.available:hover h3 {
        color: var(--white);
    }

    .feature-card.available:hover .feature-description {
        color: rgba(255, 255, 255, 0.95);
    }

    .feature-card.available:hover .feature-icon {
        background: rgba(255, 255, 255, 0.2);
    }

    .feature-card.available:hover .feature-icon i {
        color: var(--white);
    }

    .feature-card.available:hover .feature-badge-available {
        background: rgba(255, 255, 255, 0.94);
        color: #047857;
        border-color: transparent;
    }

    .feature-card.future:hover {
        opacity: 0.97;
        border-color: rgba(60, 60, 60, 0.35);
        box-shadow: var(--shadow-md);
    }
}

.feature-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: var(--primary-light);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.feature-icon i.offline-wifi-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 120%;
    background: currentColor;
    left: 50%;
    top: -10%;
    transform: translateX(-50%) rotate(42deg);
    border-radius: 2px;
}

.feature-card.available .feature-icon {
    background: rgba(255, 122, 26, 0.14);
}

.feature-card.available .feature-icon i {
    color: var(--primary);
}

.feature-card.future .feature-icon {
    background: rgba(60, 60, 60, 0.08);
}

.feature-card.future .feature-icon i {
    color: var(--gray);
}

.feature-card.future h3 {
    color: var(--text-secondary);
}

.feature-icon-bg {
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.feature-icon-main {
    color: var(--primary);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card.available .feature-icon-bg {
    background-color: var(--primary);
}

.feature-card.available .feature-icon-main {
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 var(--space-xs);
    transition: color 0.46s ease;
}

.feature-description {
    margin-top: var(--space-sm);
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 92%;
    transition: color 0.46s ease;
}

.feature-icon,
.feature-icon i,
.feature-badge {
    transition: background-color 0.46s ease, color 0.46s ease, border-color 0.46s ease, transform 0.46s ease;
}

.profile-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: var(--space-xl) var(--space-lg);
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.48s ease, background-color 0.48s ease;
}

.profile-card h3 {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    padding: 0;
}

.profile-card .feature-description {
    max-width: 100%;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.profile-select-btn {
    width: 100%;
    border: 1.5px solid rgba(255, 122, 26, 0.35);
    border-radius: var(--radius-md);
    background: rgba(255, 122, 26, 0.08);
    color: var(--primary-dark);
    padding: 12px 14px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.48s ease, color 0.48s ease, border-color 0.48s ease, box-shadow 0.48s ease, transform 0.48s ease;
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .profile-select-btn:hover {
        background: rgba(255, 122, 26, 0.12);
        border-color: rgba(255, 122, 26, 0.45);
    }

    .profile-card.available:hover {
        transform: translateY(-3px);
        background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
        border-color: rgba(255, 122, 26, 0.44);
        box-shadow: 0 14px 28px rgba(255, 122, 26, 0.14);
    }

    .profile-card.available:hover h3 {
        color: var(--text-primary);
    }

    .profile-card.available:hover .feature-description {
        color: var(--text-secondary);
    }

    .profile-card.available:hover .profile-select-btn {
        background: #ffffff;
        color: var(--primary-dark);
        border-color: rgba(255, 255, 255, 0.92);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    }
}

.profile-select-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.profile-card.profile-card-selected {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary-lg);
}

.profile-card.profile-card-selected .profile-select-btn {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cta-banner {
    padding: var(--section-space-y) 0;
    background-image:
        linear-gradient(135deg, rgba(32, 32, 32, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%),
        var(--cta-bg-image);
    background-size: 120% 120%, cover;
    background-position:
        center calc(50% + var(--parallax-offset, 0px)),
        center calc(50% + var(--parallax-offset, 0px));
    background-repeat: no-repeat, no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.cta-banner h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    padding: 0 var(--space-sm);
    color: var(--white);
}

.cta-banner .hero-subtitle,
.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
}

.cta-banner .btn-primary {
    color: var(--white);
}

.cta-pricing-note {
    margin-top: var(--space-sm);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.quote-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 122, 26, 0.03) 0%, transparent 100%);
    z-index: 0;
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--space-lg), 4vw, var(--space-xl));
    align-items: start;
    position: relative;
    z-index: 1;
    width: 100%;
}

.history-expanded {
    background: linear-gradient(135deg, var(--dark) 0%, #2A2A2A 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.history-expanded,
.history-expanded h2,
.history-expanded h3,
.history-expanded p,
.history-expanded li,
.history-expanded strong {
    color: rgba(255, 255, 255, 0.95);
}

.history-expanded h2,
.history-expanded h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.3;
}

.history-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.history-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.history-text p {
    margin-bottom: var(--space-md);
}

.history-text p:last-child {
    margin-bottom: 0;
}

.history-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.history-highlights li {
    text-align: center;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini {
    text-align: center;
    padding: var(--space-sm);
}

.stat-mini .number {
    display: block;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-mini .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.form-minimal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.form-minimal-header {
    margin-bottom: var(--space-lg);
}

.form-minimal-header h3 {
    color: var(--text-primary);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.form-minimal-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.profile-selection-message {
    background: var(--primary) !important;
    border: 1px solid var(--primary-dark) !important;
    border-radius: var(--radius-md);
    color: var(--white) !important;
    font-size: 0.92rem;
    line-height: 1.45;
    padding: 10px 12px;
    margin-bottom: var(--space-md);
    font-weight: 600;
    opacity: 1 !important;
    box-shadow: var(--shadow-primary);
}

.profile-selection-message strong,
.profile-selection-message span {
    color: var(--white) !important;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
}

.form-field {
    margin-bottom: 0;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e1e5e9;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    background: #fcfcfc;
    color: var(--text-primary);
    outline: none;
    line-height: 1.5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.1);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233C3C3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
}

.submit-minimal {
    margin-top: var(--space-md);
}

.btn-submit-minimal {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    outline: none;
    min-height: 56px;
}

.btn-submit-minimal:disabled {
    cursor: not-allowed;
}

.btn-submit-minimal.btn--loading {
    background: var(--gray);
    transform: none;
    box-shadow: none;
}

.btn-submit-minimal.btn--success {
    background: var(--success);
}

.btn-submit-minimal.btn--error {
    background: var(--error);
    box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
    .btn-submit-minimal:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-primary-lg);
    }

    .btn-submit-minimal.btn--loading:hover,
    .btn-submit-minimal.btn--success:hover,
    .btn-submit-minimal.btn--error:hover {
        transform: none;
        box-shadow: none;
    }
}

.btn-submit-minimal:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

.btn-submit-minimal:active {
    transform: translateY(0);
}

.faq-section {
    background-color: var(--gray-lighter);
    width: 100%;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--space-sm);
}

.faq-item {
    border-bottom: var(--border);
    transform: translateY(20px);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
    width: 100%;
}

.faq-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.faq-question {
    width: 100%;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-base);
    gap: var(--space-sm);
    outline: none;
    line-height: 1.4;
    min-height: 44px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.faq-icon {
    transition: transform var(--transition-base);
    font-size: 0.875rem;
    min-width: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding-bottom var(--transition-base);
}

.faq-item.active .faq-answer {
    padding-bottom: var(--space-lg);
    max-height: 1200px;
}

.form-field .error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 4px;
    display: block;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
    border-color: var(--error);
}

.form-field--error label {
    color: var(--error);
}

.form-honeypot {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.legal-page main {
    padding-top: 0;
}

@media (max-width: 768px) {
    .legal-page main {
        padding-top: 0;
    }
}

.legal-banner {
    margin-top: 0;
    padding: calc(var(--header-height) + clamp(26px, 5vh, 40px)) 0 clamp(36px, 6vh, 56px);
    background-image:
        linear-gradient(135deg, rgba(32, 32, 32, 0.94) 0%, rgba(42, 42, 42, 0.9) 100%),
        var(--legal-bg-image);
    background-size: 120% 120%, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
    color: var(--white);
    text-align: center;
}

@media (max-width: 768px) {
    .legal-banner {
        margin-top: 0;
        padding-top: calc(var(--header-height-mobile) + clamp(24px, 4.5vh, 36px));
    }
}

.legal-banner h1 {
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.legal-banner p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
}

.legal-content-section {
    padding-top: var(--space-xl);
}

.legal-content {
    color: var(--text-secondary);
}

.legal-content h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    font-size: clamp(1.12rem, 2.4vw, 1.35rem);
}

.legal-content p,
.legal-content li {
    line-height: 1.75;
}

.legal-content ul {
    margin: 0 0 var(--space-md) var(--space-md);
}

.legal-meta {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

.not-found-page main {
    padding-top: 0;
    background: var(--white);
}

.not-found-section {
    padding: calc(var(--header-height) + clamp(34px, 6vh, 56px)) 0 clamp(48px, 8vh, 76px);
    min-height: min(100svh, 980px);
    display: flex;
    align-items: center;
    background: var(--white);
}

.not-found-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(4px, 1.2vw, 10px) 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    text-align: center;
}

.not-found-wrapper::after {
    content: none;
}

.not-found-illustration-layer {
    position: relative;
    z-index: 1;
    margin-bottom: clamp(14px, 2vw, 20px);
    display: flex;
    justify-content: center;
}

.not-found-illustration {
    width: min(100%, 620px);
    height: auto;
    color: rgba(32, 32, 32, 0.09);
    display: block;
}

.not-found-content-layer {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.not-found-wrapper h1 {
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.not-found-description {
    max-width: 60ch;
    margin: 0 auto var(--space-lg);
    color: var(--text-secondary);
}

.not-found-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}

.not-found-search-field {
    position: relative;
}

.not-found-search-field i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.not-found-search-field input {
    width: 100%;
    min-height: 52px;
    border: 1.5px solid #e1e5e9;
    border-radius: var(--radius-md);
    padding: 12px 14px 12px 42px;
    font-size: 0.97rem;
    line-height: 1.4;
    color: var(--text-primary);
    background: #fcfcfc;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

.not-found-search-field input::placeholder {
    color: var(--text-light);
}

.not-found-search-field input:focus-visible {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.12);
}

.not-found-search-button {
    min-height: 52px;
    border-radius: var(--radius-md);
    border: 1px solid var(--darker);
    background: var(--darker);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 22px;
    cursor: pointer;
    transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
    .not-found-search-button:hover {
        background: var(--primary);
        border-color: var(--primary);
        transform: translateY(-1px);
    }
}

.not-found-search-button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.not-found-search-feedback {
    min-height: 24px;
    margin: 10px auto 0;
    max-width: 760px;
    color: var(--text-light);
}

.not-found-actions {
    margin-top: var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.not-found-actions .btn-primary {
    min-width: 180px;
    min-height: 52px;
}

.not-found-back-button {
    min-height: 52px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(60, 60, 60, 0.4);
    background: var(--white);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
    .not-found-back-button:hover {
        background: #f5f5f5;
        border-color: rgba(60, 60, 60, 0.62);
        transform: translateY(-1px);
    }
}

.not-found-back-button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .not-found-search-form {
        grid-template-columns: 1fr;
    }

    .not-found-search-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .not-found-section {
        padding-top: calc(var(--header-height-mobile) + clamp(24px, 4.6vh, 36px));
        min-height: auto;
    }

    .not-found-wrapper {
        padding-top: 0;
    }

    .not-found-illustration {
        width: min(100%, 520px);
    }

    .not-found-actions {
        flex-direction: column;
    }

    .not-found-actions .btn-primary,
    .not-found-back-button {
        width: 100%;
        max-width: 360px;
    }
}

.footer {
    background-color: var(--darker);
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-xl);
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(170px, 1fr));
    gap: clamp(var(--space-lg), 3.5vw, var(--space-xl));
    margin-bottom: var(--space-xl);
    width: 100%;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    height: clamp(150px, 10.6vw, 240px);
    width: auto;
    max-width: 100%;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    max-width: 36ch;
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
    .footer-social-link:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
    }
}

.footer-social-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
    line-height: 1.3;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a,
.footer-links-list .contact-item {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none;
    font-size: 0.95rem;
}

@media (hover: hover) and (pointer: fine) {
    .footer-links-list a:hover {
        color: var(--primary);
    }
}

.footer-links-list a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.footer-links-list .contact-item {
    cursor: default;
    line-height: 1.45;
}

.footer-links-list .contact-item:hover {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links-list .contact-item i,
.footer-links-list a i {
    color: var(--primary);
}

.footer-bottom {
    padding-top: clamp(12px, 1.6vw, 18px);
    border-top: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
}

.footer-bottom-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
}

.footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    justify-self: center;
}

.footer-bottom-inner > .text-small {
    justify-self: start;
    text-align: left;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
    .footer-legal-links a:hover {
        color: var(--primary);
    }
}

.footer-legal-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.developer-credit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.4;
    justify-self: end;
    margin: 0;
}

.developer-credit-logo {
    display: block;
    width: auto;
    height: clamp(56px, 4.8vw, 78px);
    opacity: 0.92;
}

.developer-credit-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
}

.developer-credit-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.footer-note {
    width: 100%;
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-md);
}

.footer-note p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.footer-note strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all var(--transition-base);
    text-decoration: none;
    outline: none;
    min-height: 60px;
    min-width: 60px;
}

.whatsapp-float.is-hidden-near-footer {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
}

@media (hover: hover) and (pointer: fine) {
    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.fade-in-up {
    transform: translateY(24px);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.fade-in-up.visible {
    transform: translateY(0);
    opacity: 1;
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }
.stagger-delay-6 { transition-delay: 0.6s; }

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 1024px) {
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(var(--space-lg), 4vw, var(--space-xxl));
    }
    
    .timeline-step {
        padding: 82px var(--space-md) var(--space-md);
    }
    
    .step-number {
        top: 14px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: var(--space-xl);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 3rem);
    }
    
    .dashboard-imagem-coluna {
        min-height: auto;
    }
    
    .footer-logo-img {
        height: clamp(130px, 9.4vw, 198px);
    }

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

@media (max-width: 375px) {
    
    .container,
    .container-narrow {
        padding: 0 16px !important;
    }
    
    
    .hero-content,
    .cta-content {
        padding: 0 16px !important;
    }
    
    
    .version-features .container,
    .quote-section .container,
    .faq-section .container-narrow {
        padding: 0 16px !important;
    }
    
    
    .footer .container {
        padding: 0 16px !important;
    }
    
    
    .nav {
        padding: 100px 16px var(--space-xl) !important;
        max-width: 280px;
    }
    
    
    .feature-card,
    .form-minimal,
    .history-expanded {
        padding: var(--space-md) !important;
    }
}

@media (min-width: 376px) and (max-width: 430px) {
    
    .container,
    .container-narrow {
        padding: 0 20px !important;
    }
    
    
    .hero-content,
    .cta-content {
        padding: 0 20px !important;
    }
    
    
    .version-features .container,
    .quote-section .container,
    .faq-section .container-narrow {
        padding: 0 20px !important;
    }
    
    
    .footer .container {
        padding: 0 20px !important;
    }
    
    
    .nav {
        padding: 100px 20px var(--space-xl) !important;
        max-width: 300px;
    }
    
    
    .feature-card,
    .form-minimal,
    .history-expanded {
        padding: var(--space-lg) !important;
    }
}

@media (max-width: 768px) {
    
    .section {
        padding: var(--section-space-y-mobile) 0;
    }

    .hero-content {
        gap: var(--space-sm);
    }
    
    .hero {
        padding-top: clamp(calc(var(--header-height-mobile) + 30px), 9vh, calc(var(--header-height-mobile) + 64px));
        padding-bottom: var(--section-space-y-mobile);
        min-height: 65vh;
    }
    
    .hero-buttons {
        margin-bottom: var(--space-lg);
        gap: var(--space-sm);
    }
    
    .hero-stats {
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
    }
    
    .cta-banner {
        padding: var(--section-space-y-mobile) 0;
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .cta-banner h2,
    .cta-banner .hero-subtitle {
        margin-bottom: 0;
    }

    .cta-banner .hero-subtitle {
        max-width: 34ch;
    }
    
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .profile-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        min-height: 300px;
        padding: var(--space-lg) var(--space-md) !important;
        box-shadow: var(--shadow-sm);
    }

    #funcionalidades .feature-card {
        min-height: 180px;
        justify-content: center;
        align-items: center;
        padding: var(--space-md) var(--space-sm) !important;
    }

    #funcionalidades .feature-card h3 {
        font-size: 0.98rem;
        line-height: 1.35;
        padding: 0;
    }

    #funcionalidades .feature-description {
        display: none;
    }

    .profile-card {
        min-height: auto;
        padding: var(--space-lg) !important;
    }

    .feature-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .feature-badge {
        top: 12px;
        right: 12px;
        padding: 4px 9px;
        font-size: 0.64rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-sm);
    }
    
    .feature-icon-main,
    .feature-icon i {
        font-size: 2rem;
    }
    
    
    .dashboard-lado-a-lado {
        gap: var(--space-lg);
        margin-top: var(--space-xl);
        --dashboard-rotate: 0deg;
        --dashboard-scale: 1;
        --dashboard-translate: 0px;
    }
    
    .dashboard-texto-coluna,
    .dashboard-imagem-coluna {
        max-width: 100% !important;
    }
    
    .dashboard-imagem-coluna {
        min-height: auto;
        box-shadow: none;
        padding: 0;
    }

    .dashboard-imagem {
        border-radius: 16px;
        height: 100%;
    }

    .dashboard-lado-a-lado > .features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .features-list li {
        margin-bottom: var(--space-md);
        gap: var(--space-xs);
    }
    
    
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: var(--space-xxl);
    }
    
    .timeline-progress {
        display: none;
    }
    
    .timeline-step {
        padding: 78px var(--space-md) var(--space-md);
    }
    
    .step-number {
        top: 12px;
    }
    
    .timeline-step p {
        max-width: 100%;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    
    .quote-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .stats-mini {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .history-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .history-highlights li {
        white-space: normal;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 16px;
    }
    
    .stat-mini {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: var(--space-xs) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .stat-mini:last-child {
        border-bottom: none;
    }
    
    .stat-mini .label {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-bottom-inner {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .footer-bottom-inner p {
        width: 100%;
        text-align: center;
    }
    
    
    .footer-logo-img {
        height: clamp(122px, 10vw, 168px);
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
        bottom: 20px;
        right: 20px;
        min-height: 56px;
        min-width: 56px;
    }
    
    
    .footer-note p {
        font-size: 0.75rem;
        padding: 0 var(--space-xs);
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 60vh;
        padding-top: clamp(calc(var(--header-height-mobile) + 24px), 7vh, calc(var(--header-height-mobile) + 54px));
        padding-bottom: var(--section-space-y-mobile);
    }
    
    .hero h1 {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
        line-height: 1.2;
        text-wrap: balance;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0;
        text-wrap: pretty;
    }

    .hero-reviews {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .hero-review-summary {
        align-items: center;
        text-align: center;
    }
    
    .text-lead {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .timeline-step p {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .history-expanded,
    .form-minimal {
        padding: var(--space-lg) var(--space-md) !important;
    }
    
    .history-expanded h2,
    .form-minimal-header h3 {
        font-size: clamp(1.125rem, 3vw, 1.25rem);
    }
    
    .btn-submit-minimal {
        padding: 14px 20px;
        font-size: 0.95rem;
        min-height: 52px;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: var(--space-md) 0;
        line-height: 1.4;
        min-height: 44px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 430px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 360px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .feature-card {
        min-height: 220px;
        padding: var(--space-md) !important;
    }
    
    .feature-badge {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 0.62rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-main,
    .feature-icon i {
        font-size: 1.75rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    
    .footer-logo-img {
        height: clamp(112px, 9vw, 138px);
    }
}

@media (max-width: 320px) {
    
    .container,
    .container-narrow {
        padding: 0 14px !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .nav {
        padding: 100px 14px var(--space-xl) !important;
        max-width: 270px;
    }
    
    .hero h1 {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.85rem;
        padding: 10px 16px;
        min-height: 44px;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    
    .logo-img {
        height: 50px;
    }
    
    .footer-logo-img {
        height: clamp(104px, 8.5vw, 130px);
    }
    
}

@media (prefers-color-scheme: dark) {
    .form-minimal {
        background: #1a1a1a;
        border-color: #333;
    }

    .form-minimal-header h3,
    .form-minimal-header p {
        color: #ffffff;
    }

    .form-field label {
        color: rgba(255, 255, 255, 0.88);
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        background: #2a2a2a;
        border-color: #444;
        color: #fff;
    }
    
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
        background: #333;
    }
    
    
    .header {
        background-color: rgba(26, 26, 26, 0.92);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .header.scrolled {
        background-color: rgba(18, 18, 18, 0.98);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .fade-in-up,
    .dashboard-imagem-coluna,
    .faq-item,
    .feature-card,
    .header,
    .nav-link::after,
    .faq-icon,
    .step-icon,
    .nav {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
        animation: none !important;
    }
    
    .dashboard-imagem-coluna,
    .fade-in-up {
        opacity: 1;
        transform: none;
    }

    .dashboard-imagem {
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .dashboard-imagem-coluna.visible,
    .fade-in-up.visible,
    .faq-item.visible {
        transform: none;
        opacity: 1;
    }

    .hero,
    .cta-banner {
        --parallax-offset: 0px !important;
        background-position: center 50% !important;
    }

    .interactive-banner::after {
        display: none !important;
    }
}
