
.nuevos-page {
    font-family: "Roboto", sans-serif;
}

.card-servicio {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 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;
}

.card-servicio img {
    max-height: 250px;
    object-fit: cover;
}

.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 0.75rem 0;
    color: #01264e;
}

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

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

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

.link-tarjeta {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.link-tarjeta:hover .card-servicio {
    transform: translateY(-6px);
}
