/********** Template CSS **********/
:root {
    --primary: #009E4B;
    --light: #F3F4F5;
    --dark: #282F34;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/Vistoria-Reserve-Legal.jpeg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-index.jpeg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-index.jpeg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.g-recaptcha div {
    margin: 0 auto;
}

input.error,
textarea.error,
select.error {
    border: #ff6666 solid 1px !important;
    margin: 0;
    background-color: rgba(255, 0, 0, 0.1) !important;
    color: red !important
}

.text_red {
    color: #ED3237;
}

#envio_sucesso {
    display: none;
    width: 100%;
    margin-top: 15%;
    margin-bottom: 5%;
}

#envio_sucesso h4 {
    font-size: 2em !important;
}

#envio_sucesso span.success,
#envio_sucesso h4.success {
    color: #33cc00
}

#envio_sucesso>span.mdi {
    font-size: 4.5em;
}

#envio_sucesso span.erro,
#envio_sucesso h4.erro {
    color: #ff1616;
}

#envio_sucesso img {
    height: 140px;
}


#formZap {
    width: 300px;
    z-index: 1000;
    overflow: hidden;
    height: 230px;
    position: fixed;
    bottom: 90px;
    left: 17px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 1px 1px 17px -7px #222
}

.zapTp {
    height: 40px;
    font-size: 14px;
    color: #fff;
    padding: 10px 0 0;
    top: 0
}

#formZap textarea {
    -webkit-appearance: none;
    resize: none;
    padding: 20px 33px;
    letter-spacing: .5px;
    font-size: 16px;
    box-sizing: border-box;
    top: 40px;
    position: absolute;
    width: 100%;
    height: calc(100% - 90px);
    min-height: calc(100% - 90px);
    outline: 0;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    color: #333
}

#enviaMsg,
.zapTp {
    background-color: #25d465;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    left: 0
}

#enviaMsg {
    text-decoration: none;
    letter-spacing: .5px;
    height: 50px;
    font-size: 15px;
    color: #fff;
    padding: 15px 0 0;
    bottom: 0
}

#boxZap {
    position: fixed;
    z-index: 1000;
    border-radius: 50%;
    text-align: center;
    bottom: 17px;
    left: 17px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 25px;
    color: #fff;
    background-color: #25d465;
    box-shadow: 1px 1px 8px -2px #111;
    cursor: pointer
}

#enviaMsg:hover {
    background-color: #1aa54d;
    transition: .2s
}

.pointer {
    cursor: pointer
}

/* Preloder */
#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000;
    padding-top: 35vh;
    padding-bottom: 30vh;
    opacity: 0.8;
}

.margin_center {
    margin: 0 auto;
}

#preloder span {
    color: white;
}

#preloder img {
    /* margin: 18% auto; */
}


#links_empresa a div div {
    border-bottom: 30px solid white;
}

.bg_grey_empresa {
    background-color: #E6E6E6;
    padding-top: 30px;
    padding-bottom: 30px;
}

#links_empresa a div div img {
    position: absolute;
}

#links_empresa a:hover .bg_grey_empresa,
.active_item_empresa {
    border-bottom: 30px solid #25d465 !important;
    background-color: #25d465 !important
}

#links_empresa a:hover div div span,
.in_missao span,
.in_visao span,
.in_valores span {
    color: white
}

.item_empresa {
    transition: 2s
}

#links_empresa a:hover div div {
    background-color: #25d465;
}

#links_empresa a div div span {
    font-size: 2em;
    margin-left: 20px
}

.border_left_md {
    border-left: 13px solid transparent
}

.border_right_md {
    border-right: 13px solid transparent
}

#item_valores:hover #valores_bg {
    background-image: url('../img/icons/valoresCLARO.svg') !important;
    background-color: #25d465;
}

.in_valores {
    background-image: url('../img/icons/valoresCLARO.svg') !important;
    background-color: #25d465;
    border-bottom: 30px solid #25d465 !important;
}

#valores_bg {
    background-image: url('../img/icons/valores.svg');
    background-repeat: no-repeat;
    background-position: 90px center
}

#item_visao:hover #visao_bg {
    background-image: url('../img/icons/visaoCLARO.svg') !important;
    background-color: #25d465 !important;
}

.in_visao {
    background-image: url('../img/icons/visaoCLARO.svg') !important;
    background-color: #25d465 !important;
    border-bottom: 30px solid #25d465 !important;
}

#visao_bg {
    background-image: url('../img/icons/visao.svg');
    background-repeat: no-repeat;
    background-position: 90px center
}

#item_missao:hover #missao_bg {
    background-image: url('../img/icons/missaoCLARO.svg') !important;
    background-color: #25d465;
}

.in_missao {
    background-image: url('../img/icons/missaoCLARO.svg') !important;
    background-color: #25d465;
    border-bottom: 30px solid #25d465 !important;
}

#missao_bg {
    background-image: url('../img/icons/missao.svg');
    background-repeat: no-repeat;
    background-position: 90px center
}

@media only screen and (max-width: 1199px) {

    #visao_bg,
    #missao_bg,
    #valores_bg {
        background-position: 50px center
    }

    #links_empresa a div div span {
        font-size: 2em;
    }
}

@media only screen and (max-width: 991px) {
    * {
        font-size: 13px;
    }

    .no_row_sm {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    #visao_bg,
    #missao_bg,
    #valores_bg {
        background-position: 30px center;
    }
}

@media only screen and (max-width: 767px) {

    #visao_bg,
    #missao_bg,
    #valores_bg {
        background-position: 23px center;
        background-size: 35px auto;
    }

    #links_empresa a div div span {
        font-size: 1.6em;
    }
}

@media only screen and (max-width: 600px) {

    #visao_bg,
    #missao_bg,
    #valores_bg {
        background-size: 25px auto;
        background-position: 15px center;
    }

    #links_empresa a div div img {
        height: 20px;
        margin-top: 3px
    }

    #links_empresa a div div span {
        margin-left: 10px;
        font-size: 1.6em
    }

    #links_empresa a div.col-sm-4 div {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


@media only screen and (max-width: 500px) {
    #links_empresa a div div img {
        height: 15px;
        margin-top: 5px
    }
}

@media only screen and (max-width: 450px) {
    #links_empresa a div div span {
        font-size: 1.4em;
    }
}

@media only screen and (max-width: 400px) {
    #page_notices_list>div>h5 {
        font-size: 2.2em !important
    }

    #links_empresa a div div span {
        font-size: 1.3em
    }

    .border_right_md {
        border-right: 5px solid transparent;
    }

    .border_left_md {
        border-left: 5px solid transparent;
    }

    .in_missao,
    .in_visao,
    .in_valores {
        border-bottom: 10px solid #25d465 !important;
    }

    #links_empresa a:hover .bg_grey_empresa,
    .active_item_empresa {
        border-bottom: 10px solid #25d465 !important;
    }

    #links_empresa a div div {
        border-bottom: 10px solid white;
    }

    .bg_grey_empresa {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 380px) {

    #visao_bg,
    #missao_bg,
    #valores_bg {
        background-size: 25px auto;
        background-position: 5px center;
    }

}

@media only screen and (max-width: 320px) {
    #links_empresa a div div span {
        font-size: 1.1em
    }
}


.bg_box_a_empresa {
    padding: 20px 15px;
    background-color: white !important;
    border: 3px solid #25d465
}

.border_right {
    border-right: 10px solid transparent
}

.border_left {
    border-left: 10px solid transparent
}

.bg-red {
    background-color: rgba(213, 29, 37, 1);
}

.icons_link {
    padding-bottom: 20px;
    padding-top: 20px;
}

.icons_link h5 {
    display: block;
}

#links_app a:hover div div.bg-red {
    background-color: #2C2C2C;
    transition: 0.2s;
    box-shadow: 0 3px 23px #2c2c2c;
}

.text_green{
    color: #009E4B;
}

.border-equipe:hover{
    background-color: #e6e7e8; 
    transition: 0.2s;
}

.border-equipe{
    border: #ccc 3px solid;
}

.box-info-esp{
    min-height: 72px;
}

@media only screen and (max-width: 500px) {
    .box-info-esp{
        min-height: auto;
    }
    
    #iconZap, #iconClose{
        font-size: 1.3em;
    }
}

.text-small{
    font-size: 0.9em;
}