/*=========================
    DETALLE DEL SERVICIO
==========================*/

.service-detail{
    background:#fff;
    padding:70px 0;
}

.service-detail .container{
    max-width:1320px;
}

.breadcrumb-service{
    margin-bottom:45px;
    font-size:.95rem;
    color:#777;
}

.breadcrumb-service a{
    color:#777;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-service a:hover{
    color:#c00000;
}

.breadcrumb-service span{
    margin:0 8px;
}

/*--------------------------------*/

.service-hero{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.service-content{

    flex:1;

}

.service-label{

    display:inline-block;

    color:#c00000;

    font-size:.95rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.service-content h1{

    font-size:3rem;

    font-weight:800;

    color:#222;

    line-height:1.15;

    margin-bottom:20px;

}

.title-line{

    width:90px;

    height:4px;

    background:#c00000;

    margin-bottom:30px;

    border-radius:10px;

}

.service-content p{

    font-size:1.15rem;

    line-height:2;

    color:#555;

    text-align:justify;

}

/*--------------------------------*/

.service-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.service-image img{

    width:100%;

    max-width:620px;

    border-radius:18px;

    object-fit:cover;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/*=========================
      TABLET
==========================*/

@media(max-width:991px){

.service-hero{

    flex-direction:column;

    gap:45px;

}

.service-content{

    order:1;

}

.service-image{

    order:2;

}

.service-content h1{

    font-size:2.3rem;

}

.service-content p{

    font-size:1.05rem;

}

}

/*=========================
      CELULAR
==========================*/

@media(max-width:576px){

.service-detail{

    padding:45px 0;

}

.service-content h1{

    font-size:1.8rem;

}

.service-content p{

    font-size:1rem;

    line-height:1.8;

}

.service-image img{

    border-radius:12px;

}

}