.hero-servicios {
            background-image: linear-gradient(135deg, rgba(0, 53, 71, 0.85), rgba(0, 176, 240, 0.7)), url('/assets/img/portada_servicios.png');
            background-size: cover;
            background-position: center 30%;
        }

        .hero-servicios .hero-badge {
            background: var(--primary-bright);
            color: white;
        }

.service-feature-list {
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .service-feature-list li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .service-feature-list i {
            color: var(--primary-bright);
            font-size: 1.3rem;
            width: 25px;
        }
        
        

        .highlight-card {
            background: linear-gradient(145deg, var(--primary-deep), #001f2b);
            color: white;
        }
        
        .highlight-card .card-icon,
        .highlight-card h3,
        .highlight-card p {
            color: white;
        }
        
        .highlight-card .card-link {
            color: var(--accent-gold);
        }
        
        .process-step {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 30px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
        }
        
        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .process-step .step-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary-deep);
            opacity: 0.3;
            line-height: 1;
        }
        
        .process-step h3 {
            color: var(--primary-deep);
            margin: 1rem 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 1/1;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .faq-item {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
        }
        
        .faq-item summary {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-deep);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        
        .faq-item summary i {
            color: var(--primary-bright);
            transition: transform 0.3s;
        }
        
        .faq-item[open] summary i {
            transform: rotate(90deg);
        }
        
        .faq-item p {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--glass-border);
        }
        
        @media (max-width: 768px) {
            .process-step {
                padding: 1.5rem;
            }
        }