/* Estilos generales para la página de Servicios */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff; 
    color: #0b132b;
}

/* Contenedor principal de los servicios */
.section-servicios {
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-servicios h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0b132b;
}

.servicio {
    background: #ffffff22;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.servicio:hover {
    transform: scale(1.05);
}

.servicio h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0b132b;
}

.servicio p {
    font-size: 18px;
    line-height: 1.5;
    color: #585858;
}

/* Íconos dentro de los títulos */
.servicio h3 i {
    margin-right: 10px;
    color: #00bcd4;
}

/* Hacer que los enlaces alrededor de las secciones no cambien el diseño */
.servicio-link {
    text-decoration: none; /* Quitar subrayado */
    color: inherit; /* Mantener el color del texto del servicio */
}

/* Opcionalmente, también puedes agregar un hover para los enlaces */
.servicio-link:hover .servicio {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #9fd5f5;
    margin-top: 50px;
    color: #0b132b;
}
