/* Sistema Interactivo de Estrellas (Radio Buttons) */
.star-rating-input {
    direction: rtl;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s ease-in-out;
    margin-bottom: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input[type="radio"]:checked~label {
    color: #ffb400;
}

/* Efecto Hover sutil en tarjetas Elfsight */
.elfsight-card-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
}