/********** Template CSS **********/
:root {
    --primary: #FF5A00;
    --primary-dark: #eb5300;
    --primary-light: #ff6714;
    --secondary: #595959;
    --light: #F5F8F2;
    --dark: #252C30;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.25rem rgba(255, 90, 0, 0.5);
}
.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 90, 0, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

a{
    color: var(--primary);
    text-decoration: none;
}
a:hover,
a:focus{
    text-decoration: none;
    color: #F58635;
}

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

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}

/*** 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 {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.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 ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 40px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    font-size: 16px;
}

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

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

@media (max-width: 992px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

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

@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 ***/
/* Início Banner */
.banner {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .1)), url(../img/slide-7.webp) center center no-repeat;
    background-size: cover;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
    height: 100vh;
}

.banner h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.5;
}

.banner h1 span {
    font-weight: 600;
}

.banner .btn {
    font-weight: 500;
    line-height: 1;
    color: #FFFFFF;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 1.5rem;
    margin-top: 60px;
}

.banner .btn:hover {
    background-color: transparent;
    color: var(--primary);
}

@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 80px 10px;
    }

    .banner h1 {
        font-size: 44px;
        line-height: 1.5;
    }
    .banner .btn {
        font-size: 1.2rem;
        margin-top: 46px;
        width: 100%;
    }
}
/* Fim Banner */

/* Carousel Start */
/*
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
    height: 100vh;
}

.carousel-caption h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.5;
}

.carousel-caption h1 span {
    font-weight: 600;
}

.carousel-caption .btn {
    font-weight: 100;
    line-height: 1;
    color: #FFFFFF;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 1.5rem;
    margin-top: 60px;
}

.carousel-caption .btn:hover {
    font-weight: 100;
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

#header-carousel img {
    background: cover;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        height: auto;
    }

    .carousel-caption h1 {
        font-size: 50px;
        line-height: 1.3;
    }
}
*/
/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}

/* Sobre Nós */
.sobre-nos {
    padding: 80px 10px;
}

.sobre-nos p {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
}

/*** Serviços ***/
.product {
    background: linear-gradient(rgba(255, 90, 0, .1), rgba(255, 90, 0, .1));
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product .box-servico {
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.product h3 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}
.product h4 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}

.product p {
    font-weight: 200;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 7px;
}

.product p i {
    margin-right: 10px;
}

.product p i.fa.fa-check {
    color: #008000;
}

.product p i.fa.fa-close {
    color: #ff0000
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}

.product .btn {
    font-weight: 500;
    color: #FFFFFF;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 1.1rem;
    margin-top: 20px;
}

.product .btn:hover {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

@media (max-width: 768px) {
    .product {
        padding: 80px 20px;
    }
    .product .box-servico {
        height: auto;
    }
}

/*** Video ***/
.video {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/slide-4.webp) center center no-repeat;
    background-size: cover;
}

.video .box-item {
    margin-bottom: 40px;
}

.video .text-white {
    text-align: justify;
}

.video .btn {
    font-weight: 500;
    color: #FFFFFF;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 1.3rem;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .video p {
        font-size: 15px;
        text-align: justify;
    }
}

/*CSS do vídeo (removido)*/
/*
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    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: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px 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: 0;
}

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

.video .btn {
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 1.3rem;
    margin-top: 60px;
}

.video .btn:hover {
    font-weight: 400;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

@media (max-width: 992px) {
    .video {
        padding: 80px 20px;
    }

    .video .btn {
        width: 100%;
    }
}
*/

/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}

.contact a{
    color: var(--dark);
    text-decoration: none;
}
.contact a:hover,
.contact a:focus{
    color: #F58635;
}

.contact .box-contato {
    margin-bottom: 40px;
}

.contact .contact_form button[type=submit] {
    color: #fff;
    background: var(--primary);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
    text-align: center;
    display: block;
    margin: 10px auto;
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 10px;
    }
}

/*** CTA 2***/
.cta-2 {
    background-color: #FFFFFF;
}

.cta-2 h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    text-align: justify;
}

.cta-2 ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    text-align: justify;
}

.cta-2 .btn {
    font-weight: 500;
    line-height: 1;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
    font-size: 1.2rem;
    margin-top: 60px;
}

.cta-2 .btn:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .cta-2 {
        padding: 40px 10px;
    }
    .cta-2 .section-title {
        text-align: center;
    }
    .cta-2 .btn {
        width: 100%;
    }
}

/*** CTA ***/
.cta {
    background: linear-gradient(rgba(255, 90, 0, .85), rgba(255, 90, 0, .85)), url(../img/slide-7.webp) center center no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
}

.cta .display-1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    text-shadow: 1px 1px 2px #000000;
}

.cta .display-5 {
    font-size: 2.5rem;
    line-height: 0.8;
    font-weight: lighter;
    text-shadow: 1px 1px 2px #000000;
}

.cta .display-6 {
    font-size: 7rem;
    line-height: 1;
    font-weight: 700;
    text-shadow: 1px 1px 2px #000000;
}

.cta .btn {
    font-weight: 400;
    line-height: 1;
    color: var(--primary);
    background-color: #FFFFFF;
    font-size: 1.3rem;
    margin-top: 40px;
}

.cta .btn:hover {
    color: var(--primary);
    background-color: #FFFFFF;
}

@media (max-width: 768px) {
    .cta {
        text-align: center;
        padding: 80px 10px;
    }
    .cta .display-1 {
        font-size: 2.0rem;
    }

    .cta .display-5 {
        font-size: 2rem;
        margin-top: 50px;
    }

    .cta .display-6 {
        font-size: 4rem;
    }

    .cta .btn {
        width: 100%;
        padding: 30px 10px;
        margin-top: 50px;
    }
}

/*** Testimonial ***/
/*
.testimonial {
    background: linear-gradient(rgba(255, 255, 255, .75), rgba(255, 255, 255, .75)), url(../img/testimonials.webp) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}

@media (max-width: 768px) {
    .testimonial {
        padding: 80px 10px;
    }
}
*/

/*** Footer ***/
.footer {
    color: #fff;
    z-index: 999999;
}

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

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

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

.footer .link-contato {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    transition: .3s;
    text-decoration: none;
}

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

.copyright {
    background: #252525;
    color: #fff;
    z-index: 999999;
}

.copyright a:hover {
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px;
        text-align: center;
        font-size: 20px;
    }

    .footer .btn.btn-link {
        font-size: 20px;
    }

    .footer h4 {
        margin-top: 50px;
    }

    .copyright p {
        font-size: 13px;
    }
}