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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #ffffff;
            scroll-behavior: smooth;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e5e7eb;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            height: 70px;
        }
        .logo-image {
            transition: filter 0.3s ease;
        }
        
        .logo-image.scrolled {
            filter: grayscale(100%);
        }
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: #3b82f6;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            color: #1f2937;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 8px;
        }

        .nav-links a {
            color: #6b7280;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: #3b82f6;
            background: #f1f5f9;
        }

        .nav-links a.active {
            color: #3b82f6;
            background: #f1f5f9;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            color: #374151;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 0;
            background: white;
            border-top: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav .nav-link {
            padding: 16px 20px;
            border-bottom: 1px solid #f3f4f6;
            font-weight: 500;
            color: #6b7280;
            text-decoration: none;
        }

        .mobile-nav .nav-link:hover,
        .mobile-nav .nav-link.active {
            background: #f8fafc;
            color: #3b82f6;
        }

        .services-hero {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            padding: 120px 0 80px 0;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .trust-badge {
            background: linear-gradient(135deg, #ecfdf5, #f0f9ff);
            border: 1px solid #a7f3d0;
            color: #047857;
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
        }

        .trust-dot {
            width: 10px;
            height: 10px;
            background: #10b981;
            border-radius: 50%;
            animation: glow 1.5s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px #10b981; }
            to { box-shadow: 0 0 15px #10b981; }
        }

        .services-header h1 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1f2937;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .services-highlight {
            color: #3b82f6;
        }

        .services-header p {
            font-size: 1.3rem;
            color: #374151;
            margin-bottom: 40px;
            font-weight: 500;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-nav {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-bottom: 80px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .service-nav-item {
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            color: #6b7280;
            transition: all 0.3s ease;
            flex: 1;
            text-align: center;
            min-width: 140px;
        }

        .service-nav-item:hover,
        .service-nav-item.active {
            background: #3b82f6;
            color: white;
            transform: translateY(-2px);
        }

        .service-section {
            padding: 80px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .service-section:last-child {
            border-bottom: none;
        }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 60px;
        }

        .service-content.reverse {
            direction: rtl;
        }

        .service-content.reverse > * {
            direction: ltr;
        }

        .service-info h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #1f2937;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .service-subtitle {
            font-size: 1.2rem;
            color: #3b82f6;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .service-description {
            font-size: 1.2rem;
            color: #374151;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .service-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 40px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #1f2937;
            font-size: 0.95rem;
        }

        .benefit-icon {
            color: #10b981;
            font-size: 1.1rem;
        }

        .service-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #3b82f6;
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #3b82f6;
            border: 2px solid #3b82f6;
            padding: 14px 28px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #3b82f6;
            color: white;
        }

        .service-visual {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .service-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(16, 185, 129, 0.02));
            pointer-events: none;
        }

        .visual-content {
            position: relative;
            z-index: 2;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: #3b82f6;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 24px;
        }

        .visual-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .visual-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .stat-item {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 900;
            color: #3b82f6;
            display: block;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #6b7280;
            font-weight: 600;
        }

        .visual-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #374151;
            font-weight: 500;
        }

        .feature-icon {
            color: #10b981;
            font-size: 1rem;
        }

        .process-section {
            background: #f8fafc;
            padding: 100px 0;
            margin-top: 80px;
        }

        .process-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .process-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1f2937;
            margin-bottom: 16px;
        }

        .process-header p {
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-step {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
            border-color: #3b82f6;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            margin: 0 auto 20px auto;
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .step-description {
            color: #6b7280;
            line-height: 1.6;
        }

        .final-cta {
            background: #3b82f6;
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        .final-cta h2 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 16px;
        }

        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: #3b82f6;
            padding: 18px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-white:hover {
            background: #f1f5f9;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: white;
            color: #3b82f6;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            font-size: 24px;
        }

        .whatsapp-float:hover {
            background: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .scroll-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background: #3b82f6;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            z-index: 1000;
            border: none;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            font-size: 18px;
            font-weight: bold;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .footer-section p {
            color: #9ca3af;
            line-height: 1.6;
            margin-bottom: 16px;
            font-size: 0.9rem;
        }

        .footer-contact {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            color: #d1d5db;
            font-size: 0.9rem;
        }

        .footer-services {
            list-style: none;
        }

        .footer-services li {
            margin-bottom: 10px;
        }

        .footer-services a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-services a:hover {
            color: #10b981;
        }

        .emergency-section {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 8px;
            padding: 16px;
            margin-top: 20px;
        }

        .emergency-title {
            color: #f87171;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .emergency-number {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid #374151;
            padding-top: 20px;
            text-align: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .services-hero {
                padding: 100px 0 60px 0;
            }

            .services-header h1 {
                font-size: 2.6rem;
            }

            .services-header p {
                font-size: 1.15rem;
            }

            .services-nav {
                flex-direction: column;
                gap: 8px;
            }

            .service-nav-item {
                min-width: auto;
            }

            .service-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .service-content.reverse {
                direction: ltr;
            }

            .service-info h2 {
                font-size: 2.2rem;
            }

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

            .service-cta {
                justify-content: center;
            }

            .visual-stats {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .final-cta h2 {
                font-size: 2.2rem;
            }

            .final-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-white,
            .btn-outline {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 22px;
            }

            .scroll-top {
                bottom: 85px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .services-hero {
                padding: 90px 0 50px 0;
            }

            .services-header h1 {
                font-size: 2.2rem;
            }

            .service-visual {
                padding: 24px;
            }

            .service-icon {
                width: 64px;
                height: 64px;
                font-size: 2rem;
            }

            .process-step {
                padding: 24px;
            }

            .final-cta {
                padding: 80px 0;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 20px;
                bottom: 15px;
                right: 15px;
            }

            .scroll-top {
                width: 42px;
                height: 42px;
                font-size: 14px;
                bottom: 75px;
                right: 15px;
            }
        }