/* --- Contenedor General --- */
#bene-container {
    padding: 80px 0;
    position: relative;
}

/* Título */
#bene-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.bene-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 3rem;
}

/* --- Tarjetas de Beneficio (Glassmorphism) --- */
.bene-card {
    background: rgba(30, 41, 59, 0.6); /* Fondo oscuro semitransparente */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    height: 100%; /* Altura igual para todas */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efecto Hover: La tarjeta sube y brilla */
.bene-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Iconos con Fondo Brillante --- */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    transition: transform 0.3s ease;
    position: relative;
}

/* Colores Específicos para cada Icono */
.icon-laptop {
    background: rgba(40, 167, 69, 0.15); /* Verde suave */
    color: #2ecc71;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
}

.icon-broadcast {
    background: rgba(0, 123, 255, 0.15); /* Azul suave */
    color: #3498db;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.2);
}

.icon-person {
    background: rgba(255, 193, 7, 0.15); /* Amarillo suave */
    color: #f1c40f;
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.2);
}

.bene-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Textos */
.bene-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.bene-card .card-text {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}