/* ================================
   Tarjeta de servicio (Botón)
================================ */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;
    padding: 2.5rem 1.5rem;

    border: 2px solid #0a1f44;
    border-radius: 16px;
    background-color: #ffffff;

    color: #0d6efd;
    text-align: center;
    text-decoration: none;

    transition: all 0.3s ease;
}

/* ================================
   Hover elegante y visible
================================ */
.service-card:hover {
    background-color: #0a1f44;
    border-color: #ffffff;
    color: #ffffff;

    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.25);

    text-decoration: none;
}

/* Forzar color blanco en todos los textos */
.service-card:hover h3,
.service-card:hover p {
    color: #ffffff !important;
}

/* ================================
   Íconos
================================ */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Imagen (Wompi u otras) */
.service-icon-img {
    max-width: 90px;
    margin-bottom: 1rem;
    transition: filter 0.3s ease;
}

/* Convertir imagen a blanco en hover */
.service-card:hover .service-icon-img {
    filter: brightness(0) invert(1);
}

/* ================================
   Títulos
================================ */
.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ================================
   Texto secundario
================================ */
.service-text {
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

/* Asegura contraste en hover */
.service-card:hover .service-text {
    opacity: 1;
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
