/* Contenedor principal de la página */
.seccion-detalle-servicios {
    padding: 60px 10% 100px;
    background-color: #ffffff;
}

/* Introducción y Títulos */
.intro-servicios {
    text-align: center;
    margin-bottom: 80px;
}

.intro-servicios h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #000;
}

/* Estructura de los bloques de servicio */
.bloque-servicio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 120px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Efecto espejo para el segundo bloque */
.bloque-servicio.invertido {
    flex-direction: row-reverse;
}

/* Estilo de las imágenes de servicios */
.imagen-servicio-detalle {
    flex: 1;
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.imagen-servicio-detalle:hover {
    transform: scale(1.02);
}

/* Contenido de texto al lado de la imagen */
.texto-servicio-detalle {
    flex: 1;
    text-align: left;
}

.texto-servicio-detalle h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 38px;
    color: #003f63;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* Línea decorativa bajo el título del servicio */
.texto-servicio-detalle h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0099e6;
}

.texto-servicio-detalle p {
    font-family: 'Lora', serif;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Lista de puntos clave (Checks) */
.check-lista {
    list-style: none;
    padding: 0;
}

.check-lista li {
    font-size: 17px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-weight: 500;
}

.check-lista i {
    color: #0099e6;
    font-size: 20px;
}


@media (max-width: 950px) {
    .bloque-servicio, 
    .bloque-servicio.invertido {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 80px;
    }

    .texto-servicio-detalle {
        text-align: center;
    }

    .texto-servicio-detalle h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .check-lista li {
        justify-content: center;
    }

    .imagen-servicio-detalle {
        height: 300px;
    }
}