/********** Template CSS **********/
:root {
    --primary: #ffc107;
    --secondary: #191C24;
    --light: #fdfdff;
    --dark: #000000;
}

.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-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 .navbar-toggler {
    border: none; /* Remove a borda do botão */
    background: transparent; /* Torna o fundo do botão transparente */
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 10px 0;
    color: var(--dark);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-toggler-icon {
    width: 30px; /* Ajusta a largura do ícone */
    height: 3px; /* Ajusta a altura das listras */
    background-color: black; /* Cor das listras */
    position: relative; /* Para posicionar as listras */
}

.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after {
    content: "";
    display: block;
    width: 100%; /* Largura total do ícone */
    height: 3px; /* Altura das listras */
    background-color: black; /* Cor das listras */
    position: absolute; /* Posiciona as listras no botão */
}

.navbar .navbar-toggler-icon::before {
    top: -8px; /* Ajusta a posição da primeira listra */
}

.navbar .navbar-toggler-icon::after {
    top: 8px; /* Ajusta a posição da segunda listra */
}

.navbar {
    background-color: rgb(255, 255, 255) !important; /* Cor de fundo da navbar */
}

.navbar .navbar-nav .nav-link {
    color: var(--dark); /* Cor dos links da navbar */
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary); /* Cor dos links ao passar o mouse ou ativo */
}

/* Remove qualquer sombra aplicada */
.navbar .navbar-toggler,
.navbar .navbar-toggler-icon {
    box-shadow: none;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

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

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

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


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

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


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

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

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    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: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

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

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





.card-img-top {
    width: 140px;
    height: 120px;
    object-fit: cover;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
}

.row {
    margin-left: -5px;
    margin-right: -5px;
}

.col-6, .col-sm-4, .col-md-3, .col-lg-2 {
    padding-left: 5px;
    padding-right: 5px;
}

@media (max-width: 576px) {
    .card-img-top {
        width: 140px;
        height: 120px;
    }
}


.team-item {
    box-shadow: none !important; /* Remove qualquer sombra aplicada */
}
.team-img img:hover {
    box-shadow: none; /* Remove a sombra */
    transition: none; /* Remove a transição se houver */
}
img {
    box-shadow: none;
    filter: none;
}
.team-img img {
    box-shadow: none;
    filter: none;
}
/* Remove a sombra das imagens no mobile */
@media (max-width: 768px) {
    .team-img img {
        box-shadow: none; /* Remove a sombra */
        filter: none; /* Remove qualquer filtro que possa estar aplicando sombra */
    }
}



.navbar {
    background-color: rgb(255, 255, 255) !important;
}



/* Estilo do botão do WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  .whatsapp-button:hover {
    background-color: #20b858;
  }
  .whatsapp-button i {
    font-size: 24px;
  }