.beneficios-card-consultancy {
    background-color: #1e1e1e;
    /* cor de fundo do card */
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin: 0 auto;
    min-height: 300px;
    /* faz o card ocupar a largura do slide */
    max-width: none;
    /* se quiser limitar a largura máxima */
    box-sizing: border-box;
}

.beneficios-card-consultancy img {
    height: 70px;
    width: auto;
    /* ajuste conforme desejar */
    margin-bottom: 1rem;
}

.beneficios-card-consultancy h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.beneficios-card-consultancy p {
    font-size: 0.9rem;
    color: #ccc;
    /* texto secundário */
}

.beneficios-card-consultancy:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}


/* Updated styling for the consulting section */
#consulting-detailed {
    position: relative;
    overflow: hidden;
    color: white;
    /* Remove fixed height and flex centering if they break your layout */
    /* height: 100vh; */
    /* display: flex;
       align-items: center;
       justify-content: center; */
}

/* Ensure all children (except #mouse-glow) are stacked above the glow */
#consulting-detailed > *:not(#mouse-glow) {
    position: relative;
    z-index: 1;
}

/* Mouse glow styling */
#mouse-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(90px);
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0; /* Behind all other content */
    display: none; /* Hidden until activated */
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
    }
}