/* ====================================================================
   9. SECCIÓN: CASOS DE ÉXITO (casosexito.css)
==================================================================== */

/* Contenedor principal de la sección */
.service-style-two {
    position: relative;
    padding: 80px 0px 50px 0px;
}

/* Bloque individual de proyecto */
.service-block-one {
    position: relative;
    background: #ffffff;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 500ms ease;
    overflow: hidden;
}

/* Imagen del proyecto */
.service-block-one .image-box {
    position: relative;
    overflow: hidden;
}

.service-block-one .image-box img {
    width: 100%;
    transition: transform 0.5s ease;
}

.service-block-one:hover .image-box img {
    transform: scale(1.05);
}

/* Contenido inferior (Título y descripción) */
.service-block-one .lower-content {
    padding: 25px 25px 30px 25px;
}

.service-block-one .lower-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.service-block-one .lower-content .text {
    font-size: 15px;
    line-height: 26px;
    color: #666;
}

/* Estilos de etiquetas y viñetas */
.service-block-one .lower-content .text b {
    color: #e94f1b; /* Naranja corporativo */
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
}

.service-block-one .lower-content .text .vineta-naranja {
    color: #e94f1b;
    font-weight: bold;
    margin-right: 5px;
}

/* Estado vacío (Mensaje cuando no hay proyectos) */
.title-box.centred {
    text-align: center;
}

.title-box .sec-title h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
}