        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #023E8A;
            --primary-dark: #012a5f;
            --primary-light: #0353b5;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 5px 25px rgba(2, 62, 138, 0.1);
            --shadow-hover: 0 8px 30px rgba(2, 62, 138, 0.15);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Notification Banner */
        .notification-banner {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 16px 2rem;
            text-align: center;
            font-weight: 600;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
            z-index: 1001;
        }
        
        .notification-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }
        
        .notification-banner .banner-content {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            animation: pulse-text 2s ease-in-out infinite;
        }
        
        @keyframes pulse-text {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }
        
        .notification-banner i {
            animation: bounce 1s ease-in-out infinite;
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        
        .notification-banner .offer-text {
            font-weight: 700;
            color: #FFD700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        
        /* Floating Buttons */
        .floating-whatsapp {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 999;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            animation: pulse-whatsapp 2s infinite;
        }
        
        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }
        
        .floating-whatsapp i {
            font-size: 40px;
            color: white;
        }
        
        @keyframes pulse-whatsapp {
            0%, 100% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
            }
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        header.scrolled .nav-menu a {
            color: white;
        }
        
        header.scrolled .nav-menu a:hover {
            color: var(--primary-color);
        }
        
        header.scrolled .mobile-menu-btn {
            color: var(--white);
        }
        
        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            height: 50px;
            width: auto;
            cursor: pointer;
            display: block;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3.5rem;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        
        .nav-menu a:hover {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--white);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 100%);
            padding: 40px 2rem;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .movie-posters-slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            z-index: 0;
        }
        
        .poster-slide {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            padding: 1rem;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        
        .poster-slide.active {
            opacity: 0.3;
        }
        
        .poster-box {
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInLeft 1s ease-out;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.8;
            animation: fadeInLeft 1s ease-out 0.2s backwards;
        }
        
        .hero-content .btn {
            animation: fadeInLeft 1s ease-out 0.4s backwards;
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-image {
            position: relative;
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            z-index: 10;
            animation: zoomIn 1s ease-out 0.6s backwards;
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Mac Screen Styles */
        .mac-container {
            width: 100%;
            max-width: 900px;
        }

        .mac-screen {
            background: #1e1e1e;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .mac-header {
            background: #2d2d2d;
            border-radius: 8px 8px 0 0;
            padding: 12px 15px;
            margin: -30px -30px 20px -30px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mac-buttons {
            display: flex;
            gap: 8px;
        }

        .mac-button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .mac-button.red { background: #ff5f56; }
        .mac-button.yellow { background: #ffbd2e; }
        .mac-button.green { background: #27c93f; }

        .screen-display {
            background: #000;
            border-radius: 8px;
            height: 450px;
            position: relative;
            overflow: hidden;
        }

        .mac-slider-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .mac-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
        }

        .mac-slide img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            object-position: center;
            border-radius: 4px;
        }

        .mac-slide.entering {
            animation: macSlideIn 1.5s ease-in-out forwards;
        }

        .mac-slide.exiting {
            animation: macSlideOut 1.5s ease-in-out forwards;
        }

        @keyframes macSlideIn {
            0% {
                transform: translateX(-120%);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes macSlideOut {
            0% {
                transform: translateX(0);
                opacity: 1;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateX(120%);
                opacity: 0;
            }
        }
        
        /* Section Styles */
        section {
            padding: 80px 2rem;
            position: relative;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        h2 {
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 3rem;
            color: black;
            position: relative;
            animation: fadeInDown 0.8s ease-out;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        h3 {
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(2, 62, 138, 0.4);
        }
        
        .btn:active {
            transform: translateY(-1px) scale(1.02);
        }
        
        .btn-white {
            padding-top: 20px;
            background: var(--primary-color);
            color: var(--white);
            font-size: 1.2rem;
        }
        
        .btn-white:hover {
            background: var(--primary-light);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }
        
        /* Templates Slider Section */
        .templates-section {
            background: var(--bg-light);
        }
        
        .slider-container {
            overflow: hidden;
            margin: 3rem 0;
            position: relative;
            background: var(--bg-light);
            padding: 50px 0px;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        .templates-slider {
            display: flex;
            gap: 2rem;
            animation: scroll 30s linear infinite;
        }
        
        .template-card {
            min-width: 500px;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .template-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 15px 40px rgba(2, 62, 138, 0.25);
        }
        
        .template-card:hover .template-image {
            transform: scale(1.05);
        }
        
        .template-image {
            width: 100%;
            height: 550px;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            position: relative;
            transition: transform 0.4s ease;
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
        }
        
        .template-info {
            padding: 1.5rem;
            text-align: center;
            background: #F8F9FA;
        }
        
        .template-info h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: black;
            font-weight: 700;
        }
        
        .template-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
    
        }
        
        .template-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            font-size: 0.95rem;
        }
        
        .template-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.4s, height 0.4s;
        }
        
        .template-btn:hover::before {
            width: 200px;
            height: 200px;
        }
        
        .template-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(2, 62, 138, 0.3);
        }
        
        .template-btn i {
            transition: transform 0.3s ease;
        }
        
        .template-btn:hover i {
            transform: scale(1.2);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .slider-container:hover .templates-slider {
            animation-play-state: paused;
        }
        
        .section-description {
            text-align: center;
            max-width: 800px;
            margin: 2rem auto 3rem;
            color: var(--text-dark);
            font-size: 1.1rem;
        }
        
        .text-center {
            text-align: center;
            margin-top: 2rem;
        }
        
        /* How It Works Section */
        .how-it-works {
            background: var(--white);
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .step-card {
            background: var(--primary-color);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            color: var(--white);
            animation: fadeInUp 0.6s ease-out backwards;
        }
        
        .step-card:nth-child(1) { animation-delay: 0.1s; }
        .step-card:nth-child(2) { animation-delay: 0.2s; }
        .step-card:nth-child(3) { animation-delay: 0.3s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .step-card:hover {
            border-color: var(--primary-dark);
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 40px rgba(2, 62, 138, 0.3);
        }
        
        .step-card:hover .step-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .step-icon {
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--primary-color);
            animation: pulse 2s ease-in-out infinite;
            transition: transform 0.3s ease;
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
        }
        
        .step-card h4 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--white);
        }
        
        .step-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        
        /* Statistics Section */
        .statistics {
            background: var(--primary-color);
            color: var(--white);
            padding: 60px 2rem;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .stat-item {
            text-align: center;
            animation: fadeInUp 0.8s ease-out backwards;
        }
        
        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }
        
        .stat-number {
            font-size: 4.5rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Features Section */
        .features {
            background: var(--bg-light);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background: var(--primary-color);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            color: var(--white);
            animation: fadeInUp 0.6s ease-out backwards;
        }
        
        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }
        
        .feature-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 15px 40px rgba(2, 62, 138, 0.4);
            background: var(--primary-dark);
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotateY(360deg);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            transition: transform 0.6s ease;
        }
        
        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--white);
        }
        
        .feature-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        
        /* Performance Report Section */
        .performance {
            background: var(--white);
        }
        
        .performance-image {
            max-width: 900px;
            margin: 3rem auto;
            height: 500px;
            background: var(--bg-light);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            color: var(--text-light);
            font-size: 1.3rem;
            animation: float 6s ease-in-out infinite;
            border: 2px solid rgba(2, 62, 138, 0.1);
            background-size: cover;
            background-position: left-center;
            background-repeat: no-repeat;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        /* FAQ Section */
        .faq {
            background: var(--bg-light);
        }
        
        .faq-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            align-items: start;
        }
        
        .faq-item {
            background: var(--primary-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            color: var(--white);
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease-out backwards;
        }
        
        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.15s; }
        .faq-item:nth-child(3) { animation-delay: 0.2s; }
        .faq-item:nth-child(4) { animation-delay: 0.25s; }
        .faq-item:nth-child(5) { animation-delay: 0.3s; }
        .faq-item:nth-child(6) { animation-delay: 0.35s; }
        .faq-item:nth-child(7) { animation-delay: 0.4s; }
        .faq-item:nth-child(8) { animation-delay: 0.45s; }
        
        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(2, 62, 138, 0.3);
        }
        
        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--white);
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--primary-dark);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1rem 2rem 1.5rem 2rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            background: var(--white);
            overflow: hidden;
            padding: 0px 0px;

        }
        
        .testimonials-slider {
            display: flex;
            gap: 2rem;
            animation: scrollTestimonials 40s linear infinite;
            padding: 2rem 0;
        }
        
        .testimonial-card {
            min-width: 300px;
            background: var(--bg-light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .whatsapp-screen {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            height: 500px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.3);
            font-size: 1.2rem;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        @keyframes scrollTestimonials {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* CTA Banner */
        .cta-banner {
            padding: 80px 10rem;
        }
        
        .cta-banner-inner {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 60px 80px;
            border-radius: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .cta-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .cta-content {
            color: var(--white);
        }
        
        .cta-content h3 {
            color: var(--white);
            margin-bottom: 1rem;
        }
        
        .cta-content p {
            opacity: 0.95;
            line-height: 1.8;
        }
        
        .cta-contact {
            text-align: center;
        }
        
        .whatsapp-icon {
            width: 80px;
            height: 80px;
            background: #25D366;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        
        .whatsapp-icon:hover {
            transform: scale(1.1);
        }
        
        .cta-contact a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 3rem 2rem 2rem;
        }
        
        .footer-links {
            max-width: 1200px;
            margin: 0 auto 2rem;
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .footer-links a:hover {
            color: var(--primary-light);
        }
        
        .disclaimer {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            line-height: 1.8;
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {

            .logo {
                height: 35px;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--primary-dark);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-image {
                height: 450px;
            }

            .mac-screen {
                padding: 20px;
            }

            .mac-header {
                margin: -20px -20px 15px -20px;
                padding: 10px 12px;
            }

            .screen-display {
                height: 350px;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .faq-container {
                grid-template-columns: 1fr;
            }
            
            .cta-banner-inner {
                padding: 40px 30px;
                border-radius: 20px;
            }
            
            .cta-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .floating-whatsapp {
                width: 50px;
                height: 50px;
                left: 15px;
                bottom: 15px;
            }
            
            .floating-whatsapp i {
                font-size: 24px;
            }

            .cta-banner {
                padding: 60px 1rem;
            }
            
            .cta-banner-inner {
                padding: 40px 30px;
                border-radius: 20px;
            }
            
            .cta-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;  
            }
            
            .cta-content h3 {
                font-size: 1.8rem;
            }

            .templates-slider {
                animation: scroll 20s linear infinite;
                width: max-content;
            }
            
            .testimonials-slider {
                animation: scrollTestimonials 40s linear infinite;
                width: max-content;
            }

            .template-card {
                min-width: 400px;
            }
            
            .template-image {
                height: 450px;
            }
            
            .slider-container {
                padding: 40px 15px;
            }

            .notification-banner {
                font-size: 0.9rem;
                padding: 10px 1rem;
            }
        }
        
        @media (max-width: 576px) {

            .logo {
                height: 30px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero {
                padding: 60px 1rem;
            }

            .hero-image {
                height: 400px;
            }

            .mac-screen {
                padding: 15px;
            }

            .mac-header {
                margin: -15px -15px 10px -15px;
                padding: 8px 10px;
            }

            .mac-button {
                width: 10px;
                height: 10px;
            }

            .screen-display {
                height: 250px;
            }
            
            section {
                padding: 60px 1rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }

            .cta-banner {
                padding: 40px 1rem;
            }
            
            .cta-banner-inner {
                padding: 30px 20px;
                border-radius: 15px;
            }
            
            .cta-content h3 {
                font-size: 1.5rem;
            }
            
            .cta-content p {
                font-size: 0.95rem;
            }
            
            .whatsapp-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .templates-slider {
                animation: scroll 20s linear infinite;
                gap: 1rem;
                width: max-content;
            }

            .template-card {
                min-width: 280px;
            }
            
            .template-image {
                height: 350px;
                background-size: cover;
                background-position: top center;
            }
            
            .slider-container {
                padding: 30px 10px;
            }
            
            
            .template-info {
                padding: 1rem;
            }
            
            .template-info h4 {
                font-size: 1rem;
            }
            
            .template-buttons {
                flex-direction: column;
                gap: 0.75rem;
            }
            
            .template-btn {
                padding: 10px 20px;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }
            
            .testimonials-slider {
                animation: scrollTestimonials 40s linear infinite;
                width: max-content;
            }

            .notification-banner {
                font-size: 0.8rem;
                padding: 8px 0.5rem;
            }

            .notification-banner .banner-content {
                flex-direction: column;
                gap: 5px;
            }
        }