.container-detalle{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.breadcrumbList{
    width: 100%;
    display: block;
    a{
        font-size: 14px;
        padding: 5px;
        color: #163d6f;
        text-decoration: underline;
    }
    a:hover{
        text-decoration: underline;
    }
}
.btn-regresar{
    font-weight: 600;
    font-size: 14px;
    color: #163d6f;
}
.imagen-detalle, .info-prod{
    flex: auto;
    width: 100%;
}
.imgborder{
    border: 1px solid #d3d3d3;
}
.info-prod .titulo {
  text-transform: uppercase;
}
h2{
    margin-bottom: 16px;
}

p{
    margin: 0 auto 16px;
}
.info-prod p{
    line-height: 25px;
    color: #333;
    font-size:  18px;
}
.ficha-tecnica{
    padding-top: 15px;
}
.table-fichatecnica{
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;

    td{
        padding: 11px 10px 4px 10px;
        border-bottom: 1px solid #b3b3b3;
        font-size: 12px;
    }
}
.table-fichatecnica th{
    font-size: 15px;
    text-align: left;
    color: #163d6f;
}
.content-cotizar{
    width: 100%;
    padding: 10px;
}
.btn-cotizar{
    background: #ececec;
    color: #163d6f;
    padding: 8px 20px;
    margin: 0 auto;
    display: block;
    font-weight: 600;
    text-decoration: none;
    max-width: 350px;
    text-align: center;
}

.btn-cotizar:hover{
    background: #163d6f;
    color: #fff;
}


@media screen and (min-width:700px){
    .imagen-detalle, .info-prod{
        flex: 1;
    }
    .info-prod p{
        margin: 0 auto 16px;
        line-height: 27px;
        color: #333;
        font-size:  16px;
    }
}