 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: #f8fafc;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .hero .trust-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        
        .hero .trust-badge::before {
            content: '✓';
            margin-right: 10px;
            background: #10b981;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        
        /* Main Services Section */
        .services-main {
            padding: 80px 0;
            background: white;
        }
        
        .services-intro {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .services-intro h2 {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 20px;
        }
        
        .services-intro p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .service-main {
            background: #f8fafc;
            padding: 40px;
            border-radius: 16px;
            border: 3px solid #3b82f6;
            position: relative;
        }
        
        .service-main::before {
            content: 'PRINCIPAL';
            position: absolute;
            top: -12px;
            right: 30px;
            background: #3b82f6;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .service-main h3 {
            font-size: 1.8rem;
            color: #1f2937;
            margin-bottom: 15px;
        }
        
        .service-main p {
            color: #6b7280;
            margin-bottom: 25px;
        }
        
        .service-features {
            list-style: none;
        }
        
        .service-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            color: #374151;
        }
        
        .service-features li::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .services-secondary {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .service-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
        }
        
        .service-card h4 {
            color: #1f2937;
            margin-bottom: 10px;
        }
        
        .service-card p {
            color: #6b7280;
            font-size: 0.9rem;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
        }
        
        .pricing h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 20px;
        }
        
        .pricing-intro {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .pricing-intro p {
            font-size: 1.1rem;
            color: #6b7280;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid #e5e7eb;
        }
        
        .pricing-card.featured {
            border-color: #3b82f6;
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            content: 'MÉS POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #3b82f6;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-card:hover:not(.featured) {
            border-color: #3b82f6;
            transform: translateY(-5px);
        }
        
        .plan-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 15px;
        }
        
        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 5px;
        }
        
        .plan-period {
            color: #6b7280;
            margin-bottom: 25px;
        }
        
        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            padding: 8px 0;
            color: #374151;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        
        .plan-features li::before {
            content: '✓';
            background: #10b981;
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 11px;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .cta-button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }
        
        /* Why Maintenance Section */
        .why-maintenance {
            padding: 80px 0;
            background: white;
        }
        
        .why-maintenance h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #1f2937;
            margin-bottom: 50px;
        }
        
        .maintenance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .maintenance-card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .maintenance-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }
        
        .maintenance-card h3 {
            color: #1f2937;
            margin-bottom: 15px;
        }
        
        .maintenance-card p {
            color: #6b7280;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .testimonials h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #1f2937;
            margin-bottom: 50px;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid #3b82f6;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #374151;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-info h4 {
            color: #1f2937;
            font-size: 0.95rem;
        }
        
        .author-info p {
            color: #6b7280;
            font-size: 0.85rem;
        }
        
        
           /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .final-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .final-ctas {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .final-btn {
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .final-btn.primary {
            background: #10b981;
            color: white;
            border: none;
        }
        
        .final-btn.primary:hover {
            background: #059669;
            transform: translateY(-2px);
        }
        
        .final-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid #6b7280;
        }
        
        .final-btn.secondary:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }
        
 .guarantee {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-width: 600px;
} 
        .guarantee p {
            margin: 0;
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .container {
                padding: 0 15px;
            }
        }