/* Servicios página */
.servicios-page {
    font-family: "Roboto", sans-serif;
}

.descripcion-seccion {
    font-size: 1.25rem;
    color: #131313;
    max-width: 800px;
    margin: 0 auto;
}

.card-servicio {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    min-height: 270px;
}

.card-servicio:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    background-color: #e9f1fb;
}

.card-servicio h3 {
    font-family: "Darker Grotesque", "Roboto", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 1rem 0;
    color: #01264e;
}

.card-servicio p {
    font-size: 1rem;
    color: #131313;
    line-height: 1.6;
}

.icon-servicio {
    font-size: 3rem;
    color: #01264e;
    margin-bottom: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.card-servicio:hover .icon-servicio {
    color: #153f6b;
    transform: scale(1.15);
}

.contacto-servicios a {
    color: #01264e;
    text-decoration: underline;
    transition: opacity 0.25s ease;
}

.contacto-servicios a:hover {
    opacity: 0.7;
}
