/* Estilos específicos para la página de servicios */

        .logo-link {
            text-decoration: none; /* Quita el subrayado */
            color: inherit;        /* Mantiene el color original del logo */
            display: inline-block; /* Mantiene el comportamiento de bloque inline */
        }
        .hero-servicios {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1564053489984-317bbd824340?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 2rem;
        }
        
        .hero-servicios h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .servicios-detalle {
            padding: 4rem 0;
        }
        
        .servicio-detalle {
            margin-bottom: 4rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
        }
        
        .servicio-detalle:nth-child(even) .servicio-texto {
            order: 2;
        }
        
        .servicio-texto {
            flex: 1;
            min-width: 300px;
        }
        
        .servicio-imagen {
            flex: 1;
            min-width: 300px;
            height: 350px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            background-size: cover;
            background-position: center;
        }
        
        .servicio-detalle h3 {
            color: #2c3e50;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .servicio-detalle h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #3498db;
            border-radius: 2px;
        }
        
        .servicio-detalle p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #34495e;
        }
        
        .servicio-caracteristicas {
            margin: 2rem 0;
        }
        
        .servicio-caracteristicas h4 {
            color: #3498db;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .caracteristicas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .caracteristica {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .caracteristica i {
            color: #3498db;
            font-size: 1.5rem;
            min-width: 30px;
        }
        
        .proceso-servicio {
            background: #f8f9fa;
            padding: 4rem 0;
            text-align: center;
        }
        
        .proceso-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .paso-proceso {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .paso-proceso:hover {
            transform: translateY(-10px);
        }
        
        .numero-paso {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: #3498db;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .servicios-extra {
            padding: 4rem 0;
            background: linear-gradient(135deg, #1a2a6c, #2c3e50);
            color: white;
            text-align: center;
        }
        
        .servicios-extra h2 {
            margin-bottom: 3rem;
        }
        
        .extra-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .servicio-extra {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .servicio-extra:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }
        
        .servicio-extra i {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 1.5rem;
        }
        
        .servicio-extra h3 {
            margin-bottom: 1rem;
        }
        
        .testimonios {
            padding: 4rem 0;
            background: #f8f9fa;
        }
        
        .testimonio-contenedor {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonio {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem 0;
            position: relative;
        }
        
        .testimonio:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: #3498db;
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonio p {
            font-style: italic;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        .cliente {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .cliente img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .info-cliente h4 {
            margin: 0;
        }
        
        .info-cliente p {
            font-style: normal;
            margin: 0;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .servicio-detalle {
                flex-direction: column;
            }
            
            .servicio-detalle:nth-child(even) .servicio-texto {
                order: 0;
            }
            
            .hero-servicios h1 {
                font-size: 2.5rem;
            }
        }

        /* Sección Soluciones Geoespaciales */
.soluciones-geo {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a2a6c, #2c3e50);
    color: white;
}

.soluciones-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    padding: 0 20px;
}

.soluciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solucion-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 5px solid #3498db;
}

.solucion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.solucion-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #2c3e50, #1a5c9e);
    color: white;
}

.solucion-icono {
    width: 70px;
    height: 70px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.solucion-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.solucion-body {
    padding: 25px;
    flex-grow: 1;
    color: #333;
}

.solucion-body p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.tecnologias {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tecnologia {
    background: #e3f2fd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1a5c9e;
    font-weight: 600;
}

.solucion-footer {
    padding: 0 25px 25px;
    text-align: center;
}

.boton-solucion {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #1a5c9e);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.boton-solucion:hover {
    background: linear-gradient(135deg, #2980b9, #154a7e);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .solucion-header {
        flex-direction: column;
        text-align: center;
    }
    
    .solucion-icono {
        margin-bottom: 15px;
    }
}