 
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #fca311;
            --light: #e6e6e6;
            --white: #ffffff;
            --dark: #0f0f1a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--light);
            background-color: var(--primary);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        .btn-whatsapp {
            background-color: var(--accent);
            color: var(--dark);
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .btn-whatsapp:hover {
            background-color: #e69500;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 50px;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            width: 350px;
            height: 350px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--accent);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--light);
            opacity: 0.9;
        }
        
        .btn-primary {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(252, 163, 17, 0.3);
        }
        
        .btn-primary:hover {
            background-color: #e69500;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(252, 163, 17, 0.4);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--secondary);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--white);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--light);
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .skills {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .skill-item {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 5px;
            border-left: 3px solid var(--accent);
        }
        
        .skill-item h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--white);
        }
        
        .skill-item p {
            font-size: 14px;
            color: var(--light);
            opacity: 0.8;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--primary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: var(--secondary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-header {
            background-color: var(--accent);
            color: var(--dark);
            padding: 20px;
            text-align: center;
        }
        
        .service-header h3 {
            font-size: 24px;
            font-weight: 700;
        }
        
        .service-header .price {
            font-size: 36px;
            font-weight: 700;
            margin: 10px 0;
        }
        
        .service-body {
            padding: 30px;
        }
        
        .service-body ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .service-body ul li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }
        
        .service-body ul li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
        }
        
        .service-footer {
            padding: 0 30px 30px;
            text-align: center;
        }
        
        /* Tools Section */
        .tools {
            padding: 80px 0;
            background-color: var(--secondary);
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .tool-item {
            text-align: center;
        }
        
        .tool-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 36px;
            color: var(--accent);
        }
        
        .tool-item p {
            font-weight: 500;
            color: var(--white);
        }
        
        /* Results Section */
        .results {
            padding: 100px 0;
            background-color: var(--primary);
        }
        
        .results-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .results-text {
            flex: 1;
        }
        
        .results-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .results-text p {
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-item {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 5px;
            text-align: center;
        }
        
        .stat-item .number {
            font-size: 36px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 5px;
        }
        
        .stat-item p {
            font-size: 14px;
            color: var(--light);
        }
        
        .results-image {
            flex: 1;
            text-align: center;
        }
        
        .results-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--secondary);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background-color: var(--primary);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--light);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .author-info h4 {
            font-size: 18px;
            color: var(--white);
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--light);
            opacity: 0.8;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: var(--primary);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--secondary);
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            background-color: rgba(22, 33, 62, 0.8);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(255, 255, 255, 0.02);
        }
        
        .faq-answer p {
            padding: 20px 0;
            color: var(--light);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--accent) 0%, #e69500 100%);
            text-align: center;
            color: var(--dark);
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-dark {
            display: inline-block;
            background-color: var(--dark);
            color: var(--white);
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .btn-dark:hover {
            background-color: #000;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            color: var(--white);
            margin-bottom: 20px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            color: var(--dark);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-size: 14px;
        }
        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content, .about-content, .results-content {
                flex-direction: column;
            }
            
            .hero-text, .about-text, .results-text {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .skills, .stats {
                grid-template-columns: 1fr;
            }
        } 
