/* Estilos para títulos de vitrines - Inspirado no layout Astro Distribuidora */

.titleBar {
    clear: both;
    margin: 0 0 30px;
    position: relative;
    width: 100%;
    float: left;
}

.titleBar:before {
    content: '';
    background: #e1e1e3;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
}

.titleBar h2 {
    background: #f6f6f6;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    color: #404250;
    clear: both;
    margin: 0;
    padding: 0 15px 0 0;
    position: relative;
    width: auto !important;
    float: left;
    z-index: 1;
}

.titleBar .veja-mais {
    border: 1px solid #ef7b11;
    background: #f5f5f5;
    padding: 7px 15px;
    margin: 2px 0;
    float: right;
    position: relative;
    border-radius: 4px;
    text-decoration: none;
    z-index: 1;
}

.titleBar .veja-mais:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    width: 15px;
    border: 1px dashed #f07b12;
}

.titleBar .veja-mais span {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #f07b12;
}

.titleBar .veja-mais:hover {
    background: #ef7b11;
}

.titleBar .veja-mais:hover span {
    color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
    .titleBar h2,
    h2.js-testimonial-main-title.h4.mb-4 {
        font-size: 16px;
    }
    
    .titleBar .veja-mais {
        padding: 5px 10px;
    }
    
    .titleBar .veja-mais span {
        font-size: 11px;
    }

    section.section-brands-home > container {
        max-width: calc(100% - 30px);
        padding: 0 !important;
    }
}
