        /* Lenis Smooth Scroll Setup */
        html.lenis, html.lenis body { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }
        .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
        .lenis.lenis-stopped { overflow: hidden; }
        .lenis.lenis-scrolling iframe { pointer-events: none; }

        /* Custom Properties based on Design System */
        :root {
            --color-primary: #3DB5B4;
            --color-primary-rgb: 61, 181, 180;
            --color-secondary: #124A6E;
            --color-secondary-rgb: 18, 74, 110;
            --color-tertiary: #8BA3B5;
            --color-tertiary-rgb: 139, 163, 181;
            
            --bg-color: #FAFCFC;
            --bg-glass: rgba(255, 255, 255, 0.75);
            
            --text-dark: #0F172A;
            --text-muted: #64748B;
            
            --font-main: 'Poppins', sans-serif;
            --font-mono: 'Space Mono', monospace;
            
            --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

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

        body {
            font-family: var(--font-main);
            background-color: var(--bg-color);
            color: var(--text-dark);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a { text-decoration: none; }
        button { border: none; background: none; cursor: pointer; font-family: inherit; }

        /* Focus styles for accessibility */
        :focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 4px;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Background Effects */
        .bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
            background: linear-gradient(to bottom, #ffffff, var(--bg-color));
        }

        .blob {
            position: absolute;
            filter: blur(120px);
            opacity: 0.6;
            border-radius: 50%;
            animation: drift 15s infinite alternate ease-in-out;
            will-change: transform;
        }

        .blob-1 {
            background: rgba(var(--color-primary-rgb), 0.35);
            width: 700px;
            height: 700px;
            top: -20%;
            right: -10%;
        }

        .blob-2 {
            background: rgba(var(--color-secondary-rgb), 0.25);
            width: 600px;
            height: 600px;
            bottom: -20%;
            left: -10%;
            animation-delay: -5s;
            animation-duration: 18s;
        }

        .blob-3 {
            background: rgba(var(--color-tertiary-rgb), 0.3);
            width: 450px;
            height: 450px;
            top: 40%;
            left: 40%;
            animation-delay: -2s;
            animation-duration: 20s;
        }

        @keyframes drift {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.1) translate(30px, -30px); }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            transition: all 0.5s var(--ease-premium);
            padding: 1.5rem 0;
            border-bottom: 1px solid transparent;
        }

        .header.scrolled {
            background: var(--bg-glass);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 1rem 0;
            box-shadow: 0 10px 40px -10px rgba(18, 74, 110, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-secondary);
            letter-spacing: -0.02em;
            position: relative;
        }

        .logo i {
            color: var(--color-primary);
            font-size: 1.4rem;
            transition: transform 0.5s var(--ease-premium);
        }

        .logo:hover i {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 0 8px rgba(var(--color-primary-rgb), 0.5));
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover {
            color: var(--color-secondary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--color-primary);
            transition: width 0.3s var(--ease-premium);
            border-radius: 2px;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.75rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s var(--ease-premium);
            position: relative;
            overflow: hidden;
        }

        .btn-outline {
            color: var(--color-secondary);
            border: 1px solid rgba(18, 74, 110, 0.2);
            background: transparent;
        }

        .btn-outline:hover {
            border-color: var(--color-secondary);
            background: rgba(18, 74, 110, 0.04);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: var(--color-primary);
            color: #ffffff;
            box-shadow: 0 10px 20px -5px rgba(var(--color-primary-rgb), 0.4);
            border: 1px solid transparent;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: rotate(30deg) translateX(-100%);
            transition: transform 0.8s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 30px -5px rgba(var(--color-primary-rgb), 0.5);
            background: #349E9D;
        }

        .btn-primary:hover::after {
            transform: rotate(30deg) translateX(100%);
        }

        .btn-secondary {
            background: var(--color-secondary);
            color: #ffffff;
            box-shadow: 0 10px 20px -5px rgba(var(--color-secondary-rgb), 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 30px -5px rgba(var(--color-secondary-rgb), 0.4);
            background: #0f3d5a;
        }

        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--color-secondary);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            overflow: hidden;
        }

        .hero-grid {
            display: flex;
            align-items: center;
            width: 100%;
            position: relative;
            min-height: calc(100vh - 100px);
        }

        .hero-content {
            width: 45%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            z-index: 10;
        }

        .hero h1 {
            font-size: clamp(2rem, 3.5vw, 3.25rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--color-secondary);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero .subheadline {
            font-size: clamp(0.95rem, 1.2vw, 1.05rem);
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 90%;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: nowrap;
        }

        .hero-ctas .btn {
            padding: 1rem 2rem;
            font-size: 1.05rem;
        }

        .hero-ctas .btn i {
            transition: transform 0.3s var(--ease-premium);
        }

        .hero-ctas .btn:hover i {
            transform: translateX(4px);
        }

        .trust-box {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .trust-item i {
            color: var(--color-primary);
            font-size: 1rem;
        }

        /* Hero Image Area */
        .hero-visual-container {
            position: absolute;
            right: -15%;
            top: 50%;
            transform: translateY(-50%);
            width: 75%;
            max-width: 1400px;
            z-index: 5;
        }

        .hero-visual {
            position: relative;
            perspective: 1200px;
            width: 100%;
        }

        .image-wrapper {
            position: relative;
            transform-style: preserve-3d;
            animation: float-img 6s ease-in-out infinite;
            will-change: transform;
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            transform: translateZ(30px); /* For Vanilla Tilt depth */
        }

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

        /* Features Section */
        .features-section {
            padding: 8rem 0;
            background-color: #ffffff;
            position: relative;
            z-index: 20;
        }

        .features-header {
            text-align: center;
            margin-bottom: 5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-header h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            color: var(--color-secondary);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .feature-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(18, 74, 110, 0.08);
            box-shadow: 0 10px 40px -10px rgba(18, 74, 110, 0.05);
            transition: all 0.4s var(--ease-premium);
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px -15px rgba(18, 74, 110, 0.12);
            border-color: rgba(61, 181, 180, 0.3);
        }

        .feature-image-wrapper {
            background: rgba(61, 181, 180, 0.08);
            border-radius: 16px;
            padding: 2.5rem 2.5rem 0 2.5rem;
            margin-bottom: 2.5rem;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            height: 320px;
            overflow: hidden;
            position: relative;
        }

        .feature-image-wrapper.alt-bg {
            background: rgba(18, 74, 110, 0.05);
        }

        .feature-image-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 12px 12px 0 0;
            box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.15);
            transition: transform 0.6s var(--ease-premium);
            transform-origin: bottom center;
        }

        .feature-card:hover .feature-image-wrapper img {
            transform: scale(1.04) translateY(-5px);
        }

        .feature-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .feature-badge {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--color-primary);
            background: rgba(var(--color-primary-rgb), 0.1);
            padding: 0.4rem 1rem;
            border-radius: 9999px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }
        
        .feature-badge.alt-badge {
            color: var(--color-secondary);
            background: rgba(var(--color-secondary-rgb), 0.1);
        }

        .feature-content h3 {
            font-size: 1.6rem;
            color: var(--color-secondary);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .feature-content p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
        }

        .feature-action {
            margin-top: auto;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 6rem 0 10rem 0;
            background: linear-gradient(180deg, #ffffff 0%, rgba(61, 181, 180, 0.04) 100%);
            overflow: hidden;
            position: relative;
        }

        .marquee-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 6rem;
            transform: rotate(-1.5deg) scale(1.02);
        }

        .marquee-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: scroll-left 45s linear infinite;
        }

        .marquee-track.reverse {
            animation: scroll-right 50s linear infinite;
        }

        .testimonial-pill {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: #ffffff;
            padding: 0.75rem 1.5rem 0.75rem 0.75rem;
            border-radius: 9999px;
            box-shadow: 0 10px 30px -10px rgba(18, 74, 110, 0.08);
            border: 1px solid rgba(18, 74, 110, 0.04);
            white-space: nowrap;
            transition: transform 0.3s var(--ease-premium), box-shadow 0.3s ease;
        }

        .testimonial-pill:hover {
            transform: scale(1.05);
            z-index: 10;
            box-shadow: 0 15px 40px -10px rgba(18, 74, 110, 0.15);
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--color-secondary);
            font-weight: 500;
        }

        .testimonial-quote {
            color: var(--color-primary);
            font-size: 1.2rem;
            opacity: 0.4;
            margin-left: 0.5rem;
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scroll-right {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials-header h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            color: var(--color-secondary);
            font-weight: 800;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .testimonials-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .ratings-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 5rem;
        }

        .rating-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid rgba(18, 74, 110, 0.06);
            box-shadow: 0 15px 40px -15px rgba(18, 74, 110, 0.06);
            display: flex;
            flex-direction: column;
            transition: transform 0.4s var(--ease-premium), border-color 0.4s ease;
        }

        .rating-card:hover {
            transform: translateY(-8px);
            border-color: rgba(61, 181, 180, 0.25);
            box-shadow: 0 20px 50px -15px rgba(18, 74, 110, 0.1);
        }

        .rating-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 1.5rem;
        }

        .rating-score {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--color-secondary);
            line-height: 1;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: baseline;
            gap: 0.2rem;
        }

        .rating-score span {
            font-size: 1.25rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .rating-stars {
            color: #FBBF24;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .rating-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: auto;
        }

        .loved-by {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .loved-text {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-secondary);
        }

        .avatar-group {
            display: flex;
            justify-content: center;
        }

        .avatar-group img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 3px solid #ffffff;
            object-fit: cover;
            margin-left: -15px;
            box-shadow: 0 4px 12px rgba(18, 74, 110, 0.15);
            transition: transform 0.3s var(--ease-premium), z-index 0.3s;
            position: relative;
            z-index: 1;
        }

        .avatar-group img:first-child {
            margin-left: 0;
        }

        .avatar-group img:hover {
            transform: translateY(-8px) scale(1.15);
            z-index: 20;
        }

        /* App Section */
        .app-section {
            padding: 8rem 0;
            background-color: var(--bg-color);
            overflow: hidden;
            position: relative;
            z-index: 10;
        }

        .app-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 5rem auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .app-header h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            color: var(--color-secondary);
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .app-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .justify-center { justify-content: center; }

        .app-visual-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 600px;
        }

        .phone-mockup {
            width: 320px;
            height: 650px;
            background-color: #0F172A;
            border-radius: 44px;
            padding: 12px;
            position: relative;
            box-shadow: 
                0 30px 60px -15px rgba(18, 74, 110, 0.3),
                inset 0 0 0 2px #334155,
                inset 0 0 0 6px #0F172A;
            z-index: 10;
            animation: float-phone 6s ease-in-out infinite;
            will-change: transform;
        }

        .phone-notch {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 28px;
            background-color: #0F172A;
            border-radius: 0 0 16px 16px;
            z-index: 20;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            border-radius: 32px;
            overflow: hidden;
            position: relative;
        }

        .phone-ui {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: left center;
        }

        .app-info-card {
            position: absolute;
            background: rgba(61, 181, 180, 0.08);
            padding: 2.5rem;
            width: 340px;
            z-index: 5;
            box-shadow: 0 20px 40px -15px rgba(18, 74, 110, 0.05);
            transition: transform 0.4s var(--ease-premium);
        }

        .app-info-card:hover {
            z-index: 15;
        }

        .app-info-card.left {
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 40px 40px 8px 40px;
        }
        
        .app-info-card.left:hover {
            transform: translateY(calc(-50% - 5px));
        }

        .app-info-card.right {
            right: -20px;
            bottom: 60px;
            border-radius: 40px 40px 40px 8px;
            background: rgba(18, 74, 110, 0.05);
        }
        
        .app-info-card.right:hover {
            transform: translateY(-5px);
        }

        .app-info-card h3 {
            font-size: 1.3rem;
            color: var(--color-secondary);
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .app-info-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

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

        /* Diferenciais Section */
        .diferenciais-section {
            padding: 8rem 0;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            position: relative;
        }
        
        .diferenciais-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem auto;
        }

        .diferenciais-header h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            color: var(--color-secondary);
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .diferenciais-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .diferenciais-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .diferencial-card {
            background: #ffffff;
            border-radius: 32px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px -10px rgba(18, 74, 110, 0.05);
            transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
        }

        .diferencial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(18, 74, 110, 0.12);
        }

        .diferencial-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(43, 179, 177, 0.15); /* Light tint of primary */
            color: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 2rem auto;
        }

        .diferencial-card h3 {
            font-size: 1.25rem;
            color: var(--color-secondary);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .diferencial-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Security Section */
        .security-section {
            padding: 8rem 0;
            background-color: #ffffff;
            overflow: hidden;
        }

        .security-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .security-content {
            padding-right: 2rem;
        }

        .security-icon {
            width: 64px;
            height: 64px;
            background-color: #f8fafc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: #475569;
            margin-bottom: 2rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }

        .security-content h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--color-primary); 
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .security-content .divider {
            width: 48px;
            height: 4px;
            background-color: #cbd5e1;
            margin-bottom: 2rem;
            border-radius: 2px;
        }

        .security-content h3 {
            font-size: 1.25rem;
            color: var(--color-secondary);
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .security-content p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }

        .security-visual {
            position: relative;
            padding: 2rem 0;
        }

        .security-dashboard {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(18, 74, 110, 0.15), 0 0 0 1px rgba(18, 74, 110, 0.05);
            overflow: hidden;
            position: relative;
            z-index: 10;
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: transform 0.5s ease;
        }
        
        .security-dashboard:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        .window-header {
            background: #f8fafc;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #e2e8f0;
        }

        .window-header .dots {
            display: flex;
            gap: 8px;
        }

        .window-header .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot.red { background: #ef4444; }
        .dot.yellow { background: #f59e0b; }
        .dot.green { background: #10b981; }

        .window-logo {
            font-weight: 700;
            color: var(--color-secondary);
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .window-logo i { color: var(--color-primary); }

        .dashboard-body {
            padding: 2rem 2.5rem;
        }

        .dashboard-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .dash-icon {
            width: 48px;
            height: 48px;
            background: var(--color-primary);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .dashboard-title h4 {
            font-size: 1.1rem;
            color: var(--color-secondary);
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .status-success {
            font-size: 0.85rem;
            color: #10b981;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .status-success i { font-size: 0.5rem; }

        .security-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .security-item {
            display: flex;
            align-items: center;
            padding: 1.25rem;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            background: #ffffff;
            transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
            will-change: transform, opacity;
        }

        .security-item:hover {
            border-color: #cbd5e1;
            box-shadow: 0 4px 10px -2px rgba(0,0,0,0.05);
            transform: translateY(-2px);
        }

        .item-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1.25rem;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .bg-green { background: var(--color-primary); }
        .bg-blue { background: var(--color-secondary); }
        .bg-purple { background: var(--color-complementary-1); }
        .bg-orange { background: var(--color-accent); }

        .item-info {
            flex-grow: 1;
        }

        .item-info h5 {
            font-size: 0.95rem;
            color: var(--color-secondary);
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .item-info span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .item-status {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .item-status i { font-size: 0.4rem; }

        .status-green {
            background: #d1fae5;
            color: #059669;
        }

        .progress-container {
            border-top: 1px solid #e2e8f0;
            padding-top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            align-items: flex-end;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-fill {
            width: 100%;
            height: 100%;
            background: var(--color-primary);
            border-radius: 4px;
            transform-origin: left;
            animation: fill-progress 2s ease-out forwards;
        }

        @keyframes fill-progress {
            0% { transform: scaleX(0); }
            100% { transform: scaleX(1); }
        }

        .progress-text {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .floating-badge {
            position: absolute;
            background: #ffffff;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.02);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 20;
        }

        .badge-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .badge-icon.green { background: var(--color-primary); }
        .badge-icon.teal { background: var(--color-secondary); }

        .badge-text {
            display: flex;
            flex-direction: column;
        }

        .badge-text strong {
            font-size: 0.95rem;
            color: var(--color-secondary);
            font-weight: 700;
        }

        .badge-text span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .badge-top-right {
            top: -15px;
            right: -25px;
            animation: float-badge 5s ease-in-out infinite;
        }

        .badge-bottom-left {
            bottom: 5px;
            left: -40px;
            animation: float-badge 6s ease-in-out infinite reverse;
        }

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

        /* Pricing Section */
        .pricing-section {
            padding: 8rem 0;
            background-color: #f8fafc;
        }

        .pricing-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem auto;
        }

        .pricing-header h2 {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            color: var(--color-secondary);
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .pricing-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center; 
        }

        .pricing-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 3rem 2.5rem;
            box-shadow: 0 10px 40px -10px rgba(18, 74, 110, 0.05);
            transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
            position: relative;
            display: flex;
            flex-direction: column;
            border: 1px solid #e2e8f0;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(18, 74, 110, 0.12);
        }

        .pricing-card.popular {
            background: var(--color-secondary);
            color: #ffffff;
            border: none;
            padding: 4rem 2.5rem;
            box-shadow: 0 25px 50px -12px rgba(18, 74, 110, 0.25);
            transform: scale(1.05);
            z-index: 10;
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .popular-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-primary);
            color: #ffffff;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(43, 179, 177, 0.4);
        }

        .plan-name {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--color-secondary);
        }

        .pricing-card.popular .plan-name {
            color: #ffffff;
        }

        .plan-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.5;
            min-height: 45px;
        }

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

        .plan-price {
            margin-bottom: 2.5rem;
            display: flex;
            align-items: baseline;
        }

        .plan-price .currency {
            font-size: 1.5rem;
            font-weight: 600;
            margin-right: 0.25rem;
        }

        .plan-price .amount {
            font-size: 4rem;
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1;
        }

        .plan-price .period {
            font-size: 1rem;
            color: var(--text-muted);
            margin-left: 0.25rem;
            font-weight: 500;
        }

        .pricing-card.popular .plan-price .period {
            color: rgba(255, 255, 255, 0.8);
        }

        .plan-btn {
            width: 100%;
            text-align: center;
            margin-bottom: 2.5rem;
            padding: 1rem;
            font-size: 1.1rem;
        }
        
        .pricing-card .btn-outline {
            border-color: #cbd5e1;
            color: var(--color-secondary);
        }
        
        .pricing-card .btn-outline:hover {
            border-color: var(--color-secondary);
            background: var(--color-secondary);
            color: #ffffff;
        }

        .pricing-card.popular .btn-primary {
            background: var(--color-primary);
            color: #ffffff;
        }
        
        .pricing-card.popular .btn-primary:hover {
            background: #239b99;
            transform: translateY(-2px);
        }

        .plan-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .plan-features li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 1rem;
            line-height: 1.4;
            color: var(--color-secondary);
            font-weight: 500;
        }

        .pricing-card.popular .plan-features li {
            color: #ffffff;
        }

        .plan-features li i {
            color: var(--color-primary);
            font-size: 1.2rem;
            margin-top: 2px;
        }

        .pricing-card.popular .plan-features li i {
            color: #ffffff;
        }

        .plan-features li.disabled {
            color: #94a3b8;
            text-decoration: line-through;
        }
        
        .pricing-card.popular .plan-features li.disabled {
            color: rgba(255, 255, 255, 0.4);
        }

        .plan-features li.disabled i {
            color: #cbd5e1;
            text-decoration: none;
        }

        .pricing-card.popular .plan-features li.disabled i {
            color: rgba(255, 255, 255, 0.4);
        }

        /* CTA Section */
        .cta-section {
            padding: 2rem 0 8rem 0;
        }

        .cta-card {
            background-color: var(--color-secondary);
            border-radius: 40px;
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 30px 60px -15px rgba(18, 74, 110, 0.35);
        }

        /* Light beam effect */
        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                115deg,
                transparent 30%,
                rgba(43, 179, 177, 0.5) 45%,
                rgba(255, 255, 255, 0.2) 50%,
                transparent 65%
            );
            pointer-events: none;
            z-index: 1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
            margin: 0 auto;
        }

        .cta-avatars {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .cta-avatars img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 3px solid #ffffff;
            margin-left: -15px;
            object-fit: cover;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.3s var(--ease-premium);
        }

        .cta-avatars img:first-child {
            margin-left: 0;
        }

        .cta-avatars img:hover {
            transform: translateY(-5px) scale(1.1);
            z-index: 10;
        }

        .cta-pill {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-content h2 {
            font-size: clamp(2.25rem, 4vw, 3.5rem);
            color: #ffffff;
            font-weight: 800;
            margin-bottom: 1.25rem;
            letter-spacing: -0.02em;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .btn-white {
            background: #ffffff;
            color: var(--color-secondary);
            font-weight: 700;
            padding: 1.25rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-white:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            color: var(--color-primary);
        }

        /* Footer Section */
        .footer {
            background-color: #ffffff;
            border-top: 1px solid #e2e8f0;
            padding: 6rem 0 2rem 0;
            color: var(--color-secondary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .brand-col p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            max-width: 320px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(43, 179, 177, 0.1);
            color: var(--color-primary);
            border-radius: 50%;
            transition: all 0.3s var(--ease-premium);
            text-decoration: none;
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: var(--color-primary);
            color: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(43, 179, 177, 0.3);
        }

        .footer-col h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--color-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        .footer-col ul a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-block;
        }

        .footer-col ul a:hover {
            color: var(--color-primary);
            transform: translateX(4px);
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .cert-badge {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: transform 0.3s ease, border-color 0.3s ease;
            cursor: default;
        }

        .cert-badge:hover {
            transform: translateY(-2px);
            border-color: var(--color-primary);
            background: #ffffff;
            box-shadow: 0 8px 20px rgba(43, 179, 177, 0.15);
        }

        .cert-badge i {
            color: var(--color-primary);
            font-size: 1.4rem;
        }

        .cert-badge span {
            font-size: 0.75rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-secondary);
        }

        .footer-bottom {
            border-top: 1px solid #e2e8f0;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #94a3b8;
            font-size: 0.85rem;
        }

        /* Media Queries */
        @media (max-width: 1024px) {
            .nav-menu { display: none; }
            .header-actions { display: none; }
            .mobile-toggle { display: block; }
            .hero-content { width: 55%; }
            .features-grid { grid-template-columns: 1fr; }
            .feature-image-wrapper { height: 280px; }
            .ratings-grid { grid-template-columns: repeat(2, 1fr); }
            .app-info-card.left { left: 0; }
            .app-info-card.right { right: 0; }
            .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
            .security-grid { grid-template-columns: 1fr; gap: 5rem; }
            .security-content { padding-right: 0; text-align: center; }
            .security-content .divider { margin-left: auto; margin-right: auto; }
            .security-icon { margin: 0 auto 2rem auto; }
            .badge-bottom-left { left: 10px; bottom: -20px; }
            .badge-top-right { right: 10px; }
            
            .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
            .pricing-card.popular {
                transform: scale(1);
                padding: 3rem 2.5rem;
            }
            .pricing-card.popular:hover { transform: translateY(-8px); }
            .plan-desc { min-height: auto; }
            
            .cta-card {
                padding: 4rem 1.5rem;
                border-radius: 32px;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-grid {
                flex-direction: column;
                text-align: center;
                gap: 4rem;
                justify-content: center;
                padding-bottom: 4rem;
            }
            .hero-content {
                width: 100%;
                align-items: center;
                padding-top: 2rem;
            }
            .hero .subheadline {
                max-width: 100%;
            }
            .hero-ctas {
                flex-direction: row;
                justify-content: center;
                width: 100%;
            }
            .hero-ctas .btn {
                width: auto;
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
            .trust-box {
                flex-direction: column;
                gap: 1rem;
            }
            .hero-visual-container {
                position: relative;
                width: 100%;
                right: 0;
                top: 0;
                transform: none;
                margin-top: 2rem;
            }
            .ratings-grid { grid-template-columns: 1fr; }
            .avatar-group img { width: 40px; height: 40px; margin-left: -10px; }
            
            .app-visual-container {
                flex-direction: column;
                gap: 2.5rem;
            }
            .app-info-card {
                position: relative;
                width: 100%;
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                transform: none !important;
                border-radius: 24px !important;
            }
            .phone-mockup {
                width: 100%;
                max-width: 320px;
                height: 600px;
                margin: 0 auto;
            }
            .diferenciais-grid { grid-template-columns: 1fr; }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .cert-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
