/**** banner **/
/** banner **/
.banner {
    width: 100%;
    height: 350px;
    background-image: url('../img/empresas/banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*** list empresas **/
.listEmpresas {
    padding: 50px 0;
}
.listEmpresas .menu {
    width: 100%;
    max-width: 260px;
    height: auto;
    background: #FFF;
    border: 1px solid #e9e6e0;
}
@media (max-width: 800px) {
    .listEmpresas .menu {
        margin: 0 auto;
    }
}
.listEmpresas .menu .title {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e9e6e0;
}
.listEmpresas .menu .title p {
    margin: 0;
    color: #000;
    font-weight: bold;
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
}
.listEmpresas .menu .categoriaArea {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #e9e6e0;
}
.listEmpresas .menu .stars {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #e9e6e0;
}
.listEmpresas .menu .stars input {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.listEmpresas .menu .stars i {
    color: #F9CA0A;
}
.listEmpresas .menu .btnArea {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.listEmpresas .menu .btnArea button {
    width: 150px;
    height: 30px;
    border: 1px solid #e9e6e0;
    background: linear-gradient(270deg, rgba(46, 57, 137, 1) 29.69%, rgba(46, 57, 137, 1) 38.02%, rgba(22, 70, 144, 1) 77.08%);
    color: #FFF;
    border-radius: 5px;
    transition: .5s ease;
}
.listEmpresas .menu .btnArea button:hover {
    box-shadow: 0 0 10px rgba(46, 57, 137, 1);
    font-weight: bold;
}
/** empresasList ***/
.empresasList .cardEmpresa {
    width: 100%;
    max-width: 800px;
    height: auto;
    min-height: 100px;
    margin: 0 auto 35px auto;
    background: #FFF;
    padding: 15px;
}
.empresasList .cardEmpresa a {
    text-decoration: none;
    color: #444;
}
.empresasList .cardEmpresa a:hover {
    font-weight: bold;
}
.empresasList .cardEmpresa .title {
    margin-bottom: 15px;
}
.empresasList .cardEmpresa .title .line {
    width: 100%;
    height: 1px;
    background: #ddd;
}
.empresasList .cardEmpresa .stars i {
    color: #F9CA0A;
}
.empresa {
    width: 100%;
    max-width: 880px;
    min-height: 590px;
    background: #FFF;
}

.empresa .top .imgArea {
    width: 100%;
    margin: 0 auto;
}
.empresa .top .imgArea img {
    width: 100%;
}
.empresa .top .description {
    width: 100%;
    padding: 15px;
}
.empresa .top .description .title {
    margin: 15px 0;
    text-align: center;
}
.empresa .top .description .title p {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Dosis', sans-serif;
}
.empresa .top .description .content ul {
    list-style-type: none;
}
.empresa .top .description .content ul li{
    margin: 5px 0;
}
.empresa .top .description .content ul li i {
    margin-right: 10px;
}
.empresa .titleMapa {
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 30px 0;
}
.empresa .mapArea {

    width: 100%;
    height: 400px;
}
.empresa .mapArea iframe {
    width: 100% !important;
    height: 400px !important;
}
.listEmpresas .empresasList  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.empresa .times .green {
    color: green;
}
.empresa .times .red {
    color: red;
}
.listEmpresas .empresasList .box {
    width: 300px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid #000;
    margin: 15px 10px;
}
.listEmpresas .empresasList .box a:hover {
    font-weight: bold;
}
.listEmpresas .empresasList .box p {
    margin: 0;
    color: #000;
}
.listEmpresas .empresasList .card {
    width: 100%;
    max-width: 300px;
    min-height: 350px;
}
.listEmpresas .empresasList .card a:hover .imgArea img {
    transform: scale(1.3);
}
.listEmpresas .empresasList .card a:hover .imgArea::before {
    background: rgba(0,0,0,0);
}
.listEmpresas .empresasList .card .imgArea {
    width: 100%;
    max-width: 300px;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.listEmpresas .empresasList .card .imgArea::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.7);
    z-index: 5;
    transition: .5s ease;
}
.listEmpresas .empresasList .card .imgArea img {
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: .5s ease;
}
.listEmpresas .empresasList .card .titleArea {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.listEmpresas .empresasList .card .titleArea p {
    margin: 0;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Dosis', sans-serif;
}
.listEmpresas .empresasList .card .titleArea .line {
    width: 100%;
    height: 1px;
    background: #000;
}
.listEmpresas .empresasList .card .textArea {
    padding: 15px;
}
.listEmpresas .empresasList .card .textArea p {
    font-size: 16px;
}

/*** destaques **/
.destaque {
    width: 100%;
    height: 580px;
    background: url(../img/home/destaques.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    padding: 30px 15px;
}
.destaque .title p {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: #000000;
    font-family: 'Dosis', sans-serif;
}

.destaque .cardArea .card {
    width: 100%;
    max-width: 260px;
    min-height: 330px;
    background: #FFF;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.destaque .cardArea .card .top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(0,0,0,.4);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 50;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.destaque .cardArea .card .top .stars i {
    color: #F9CA0A;
    font-size: 16px;
}
.destaque .cardArea .card .top .dest {
    width: 87px;
    height: 24px;
    border-radius: 10px;
    background: #346727;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 15px;
}
.destaque .cardArea .card .top .dest p {
    margin: 0;
    color: #FFF;
}
.destaque .cardArea .card .imgArea {
    width: 100%;
    height: 174px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    transition: .5s ease;
}
.destaque .cardArea .card .imgArea::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.destaque .cardArea .card .imgArea .btnSaiba {
    width: 100px;
    height: 30px;
    border-radius: 30px;
    background: #346727;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 50px);
    opacity: 0;
    transition: .5s ease;
}
.destaque .cardArea .card .imgArea .btnSaiba p {
    margin: 0;
    color: #FFF;
}
.destaque .cardArea .card a:hover .btnSaiba {
    opacity: 1;
}
.destaque .cardArea .card a:hover .imgArea .btnSaiba p {
    color: #F9CA0A;
}
.destaque .cardArea .card a:hover .imgArea {
    transform: scale(1.05);
}
.destaque .cardArea .card .textArea .titleArea p {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 10px 0 0 0;
    font-family: 'Dosis', sans-serif;
}
.destaque .cardArea .card .textArea .text p {
    font-size: 16px;
    padding: 15px;
    margin: 0;
}
