/********** Template CSS **********/

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

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

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** 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; 
}

.barTop{
    padding: 4px 0;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

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

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

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

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

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

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

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

/*** Navbar ***/
header {
    height: 136px;
}

#bandeiraBr{
    height: 35px;
}

.sticky-top {
    top: 0px;
    position: fixed!important;
    transition: .5s;
}

.sticky-top div nav a img{
    height: 86px!important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    color: #000;
    transition: color 0.3s ease;
}

/* linha animada */
.navbar .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 3px;
    background-color: var(--bs-primary);
    transition: transform 0.3s ease;
}

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

/* quando ativo ou hover */
.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}


.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: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        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 ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .3);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }

    header {
        height: auto!important;
    }

    .no-rounded{
        border-radius: 0 !important;
    }
}

@media (max-width: 768px) {

    .sticky-top div nav a img{
        height: 45px!important;
    }

    .center-sm {
        margin: 0 auto;
    }

    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }

    h1.display-1{
        font-size: 1.8em;
    }

    .mt-sm {
        margin-top: 120px;
    }
}

.btn-primary:hover {
    background-color: #6D3731;
    color: #F29030;
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 6rem;
    }
}

.page-header {
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    margin: 0 auto;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 45%;
    height: 90px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/slide1.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service-inner:hover {
    color: #e5e6e7;
}

.service-text{
    min-height: 152px;
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 15px;
    padding-right: 15px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/slide2.jpg) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

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

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


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
    
    .about-img::before {
    width: 100%;
    }
}


/*** Appoinment ***/
.newsletter {
    /* background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)),
                url(../img/slide1.jpg) left center no-repeat; */
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 200px;
    position: relative;
    z-index: 1;
}

/*** Footer ***/
#footerDiv{
    background-color: #F29030;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #f5f5f5;
    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;
    color: #f5f5f5;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #f5f5f5;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

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

#formZap{
	width: 300px;
    z-index: 1000;
    overflow: hidden;
    height: 230px;
    position: fixed;
    bottom: 80px;
    right: 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;
}

#txtMsg{

}

#boxZap {
    position: fixed;
    z-index: 1000;
    border-radius: 50%;
    text-align: center;
    bottom: 17px;
    right: 17px;
    width: 55px;
    height: 55px;
    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: 0.2s;
}

.pointer{
	cursor: pointer;
}

.ms-6 {
    margin-left: 5rem !important;
}

.me-6 {
    margin-right: 5rem !important;
}

#logo {
    height: 120px;
    transition: height 0.3s ease;
}

.shrink-logo {
    height: 80px !important;
}

.sticky-top .navbar-brand img {
    height: 160px;
}

.shadow-sm .navbar-brand img {
    /* height: 80px!important; */
    /* transition: 0.2s; */
}

.fs-7 {
    font-size: 1.3rem
}

a.btn-sm-square:hover i{
    color: #6D3731!important;
    transition: 0.2s;
}

.btn-top{ 
    text-align: center;
    border: 2px solid #eee;
    background-color: #6D3731;
    border-radius: 10px;
}

.btn-top:hover{
    border: 2px solid #eee;
    background-color: #F29030;
    transition: 0.2s;
}

.fixedHeigt{
    height: 96px;
}

.a{
    height: 200px;
    background-color: #1aa54d;
}

.btn-dark-blue{
    border-color: #F29030;
}

.hover-effect {
    transition: transform 0.3s ease; /* Transição suave */
}

.hover-effect:hover {
    transform: scale(1.1); /* Aumenta a imagem em 10% ao passar o mouse */
}

.shadownHover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.shadownHover:hover {
    box-shadow: 24px rgba(0, 0, 0, 0.2); /* sombra maior */
    transform: translateY(-4px); /* eleva levemente a div */
}

.textOrange{
    color: #F29030!important;
    transition: 0.2s;
    font-weight: bold;
}

.hoverSocial:hover {
    transition: 0.2s;
    font-weight: bold;
    color: #e4b045;
}

.timeline li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    border-left: 3px solid #F29030;
}

.timeline .year {
    font-weight: bold;
    color: #F29030;
    margin-right: 10px;
    display: inline-block;
    width: 60px;
}

.btn-rounded{
    border-radius: 10px;
}

/* map vector */
#hovered-region,
#clicked-region {
    background: #01374d;
    border: 1px solid #e5eabd;
    color: #e4b045;
    display: inline-block;
    font: normal 10pt 'Ubuntu Mono';
    margin-right: 3px;
    padding: 4px 8px;
    text-align: center;
    width: 170px 
}

#hovered-region span,
#clicked-region span {
    color: #e4e770;
    font-weight: bold
}

#brazil-map {
    margin: 10px auto;
    height: 650px;
    width: 100%;
}

.titleCat h4{
    border-top: #F29030 7px solid;
}

/* Página Produto */
.galeria-produto img {
  width: 100%;
  height: 250px; /* ajuste o tamanho que quiser */
  object-fit: cover; /* corta mantendo o enquadramento */
  border-radius: 8px; /* opcional: cantos arredondados */
  transition: transform 0.3s ease;
}

.galeria-produto img:hover {
  transform: scale(1.05); /* leve zoom no hover */
}