/* Start custom CSS for html, class: .elementor-element-fb68e28 *//* ===================================
   BLOQUE DE VALORACIÓN
=================================== */

.bloque-valoracion {
    --valoracion-color: #3eb1e8;
    --valoracion-oscuro: #172033;
    --valoracion-texto: #5d6472;

    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    width: 100%;
    margin: 35px 0;
    padding: 28px 30px;
    overflow: hidden;
    border: 1px solid #e9ebf0;
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(245, 166, 35, 0.14),
            transparent 38%
        ),
        #ffffff;
    box-shadow: 0 12px 35px rgba(23, 32, 51, 0.08);
}

/* Línea decorativa superior */
.bloque-valoracion::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 90px;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: var(--valoracion-color);
}

/* Icono principal */
.valoracion-icono {
    display: flex;
    flex: 0 0 70px;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #3eb1e8);
    transform: rotate(-5deg);
}

.valoracion-contenido {
    flex: 1;
    min-width: 0;
}

.valoracion-etiqueta {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--valoracion-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.valoracion-contenido h2 {
    margin: 0 0 7px;
    color: var(--valoracion-oscuro);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    line-height: 1.25;
}

.valoracion-contenido p {
    max-width: 680px;
    margin: 0 0 15px;
    color: var(--valoracion-texto);
    font-size: 15px;
    line-height: 1.65;
}

.valoracion-estrellas {
    display: flex;
    align-items: center;
    min-height: 36px;
}

/* Ajustes para KK Star Ratings */
.valoracion-estrellas .kksr-stars {
    margin: 0;
}

.valoracion-estrellas .kksr-legend {
    color: var(--valoracion-texto);
    font-size: 13px;
}

.valoracion-contenido small {
    display: block;
    margin-top: 7px;
    color: #8b909b;
    font-size: 12px;
}

/* Efecto suave al pasar el cursor */
.bloque-valoracion {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.bloque-valoracion:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 166, 35, 0.35);
    box-shadow: 0 16px 42px rgba(23, 32, 51, 0.12);
}

/* Adaptación para celulares */
@media (max-width: 600px) {
    .bloque-valoracion {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin: 25px 0;
        padding: 25px 20px;
        border-radius: 15px;
    }

    .bloque-valoracion::before {
        left: 20px;
    }

    .valoracion-icono {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
        border-radius: 14px;
        font-size: 27px;
    }

    .valoracion-contenido h2 {
        font-size: 21px;
    }

    .valoracion-contenido p {
        font-size: 14px;
    }
}/* End custom CSS */