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

        :root {
            --primary: #4F46E5;
            --primary-dark: #4338CA;
            --primary-light: #6366F1;
            --text-primary: #1F2937;
            --text-secondary: #6B7280;
            --bg-light: #F9FAFB;
            --bg-white: #FFFFFF;
            --border: #E5E7EB;
            --success: #03724e;
        }

        body {
            font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        @supports (font-variation-settings: normal) {
            body {
                font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            }
        }

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

        /* Header */
        header {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1002;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
        }

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

        nav {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        /* Language Selector */
        .language-selector {
            position: relative;
            cursor: pointer;
        }

        .language-selector-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .globe-icon {
            font-size: 24px !important;
            color: var(--text-secondary) !important;
            transition: all 0.3s ease;
        }

        .language-selector:hover .globe-icon {
            color: var(--primary) !important;
            transform: rotate(180deg);
        }

        .language-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: white;
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            min-width: 100px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .language-selector:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option {
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            display: block;
            text-decoration: none;
        }

        .language-option:hover {
            background: var(--bg-light);
            color: var(--primary);
        }

        .language-option:first-child {
            border-radius: 8px 8px 0 0;
        }

        .language-option:last-child {
            border-radius: 0 0 8px 8px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 10px 24px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
        }

        .btn-primary:visited,
        .btn-primary:active {
            color: white;
        }

        .btn-primary-highlight {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: white;
            padding: 18px 48px;
            border-radius: 12px;
            border: 3px solid rgba(255, 255, 255, 0.5);
            font-weight: 800;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 12px 32px rgba(79, 70, 229, 0.25);
            animation: pulse-highlight 2s infinite;
            letter-spacing: 0.02em;
        }

        .btn-primary-highlight:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 16px 40px rgba(79, 70, 229, 0.35);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }

        @keyframes pulse-highlight {

            0%,
            100% {
                box-shadow: 0 12px 32px rgba(79, 70, 229, 0.25), 0 0 0 0 rgba(79, 70, 229, 0.2);
            }

            50% {
                box-shadow: 0 12px 32px rgba(79, 70, 229, 0.25), 0 0 0 10px rgba(79, 70, 229, 0);
            }
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            padding: 10px 24px;
            border-radius: 8px;
            border: 2px solid var(--primary);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

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

        /* Hero Section */
        .hero {
            background: white;
            padding: 60px 0 40px;
            text-align: center;
            color: var(--text-primary);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 36px;
            opacity: 0.95;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 32px;
            flex-wrap: wrap;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: left;
        }

        .feature-icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #EEF2FF; /* Indigo-50 */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon-circle .material-icons {
            color: var(--primary);
            font-size: 20px;
        }

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

        .feature-text strong {
            color: var(--text-primary);
            font-size: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .feature-text span {
            color: var(--text-secondary);
            font-size: 13px;
        }

        .hero-description {
            color: #4b5563 !important; /* Gray-600 for better visibility */
            font-weight: 400;
        }

        .shimmer-text {
            font-weight: 800;
            background: linear-gradient(to right, var(--primary) 0%, #a5b4fc 50%, var(--primary) 100%);
            background-size: 200% auto;
            color: #4F46E5; /* Fallback */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            to {
                background-position: 200% center;
            }
        }

        .hero-mockup {
            margin-top: 80px;
            position: relative;
            z-index: 1;
            display: inline-block;
        }

        .hero-mockup::before {
            content: '';
            position: absolute;
            top: -15%;
            right: -15%;
            width: 130%;
            height: 130%;
            background: linear-gradient(135deg,
                rgba(79, 70, 229, 0.4) 0%,
                rgba(99, 102, 241, 0.3) 40%,
                rgba(129, 140, 248, 0.2) 70%,
                transparent 100%);
            border-radius: 30%;
            filter: blur(80px);
            z-index: -1;
            pointer-events: none;
        }

        .hero-mockup img {
            max-width: 1100px;
            width: 100%;
            min-height: 500px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
            display: block;
            position: relative;
            z-index: 1;
        }

        /* Material Icons */
        .material-icons {
            font-size: 28px;
            color: var(--text-primary);
        }

        .material-icons.benefit-mat-icon {
            font-size: 24px;
        }

        /* Feature Cards */
        .features {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .feature-card {
            background: white;
            padding: 32px;
            border-radius: 12px;
            border: 2px solid var(--border);
            transition: all 0.3s;
            cursor: pointer;
        }

        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(79, 70, 229, 0.15);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
        }

        .feature-icon .material-icons {
            color: white;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .feature-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 48px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .benefit-item {
            display: flex;
            gap: 16px;
        }

        .benefit-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
        }

        .benefit-icon .material-icons {
            color: white;
        }

        .benefit-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .benefit-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Pricing */
        .pricing {
            padding: 80px 0;
            background: var(--bg-white);
        }

        /* Pricing Toggle Buttons */
        .pricing-toggle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 48px;
        }

        .pricing-toggle {
            display: flex;
            background: #F3F4F6;
            border-radius: 999px;
            padding: 6px;
        }

        .pricing-toggle button {
            border: none;
            background: transparent;
            padding: 10px 28px;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            color: #000000;
            transition: all 0.3s;
            font-size: 15px;
        }

        .pricing-toggle button.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
        }

        .pricing-toggle button:hover:not(.active) {
            color: var(--primary);
        }

        .pricing-discount {
            background: var(--success);
            color: white;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 32px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            border: 2px solid var(--border);
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
        }

        .pricing-card.featured {
            border-color: var(--primary);
            background: linear-gradient(135deg, #F0F4FF 0%, #E8EDFF 100%);
        }

        .pricing-badge {
            position: absolute;
            top: 24px;
            right: 24px;
            background: var(--primary);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .pricing-card h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .pricing-card .price {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin: 20px 0;
            flex-wrap: wrap; /* in case price is very long */
        }

        .pricing-card .price .price-value {
            font-size: 56px; /* Increased size */
            font-weight: 800;
            color: #111827; /* Black/Dark */
            line-height: 1;
        }

        .pricing-card .price .price-unit {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .pricing-savings-text {
            color: var(--success);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
            display: block;
            width: fit-content;
            padding: 4px 12px;
            border: 1px dashed var(--success);
            background-color: rgba(16, 185, 129, 0.1);
            border-radius: 6px;
        }



        .pricing-card .price-original {
            font-size: 20px;
            color: var(--text-secondary);
            text-decoration: line-through;
            margin-right: 8px;
        }

        .pricing-features {
            list-style: none;
            margin: 24px 0;
        }

        .pricing-card .btn-primary,
        .pricing-card .btn-secondary {
            padding: 18px 32px;
            font-size: 16px;
            font-weight: 800;
            border-radius: 12px;
            margin-top: 16px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s;
        }

        .pricing-card .btn-primary:hover,
        .pricing-card .btn-secondary:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .pricing-features li {
            padding: 10px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .pricing-features li.addon {
            padding: 4px 0 10px 28px;
            font-size: 12px;
            color: #707077;
        }

        .pricing-features li.addon::before {
            content: '+';
            font-size: 12px;
            color: #707077;
            margin-left: -16px;
        }

        /* Testimonials Marquee Section */
        .testimonials-marquee {
            padding: 100px 0;
            background: var(--bg-light);
            overflow: hidden;
        }

        .testimonials-track-container {
            max-width: 1280px;
            margin: 60px auto 0;
            overflow: hidden;
            position: relative;
            /* Optional: Add gradient masks for smooth fade edges if desired, 
               but for now just constraining width as requested */
        }

        .badge-pill-container {
            display: flex;
            justify-content: center;
            margin-bottom: 24px;
        }

        .badge-pill {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .testimonials-track {
            display: flex;
            width: max-content;
            gap: 24px;
            animation: scroll 40s linear infinite;
        }

        .testimonials-track:hover {
            animation-play-state: paused;
        }

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

        .testimonial-card-marquee {
            width: 350px;
            background: white;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid var(--border);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            flex-shrink: 0;
        }

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

        .user-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

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

        .user-details h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .user-details span {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .testimonial-text {
            font-size: 15px;
            color: var(--text-primary);
            line-height: 1.5;
        }
        
        .verified-icon {
            color: var(--primary);
            font-size: 16px;
        }

        .platform-icon {
            color: #1DA1F2; /* Twitter/X Color example */
            font-size: 20px;
        }

        /* FAQ */
        .faq {
            padding: 80px 0;
            background: var(--bg-white);
        }

        .faq-list {
            max-width: 800px;
            margin: 48px auto 0;
        }

        .faq-item {
            background: white;
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 2px solid var(--border);
            cursor: pointer;
            transition: all 0.3s;
        }

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

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
        }

        .faq-icon {
            color: var(--primary);
            font-size: 24px;
            font-weight: 300;
            transition: transform 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.6;
            padding-top: 16px;
            margin: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

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

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 30%, #dfe6ff 60%, #d6dfff 100%);
            text-align: center;
            color: var(--text-primary);
        }

        .cta h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta p {
            font-size: 18px;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .cta .btn-primary {
            font-size: 16px;
            padding: 14px 32px;
        }

        .cta .btn-primary:hover {
            transform: translateY(-4px);
        }

        /* Footer */
        footer {
            background: #1F2937;
            color: white;
            padding: 60px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-section p {
            color: #9CA3AF;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-section a {
            display: block;
            color: #9CA3AF;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .social-icons {
            display: flex;
            justify-content: flex-start;
            gap: 16px;
            margin-top: 20px;
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            color: #9CA3AF;
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            position: relative;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            transform: translateY(-8px) rotate(-45deg);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: calc(36px + 32px + 2px);
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 999;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .mobile-menu.active {
            max-height: 100vh;
            overflow-y: auto;
        }

        .mobile-menu nav {
            display: flex;
            flex-direction: column;
            padding: 20px 24px;
            gap: 0;
        }

        .mobile-menu nav a {
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
        }

        .mobile-menu nav a:last-child {
            border-bottom: none;
        }

        .mobile-menu nav .btn-primary {
            margin-top: 12px;
            text-align: center;
            display: block;
            width: 100%;
            color: white !important;
        }

        .mobile-menu nav .language-selector {
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
        }

        .mobile-menu nav .language-dropdown {
            position: static;
            width: 100%;
            margin-top: 10px;
            box-shadow: none;
            border: 1px solid var(--border);
            display: none;
        }

        .mobile-menu nav .language-dropdown.active {
            display: block;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .header-content nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-mockup {
                display: none;
            }

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

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

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

            .pricing-card .price {
                flex-wrap: wrap; /* Permitir quebra entre original e atual */
                justify-content: center;
                align-items: baseline;
                gap: 4px;
            }

            .pricing-card .price .price-original {
                font-size: 16px;
                width: 100%; /* Força a ocupar a linha de cima inteira */
                text-align: center;
                margin-right: 0;
            }

            .pricing-card .price .price-value {
                font-size: 42px;
                white-space: nowrap; /* Impede separar o R$ do 149,90 */
            }

            .pricing-card .price .price-unit {
                white-space: nowrap;
            }

            .hero-features {
                flex-direction: column;
                align-items: flex-start;
                width: fit-content;
                margin-left: auto;
                margin-right: auto;
                gap: 24px;
            }

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

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.6s ease-out;
        }