        :root {
            /* Nova paleta com roxo sofisticado */
            --primary: #5D24D4;  /* Roxo principal - equilibrado e profissional */
            --primary-dark: #5a3d80; /* Tom mais escuro para hover */
            --primary-light: #7d5ba6; /* Tom mais claro para detalhes */
            --secondary: #ff9f1c; /* Laranja como cor de destaque */
            --dark: #2d3047; /* Azul escuro quase preto para textos */
            --light: #f8f9fa; /* Fundo claro */
            --gray: #adb5bd; /* Cinza para textos secundários */
            --accent: #ff9f1c; /* Cor de destaque (mantido o laranja) */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif; /* Fonte aplicada globalmente */
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        nav img {
            width: 75px;
            height: auto;
        }
        
            
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .cta-button {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
            color: white;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
               /* Botões Atualizados */
        .btn {
            position: relative;
            overflow: hidden;
            border-radius: 100px;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            min-width: 160px;
            height: 48px;
            text-decoration: none;
            border-radius: 4px; /* Adicione se quiser bordas arredondadas */
        }

        .btn span {
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        }
        

        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.1);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
        }
        
        .btn-accent {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 4px 15px rgba(114, 9, 183, 0.3);
        }
        
        .btn-accent:hover {
            background-color: #5e0b9b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(114, 9, 183, 0.4);
        }
        
        .btn i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .btn:hover i {
            transform: translateX(4px);
        }

        .btn:hover span {
            transform: translateY(-2px);
        }
        
        /* Efeito de onda nos botões */
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .btn:focus:not(:active)::after {
            animation: ripple 0.6s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        
        /* Filtros Atualizados */
        .filter-button {
            background-color: transparent;
            border: 2px solid var(--gray);
            color: var(--dark);
            padding: 8px 22px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-weight: 500;
            margin: 5px;
        }
        
        .filter-button.active, .filter-button:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(67, 97, 238, 0.2);
        }

                /* SEÇÃO DE DEPOIMENTOS ATUALIZADA */
        #testimonials {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .testimonials-container {
            display: flex;
            gap: 20px;
            padding: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .testimonial-card {
            flex: 0 0 280px;
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            scroll-snap-align: start;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .testimonial-card::before {
            content: """;
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 80px;
            color: rgba(106, 76, 147, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .testimonial-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 12px;
            border: 2px solid var(--primary);
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--gray);
        }

        .testimonial-quote {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--dark);
            margin-bottom: 15px;
            font-style: italic;
        }

        .testimonial-rating {
            color: var(--secondary);
            font-size: 0.85rem;
        }

        /* SCROLLBAR PERSONALIZADA */
        .testimonials-container::-webkit-scrollbar {
            height: 6px;
        }

        .testimonials-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .testimonials-container::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        /* RESPONSIVO */
        @media (max-width: 768px) {
            .testimonial-card {
                flex: 0 0 85vw;
                padding: 20px;
            }
        }
        
        /* Botão Mostrar Mais/Menos */
        .show-more-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(114, 9, 183, 0.3);
        }
        
        .show-more-btn:hover {
            background-color: #5e0b9b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(114, 9, 183, 0.4);
        }
        
        .show-more-btn i {
            transition: transform 0.3s;
        }
        
        .show-more-btn:hover i {
            transform: translateY(2px);
        }
        
        /* Header Atualizado */
        header {
            background-color: white;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        /* Hero Section Atualizada */
        #hero {
            padding-top: 120px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .hero-text h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
            font-weight: 700;
        }
        
        .hero-text h1 span {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .hero-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: rgba(67, 97, 238, 0.2);
            z-index: -1;
            border-radius: 3px;
        }
        
        /* Cards de Portfólio Atualizados */
        .portfolio-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: white;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(20, 33, 61, 0.9), transparent);
            padding: 25px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        .portfolio-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .portfolio-link:hover {
            background-color: var(--primary-dark);
            transform: translateX(5px);
        }

        /* Hero Section Atualizada */
        #hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg5MyLCAzNiwgMjEyLCAwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.5;
            z-index: 0;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(93, 36, 212, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
            font-weight: 700;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-text h1 span {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .hero-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: rgba(67, 97, 238, 0.2);
            z-index: -1;
            border-radius: 3px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn {
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn .hover-effect {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
            transition: transform 0.4s ease;
            z-index: 1;
        }

        .btn:hover .hover-effect {
            transform: translateX(100%);
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .hero-image {
            flex: 1;
            height: auto;
            position: relative;
            animation: fadeInRight 1s ease;
        }


        .image-wrapper {
            position: relative;
            border-radius: 20px;
            height: 600px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-10deg);
            transition: transform 0.6s ease;
        }
        

        .hero-image:hover .image-wrapper {
            transform: perspective(1000px) rotateY(0deg);
        }

        .main-image {
            width: 100%;
            height: auto;
            display: block;
            position: relative;
            z-index: 1;
        }

        .shape-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            mix-blend-mode: multiply;
        }

        .tech-icons {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            background: white;
            padding: 15px 25px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 3;
        }

        .icon-item {
            width: 40px;
            height: 40px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
            position: relative;
            transition: all 0.3s ease;
        }

        .icon-item:hover {
            transform: translateY(-5px);
            background: var(--primary);
            color: white;
        }

        .icon-item::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--dark);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .icon-item:hover::after {
            opacity: 1;
            visibility: visible;
            bottom: -35px;
        }

        /* Typing Effect */
        .typing-effect::after {
            content: '|';
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                max-width: 100%;
                margin-bottom: 50px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .hero-image {
                width: 80%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .hero-image {
                margin-top: -50px;
                width: 100%;
            }
            .image-wrapper {
                width: 100%;
                height: 100%;
            }

            .image-wrapper img {
                width: 100%;;
            }
            

            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-badge {
                font-size: 0.8rem;
            }
            
            .tech-icons {
                padding: 10px 15px;
                gap: 10px;
            }
            
            .icon-item {
                width: 30px;
                height: 30px;
                font-size: 1rem;
            }

            .hero-buttons {
                text-align: center;
                align-items: center;
            }
            .btn-primary {
                width: 70%;
                padding: 10px 20px;
                font-size: 1rem;
                border-radius: 20px;
            }
            .btn-secondary {
                width: 70%;
                padding: 10px 20px;
                font-size: 1rem;
                border-radius: 20px;
            }
            @media (max-width: 576px) {
                .pricing-card .pricing-features li {
                    font-size: 0.9rem;
                    line-height: 1.4; /* Melhor espaçamento entre linhas */
                }
}

        }

        
        /* Services Section */
        #services {
            padding: 80px 0;
            background: #f9f9f9;
            text-align: center;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #333;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .service-card {
            background: white;
            padding: 30px 20px;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        }

        .icon-wrapper {
            font-size: 3rem;
            color: #fff;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
        }

        .service-link {
            font-weight: bold;
            color: #2575fc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: #6a11cb;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Modal de Serviços Aprimorado */
        .service-modal .modal-content {
            max-width: 800px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .modal-header .service-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: white;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 2rem;
        }

        .modal-service-content {
            padding: 30px;
            background: white;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .feature-card h4 {
            margin: 0 0 10px 0;
            color: var(--dark);
        }

        .feature-card p {
            margin: 0;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .service-benefits h4,
        .responsive-features h4,
        .seo-strategy h4 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .benefits-list,
        .strategy-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li,
        .strategy-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .design-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .step {
            flex: 1;
            min-width: 200px;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            position: relative;
        }

        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .responsive-features .devices {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }

        .device-icon {
            display: flex;
            align-items: center;
            gap: 5px;
            background: #f5f5f5;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .seo-metrics {
            display: flex;
            justify-content: space-around;
            margin-bottom: 30px;
            text-align: center;
        }

        .metric {
            padding: 15px;
        }

        .metric-value {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .modal-cta {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .modal-description {
            text-align: justify;
        }

        .footer-col.contact-col ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        /* Animação de entrada */
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .service-modal.active .modal-content {
            animation: modalFadeIn 0.3s ease-out;
        }

        /* Estilos para o modal do portfólio */
        .portfolio-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .portfolio-modal .modal-content {
            background: white;
            width: 90%;
            max-width: 800px;
            border-radius: 8px;
            overflow: hidden;
        }

        .portfolio-modal .modal-header {
            padding: 15px 20px;
            background: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .portfolio-modal .modal-header h3 {
            margin: 0;
        }

        .portfolio-modal .modal-close {
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .portfolio-modal .modal-body {
            padding: 20px;
        }

        .portfolio-modal .modal-image {
            width: 100%;
            max-height: 400px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .portfolio-modal .modal-footer {
            padding: 15px 20px;
            text-align: center;
            background: #f8f9fa;
        }

        /* Estilo do botão do WhatsApp */
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        /* Melhora a visualização dos itens do portfólio */
        .portfolio-item {
            cursor: pointer;
            transition: transform 0.3s;
        }

        .portfolio-item:hover {
            transform: scale(1.02);
        }

                /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0; top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            justify-content: center;
            align-items: center;
        }

        /* Modal Box */
        .modal-content {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            position: relative;
            animation: fadeIn 0.3s ease-in-out;
        }

        /* Close Button */
        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        .modal-close:hover {
            color: #000;
        }

        /* Fade animation */
        @keyframes fadeIn {
            from {opacity: 0; transform: scale(0.95);}
            to {opacity: 1; transform: scale(1);}
        }

        
        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .filter-button {
            background-color: transparent;
            border: 1px solid var(--gray);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-button.active, .filter-button:hover {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.3s;
            opacity: 1;
            max-height: 1000px;
        }
        
        .portfolio-item.hidden {
            opacity: 0;
            max-height: 0;
            margin: 0;
            padding: 0;
            border: 0;
            overflow: hidden;
        }
        
        .portfolio-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        .portfolio-overlay h3 {
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .portfolio-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .portfolio-link i {
            margin-left: 5px;
        }

        .show-more-container {
            text-align: center;
            margin-top: 40px;
        }
        
        .show-more-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .show-more-btn:hover {
            background-color: var(--primary-dark);
        }

        /* Portfolio Modals */
        .portfolio-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            overflow-y: auto;
            padding: 40px 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .portfolio-modal.active {
            display: block;
            opacity: 1;
        }

        .modal-content {
            background-color: white;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            transition: transform 0.3s;
        }

        .portfolio-modal.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            position: relative;
        }

        .modal-header img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .modal-close:hover {
            background-color: var(--primary);
        }

        .modal-body {
            padding: 30px;
        }

        .modal-body h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .modal-category {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .modal-description {
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .modal-features {
            margin-bottom: 30px;
        }

        .modal-features h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .modal-features ul {
            list-style-type: none;
            columns: 2;
        }

        .modal-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            break-inside: avoid;
        }

        .modal-features li i {
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--primary);
        }

        .modal-link {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .modal-link:hover {
            background-color: var(--primary-dark);
        }

        .modal-tech {
            margin-bottom: 20px;
        }

        .modal-tech h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

                /* Pricing Section */
        #pricing {
            padding: 80px 0;
            background: #f2f4f8;
            text-align: center;
        }

        
        .section-title h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 10px;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .pricing-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 25px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #222;
        }

        .pricing-price {
            font-size: 2rem;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .pricing-price span {
            font-size: 1rem;
            color: #888;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;;
        }

        .pricing-features li {
            margin: 10px 0;
            font-size: 1rem;
            color: #444444;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .pricing-features i {
            color: #1edb4a;
        }
        .pricing-features .fa-check {
            color: #28a745; /* Verde */
        }
        

        .pricing-button {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .pricing-button:hover {
            background: #6a11cb;
        }

        /* Destaque para plano popular */
        .pricing-card.popular {
            border: 2px solid #6a11cb;
            transform: scale(1.05);
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            position: relative;
        }

        .pricing-card.popular::before {
            content: "Mais Popular";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #6a11cb;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        
        /* Testimonials Section */
        #testimonials {
            background-color: #f8fafc;
        }
        
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin: 20px;
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--primary);
        }
        
        .testimonial-quote {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--primary);
        }
        
        .testimonial-role {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        #faq {
            background-color: white;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            background-color: var(--primary);
            color: white;
            padding: 20px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Section */
        #contact {
            background-color: #f8fafc;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .contact-info p {
            margin-bottom: 30px;
            color: var(--gray);
        }
        

        
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-detail i {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--primary-dark);
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            border-color: var(--primary);
            outline: none;
        }
        
        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }
        
        .submit-button:hover {
            background-color: var(--primary-dark);
        }

        /* Estilos para a mensagem de sucesso */
        .success-message {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .success-content h3 {
            color: #28a745;
            margin-top: 20px;
        }

        .success-content p {
            color: #6c757d;
            margin-top: 10px;
        }

        /* Animação do checkmark */
        .checkmark {
            width: 80px;
            height: 80px;
            margin: 0 auto;
        }

        .checkmark__circle {
            stroke-dasharray: 166;
            stroke-dashoffset: 166;
            stroke-width: 2;
            stroke-miterlimit: 10;
            stroke: #28a745;
            fill: none;
            animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
        }

        .checkmark__check {
            transform-origin: 50% 50%;
            stroke-dasharray: 48;
            stroke-dashoffset: 48;
            stroke: #28a745;
            stroke-width: 2;
            stroke-miterlimit: 10;
            animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
        }

        @keyframes stroke {
            100% {
                stroke-dashoffset: 0;
            }
        }

        @keyframes scale {
            0%, 100% {
                transform: none;
            }
            50% {
                transform: scale3d(1.1, 1.1, 1);
            }
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-col p {
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            opacity: 0.8;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            opacity: 0.7;
            font-size: 0.9rem;
        }
        .contact-info i{
            gap: 30px;
        }

        .payment-methods i{
            gap: 30px;
            font-size: 2rem;
        }

        #contact-footer{
            gap: 30px;
            font-size: 16px;
            opacity: 0.8;
        }

                /* ========== PORTFOLIO SECTION ========== */
        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: white;
            opacity: 1;
            max-height: 1000px;
        }

        .portfolio-item.hidden {
            opacity: 0;
            max-height: 0;
            margin: 0;
            padding: 0;
            border: 0;
            overflow: hidden;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .portfolio-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(20, 33, 61, 0.9), transparent);
            padding: 25px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        .portfolio-overlay h3 {
            margin-bottom: 10px;
        }

        .portfolio-overlay p {
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .portfolio-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 50px;
            transition: all 0.3s;
        }

        .portfolio-link:hover {
            background-color: var(--primary-dark);
            transform: translateX(5px);
        }

        .show-more-container {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .hero-content {
                flex-direction: column;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: left 0.3s;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .modal-header img {
                height: 250px;
            }
            
            .modal-features ul {
                columns: 1;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .pricing-card.popular::before {
                right: -25px;
                padding: 5px 25px;
                font-size: 0.8rem;
            }
            
            .portfolio-item img {
                height: 200px;
            }
            
            .modal-body {
                padding: 20px;
            }
            
            .modal-body h3 {
                font-size: 1.5rem;
            }
        }
        