
/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
    border: none;
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary);
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top {
    transition: 1s;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    transition: .5s;
    z-index: 99;
}

.navbar .navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 2px solid var(--bs-secondary);
    opacity: 0;
    transition: 0.5s;
    z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
    border-bottom: 0;
    border-right: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
    border-top: 0;
    border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-secondary);
}

.nav-bar .navbar-toggler { 
    color: var(--bs-dark);
    box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.navbar .nav-item .dropdown-menu {
    background: var(--bs-light);
    transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        margin-top: 15% !important;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
        border: 0;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu {
        position: relative;
        margin-top: 0;
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-item::after,
    .navbar .navbar-nav .nav-item::before {
        display: none;
    }

    .navbar .navbar-nav .nav-item:hover::after,
    .navbar .navbar-nav .nav-item:hover::before,
    .navbar .navbar-nav .nav-item.active::after,
    .navbar .navbar-nav .nav-item.active::before {
        display: none;

    }

    .navbar .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar .navbar-nav .nav-item.nav-link {
        padding: 12px 0;
    }
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.carousel .carousel-inner .carousel-item img {
    animation-name: image-zoom ;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%; -webkit-filter: blur(0px); opacity: 1;}

    25% {width: 115%; height: 115%; -webkit-filter: blur(3px); opacity: 0.9;}

    50% {width: 130%; height: 130%; -webkit-filter: blur(10px); opacity: 0.7;}

    75% {width: 115%; height: 115%; -webkit-filter: blur(3px); opacity: 0.9;}

    100% {width: 100%; height: 100%; -webkit-filter: blur(0px); opacity: 1;}
}

@media (min-width: 992px) {
    .carousel .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;   
    }
}

@media (max-width: 991px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
    }
    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;    
    }
}

@media (max-width: 576px) {
    .carousel-item .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-item .carousel-caption p.fs-5 {
        font-size: 15px;
    }
}

.carousel .carousel-inner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.carousel .carousel-indicators {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    z-index: 5;
}

.carousel .carousel-indicators li,
.carousel .carousel-indicators li,
.carousel .carousel-indicators li {
    margin-right: 30px !important;
    width: 10px;
    height: 10px;
    border: 6px solid var(--bs-secondary);
    background: var(--bs-white);
    transition: 0.5s;
}

.carousel .carousel-indicators li.active {
    border: 10px solid var(--bs-primary);
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    background: transparent;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    left: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    right: 0;
    padding: 25px 30px;
    background: var(--bs-primary);

}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** Carousel End ***/


/*** About Start ***/
.about .about-item-content-img {
    border: 4px solid;
    border-color: var(--bs-secondary) var(--bs-primary) var(--bs-primary) var(--bs-secondary);
}

.about .about-item-image {
    position: relative;
    background: var(--bs-light);
    background-image: url(../img/about-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.about .about-item-image .img-1 {
    margin-bottom: 250px; 
    margin-right: 0;
    border: 4px solid;
    border-color: var(--bs-secondary) var(--bs-light) var(--bs-light) var(--bs-secondary);
    z-index: 3;
}

.about .about-item-image .img-2 {
    margin-top: 250px; 
    margin-left: 0;
    border: 4px solid;
    border-color: var(--bs-light) var(--bs-secondary) var(--bs-secondary) var(--bs-light); 
    z-index: 3;
}

.about .about-item-image::before {
    width: 80%;
    height: 80%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-style: dotted;
    border-color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 2;
}

.about .about-item-image .about-item-image-content {
    width: 55%;
    height: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-secondary);
    border: 4px solid var(--bs-primary);
    opacity: 0.9;
    z-index: 4;
}

.about .about-item-image .about-item-image-effect {
    position: absolute;
    top: 0;
    right: 0;
}
/*** About End ***/

/*** Features Start ***/
.feature .feature-item {
    position: relative;
    transition: 0.5s;
}
.feature .feature-item:hover {
    background: var(--bs-white);
    border: 1px solid transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.feature .feature-item:hover a {
    transition: 0.5s;
}

.feature .feature-item:hover a:hover {
    color: var(--bs-secondary);
}

.feature .feature-item .feature-img img {
    border: transparent;
    transition: 0.5s;
} 

.feature .feature-item:hover .feature-img img {
    border: 1px solid var(--bs-secondary);
}  
/*** Features End ***/

/*** Services Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%; 
    left: 0; 
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--bs-white);
    transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
    color: var(--bs-secondary);
}

.service .service-item .service-tytle {
    position: absolute;
    width: 100%;
    height: 80px; 
    bottom: 0; 
    right: 0;
    background: var(--bs-white);
    display: flex;
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-tytle {
    margin-right: -100%;
}
/*** Services End ***/

/*** Fact Counter ***/
.counter {
    background: linear-gradient(rgba(0, 18, 72, 0.9), rgba(0, 22, 89, 1)), url(../img/counter.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-btn:hover {
    background: var(--bs-white);
    color: var(--bs-secondary);
}

.counter .counter-box {
    padding-right: 20px; 
    padding-bottom: 20px;
}

.counter .counter-item {
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.counter .counter-item .counter-item-style {
    position: absolute;
    width: calc(100% - 20px);
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    z-index: 2;
}

.counter .counter-item .counter-item-inner {
    position: relative;
    top: 20px;
    left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    background: var(--bs-white);
    box-shadow: 20px 20px rgba(255, 94, 21, 1);
    z-index: 3;
}

.counter .counter-item .counter-counting {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    font-size: 30px;
}
/*** Fact Counter ***/

/*** Projects Start ***/
.project .project-item .project-img {
    position: relative;
}

.project .project-item .project-img::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    z-index: -1;
}

.project .project-item .project-content a.h4 {
    transition: 0.5s;
}

.project .project-item:hover .project-content a.h4:hover {
    color: var(--bs-secondary);
}
/*** Projects End ***/


/*** Team Start ***/
.team .team-item {
    position: relative;
    z-index: 1;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .2);
    transition: 0.5s;
    z-index: 2;

}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: scale(-1);
    margin-bottom: 100%;
    background: transparent;
    transition: 0.5s;
    opacity: 0;
    z-index: 5;
    
}

.team .team-item:hover .team-img .team-icon {
    transform: scale(1);
    margin-bottom: 0;
    opacity: 1;
}

.team .team-item .team-border-style-1,
.team .team-item .team-border-style-2 {
    width: 50%;
    height: 50%;
    position: absolute;
    background: var(--bs-secondary);
    transition: 0.5s;
    z-index: -1;
}

.team .team-item .team-border-style-1 {
    top: 0;
    left: 0;
}

.team .team-item .team-border-style-2 {
    right: 0;
    bottom: 0;
}

.team .team-item .team-border-style-3,
.team .team-item .team-border-style-4 {
    width: 0;
    height: 0;
    position: absolute;
    background: var(--bs-secondary);
    transition: 0.5s;
    z-index: -1;
}

.team .team-item .team-border-style-3 {
    top: 0;
    right: 0;
}

.team .team-item .team-border-style-4 {
    left: 0;
    bottom: 0;
}

.team .team-item:hover .team-border-style-1,
.team .team-item:hover .team-border-style-2 {
    width: 0%;
    height: 0%;
}

.team .team-item:hover .team-border-style-3,
.team .team-item:hover .team-border-style-4 {
    width: 50%;
    height: 50%;
}
/*** Team End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-content {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-secondary);
}
/*** Blog End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Contact Start ***/
.contact .contact-map {
    position: relative;
    overflow: hidden;
    padding: 20px;
    z-index: 1;
}

.contact .contact-map::before {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    z-index: -1;
}

.contact .contact-map::after {
    content: "";
    width: 70%;
    height: 70%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bs-secondary);
    z-index: -1;
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 18, 72, 0.9), rgba(0, 18, 72, 1)), url(../img/footer-img.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-secondary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/


/* =====================================================================
   NOBRE — CAMADA DE IDENTIDADE VISUAL
   Motivo único e sistemático: símbolo da marca (watermark), logotipo
   nas peças-chave e o laranja institucional como acento estratégico.
   ===================================================================== */

/*** Marca no cabeçalho ***/
.navbar-brand.brand { display: inline-flex; align-items: center; }
.navbar-brand .brand-logo {
    height: 56px;
    width: auto;
    display: block;
    transition: transform .4s ease;
}
.navbar-brand:hover .brand-logo { transform: translateY(-2px); }

@media (max-width: 991px) {
    .navbar-brand .brand-logo { height: 48px; }
}
@media (max-width: 400px) {
    .navbar-brand .brand-logo { height: 40px; }
}

/*** Loader com o símbolo da marca ***/
#spinner .brand-spinner {
    width: 96px;
    height: auto;
    animation: brand-pulse 1.25s ease-in-out infinite;
}
@keyframes brand-pulse {
    0%, 100% { transform: scale(.86); opacity: .5; }
    50%      { transform: scale(1);   opacity: 1;  }
}

/*** Marca d'água do símbolo (elemento decorativo) ***/
.brand-symbol-watermark {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .05;
}
.brand-symbol-watermark--navy  { background-image: url(../img/symbol-navy.svg); }
.brand-symbol-watermark--white { background-image: url(../img/symbol-white.svg); }
.brand-symbol-watermark--orange{ background-image: url(../img/logo-symbol.svg); }

/* Garante que o conteúdo fique acima da marca d'água */
.brand-stage { position: relative; }
.brand-stage > .container,
.brand-stage > .container-fluid { position: relative; z-index: 1; }

/*** Acento institucional em títulos de seção ***/
.brand-accent { position: relative; display: inline-block; }
.brand-accent::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 14px;
    background: var(--bs-secondary);
}
.text-center .brand-accent::after,
.brand-accent.mx-auto::after { margin-left: auto; margin-right: auto; }

/* Selo do símbolo antes do "eyebrow" das seções */
.brand-eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.brand-eyebrow::before {
    content: "";
    width: 24px;
    height: 22px;
    background: url(../img/logo-symbol.svg) no-repeat center/contain;
    display: inline-block;
    flex: 0 0 auto;
}

/*** Lockup da marca no rodapé ***/
.footer .footer-brand .footer-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 22px;
}
.footer .footer-brand p { color: rgba(255, 255, 255, .60); }
.footer .footer-brand .footer-since {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 14px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-secondary);
    font-family: "Playfair Display", serif;
    letter-spacing: 1px;
    font-size: 14px;
}

/*** Faixa institucional acima do rodapé (assinatura da marca) ***/
.brand-strip {
    background: var(--bs-secondary);
    position: relative;
    overflow: hidden;
}
.brand-strip .brand-strip-symbol {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: url(../img/symbol-white.svg) no-repeat center/contain;
    opacity: .12;
    pointer-events: none;
}
/* Marca d'água aplicada ao contador (fundo escuro) */
.counter .brand-symbol-watermark { opacity: .06; }

/*** Botão flutuante do WhatsApp (canto inferior esquerdo) ***/
.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    z-index: 99;
    transition: .4s;
}
.whatsapp-float:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-3px);
}
@media (max-width: 575px) {
    .whatsapp-float {
        left: 20px;
        bottom: 20px;
        width: 52px;
        height: 52px;
        font-size: 27px;
    }
}
/* NOBRE — fim da camada de identidade visual */


/* =====================================================================
   NOBRE — PÁGINAS INTERNAS (Serviços / Sobre / Projetos)
   Componentes de conversão: proposta de valor, cards de serviço,
   processo, diferenciais, faixa de CTA e FAQ.
   ===================================================================== */

/* Chips de confiança */
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #fff;
    border: 1px solid rgba(0, 22, 89, .12);
    border-radius: 40px;
    font-weight: 500;
    color: var(--bs-primary);
    font-size: 15px;
}
.trust-chip i { color: var(--bs-secondary); }

/* Imagem-herói de serviços (cluster assimétrico) */
.svc-hero-img { position: relative; padding: 0 26px 34px 0; }
.svc-hero-img .svc-hero-main {
    width: 100%;
    border: 8px solid #fff;
    box-shadow: 0 24px 55px rgba(0, 18, 72, .18);
    position: relative;
    z-index: 1;
}
.svc-hero-img .svc-hero-sub {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    border: 8px solid #fff;
    box-shadow: 0 18px 40px rgba(0, 18, 72, .22);
    z-index: 2;
}
.svc-hero-badge {
    position: absolute;
    left: -18px;
    top: 26px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bs-secondary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.05;
    box-shadow: 0 14px 30px rgba(255, 94, 21, .4);
    z-index: 3;
}
.svc-hero-badge small { font-size: 12px; font-weight: 500; letter-spacing: 1px; }
.svc-hero-badge span { font-size: 26px; }

/* Card de serviço (sempre visível, rico) */
.svc-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 22, 89, .08);
    transition: .4s;
    overflow: hidden;
}
.svc-card:hover {
    box-shadow: 0 26px 55px rgba(0, 18, 72, .16);
    transform: translateY(-6px);
    border-color: transparent;
}
.svc-card .svc-card-img { position: relative; overflow: hidden; height: 215px; }
.svc-card .svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.svc-card:hover .svc-card-img img { transform: scale(1.08); }
.svc-card .svc-card-icon {
    position: absolute;
    left: 24px;
    bottom: -30px;
    width: 64px;
    height: 64px;
    background: var(--bs-secondary);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 12px 26px rgba(255, 94, 21, .35);
    transition: .4s;
    z-index: 2;
}
.svc-card:hover .svc-card-icon { background: var(--bs-primary); color: #fff; }
.svc-card .svc-card-body { padding: 46px 26px 28px; }
.svc-card .svc-card-body h3 { font-size: 22px; margin-bottom: 12px; color: var(--bs-dark); }
.svc-card .svc-card-body > p { color: #5c6470; margin-bottom: 16px; }
.svc-card .svc-feats { list-style: none; padding: 0; margin: 0 0 20px; }
.svc-card .svc-feats li { position: relative; padding-left: 26px; margin-bottom: 7px; color: #5c6470; font-size: 15px; }
.svc-card .svc-feats li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 3px;
    color: var(--bs-secondary);
    font-size: 12px;
}
.svc-card .svc-link { font-weight: 600; color: var(--bs-primary); display: inline-flex; align-items: center; gap: 8px; transition: .3s; }
.svc-card .svc-link:hover { color: var(--bs-secondary); gap: 13px; }

/* Processo (fundo navy) */
.process {
    background: linear-gradient(rgba(0, 18, 72, .95), rgba(0, 18, 72, .98)), url(../img/counter.jpg);
    background-position: center; background-repeat: no-repeat; background-size: cover;
}
.process-step { position: relative; text-align: center; padding: 0 10px; }
.process-step .ps-icon {
    position: relative;
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 2px dashed rgba(255, 94, 21, .55);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    color: var(--bs-secondary);
    font-size: 34px;
    transition: .4s;
    z-index: 2;
}
.process-step:hover .ps-icon { background: var(--bs-secondary); color: #fff; border-color: var(--bs-secondary); }
.process-step .ps-num {
    position: absolute; top: -6px; right: -6px;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--bs-secondary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px;
    border: 3px solid var(--bs-primary);
}
.process-step h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.process-step p { color: rgba(255, 255, 255, .62); margin: 0; }
@media (min-width: 992px) {
    .process-row > [class*="col"]:not(:last-child) .process-step::after {
        content: "";
        position: absolute; top: 47px; left: calc(50% + 56px);
        width: calc(100% - 112px); height: 2px;
        background: repeating-linear-gradient(90deg, rgba(255, 94, 21, .55) 0 7px, transparent 7px 15px);
        z-index: 1;
    }
}

/* Diferenciais */
.diff-list { list-style: none; padding: 0; margin: 0; }
.diff-list li { display: flex; gap: 16px; margin-bottom: 24px; }
.diff-list li:last-child { margin-bottom: 0; }
.diff-list li .di-ic {
    flex: 0 0 auto; width: 54px; height: 54px;
    background: var(--bs-light); color: var(--bs-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 21px; transition: .4s;
}
.diff-list li:hover .di-ic { background: var(--bs-secondary); color: #fff; }
.diff-list li h4 { font-size: 18px; margin-bottom: 4px; color: var(--bs-dark); }
.diff-list li p { margin: 0; color: #5c6470; }
.diff-img { position: relative; padding: 0 18px 18px 0; }
.diff-img img { width: 100%; border: 8px solid #fff; box-shadow: 0 22px 50px rgba(0, 18, 72, .16); }
.diff-img .diff-stat {
    position: absolute; right: 0; bottom: 0;
    background: var(--bs-primary); color: #fff;
    padding: 20px 26px; text-align: center;
}
.diff-img .diff-stat span { display: block; font-family: "Playfair Display", serif; font-size: 32px; font-weight: 700; color: var(--bs-secondary); line-height: 1; }
.diff-img .diff-stat small { font-size: 13px; letter-spacing: .5px; }

/* Faixa de CTA (navy) */
.cta-band { background: var(--bs-primary); position: relative; overflow: hidden; }
.cta-band .cta-symbol {
    position: absolute; left: -50px; top: 50%; transform: translateY(-50%);
    width: 240px; height: 240px;
    background: url(../img/symbol-white.svg) no-repeat center/contain;
    opacity: .08; pointer-events: none;
}
.cta-band .btn-light-outline {
    border: 2px solid rgba(255, 255, 255, .45); color: #fff; background: transparent;
}
.cta-band .btn-light-outline:hover { background: #fff; color: var(--bs-primary); }

/* CTA phone (outline navy) reaproveitável em fundo claro */
.btn-nobre-outline { border: 2px solid var(--bs-primary); color: var(--bs-primary); background: transparent; }
.btn-nobre-outline:hover { background: var(--bs-primary); color: #fff; }

/* FAQ */
.faq-accordion .accordion-item { border: 1px solid rgba(0, 22, 89, .1); margin-bottom: 14px; background: #fff; border-radius: 0; overflow: hidden; }
.faq-accordion .accordion-button {
    font-family: "Playfair Display", serif; font-weight: 600; font-size: 18px;
    color: var(--bs-primary); padding: 20px 24px; background: #fff; box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--bs-secondary); background: #fff; box-shadow: inset 0 -1px 0 rgba(0,22,89,.08); }
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-accordion .accordion-button::after {
    background-size: 1.1rem; width: 1.1rem; height: 1.1rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FF5E15' stroke-width='3'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body { padding: 4px 24px 24px; color: #5c6470; line-height: 1.85; }

/* Cartões de valores (Sobre) */
.value-card { background: #fff; border: 1px solid rgba(0, 22, 89, .08); padding: 40px 30px; height: 100%; transition: .4s; position: relative; }
.value-card::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 0; background: var(--bs-secondary); transition: .4s; }
.value-card:hover { box-shadow: 0 24px 50px rgba(0, 18, 72, .14); transform: translateY(-6px); }
.value-card:hover::before { height: 100%; }
.value-card .vc-ic { width: 70px; height: 70px; background: var(--bs-light); color: var(--bs-secondary); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; transition: .4s; }
.value-card:hover .vc-ic { background: var(--bs-secondary); color: #fff; }
.value-card h3 { font-size: 22px; margin-bottom: 12px; }
.value-card p { color: #5c6470; margin: 0; }

/* Galeria de projetos (Projetos) */
.proj-card { position: relative; overflow: hidden; }
.proj-card img { width: 100%; height: 340px; object-fit: cover; transition: .6s; }
.proj-card:hover img { transform: scale(1.08); }
.proj-card .proj-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0, 18, 72, .92) 0%, rgba(0, 18, 72, .35) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px; opacity: 0; transition: .45s; transform: translateY(14px);
}
.proj-card:hover .proj-overlay { opacity: 1; transform: translateY(0); }
.proj-card .proj-cat { color: var(--bs-secondary); text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.proj-card .proj-title { color: #fff; font-family: "Playfair Display", serif; font-size: 22px; margin-bottom: 8px; }
.proj-card .proj-desc { color: rgba(255, 255, 255, .75); font-size: 15px; margin: 0; }
.proj-card .proj-tag { position: absolute; top: 20px; left: 20px; background: var(--bs-secondary); color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; z-index: 2; transition: .4s; }
.proj-card:hover .proj-tag { opacity: 0; }
/* Prova social do Google + cards de depoimento */
.google-band { background: var(--bs-light); border: 1px solid rgba(0, 22, 89, .08); }
.google-band .g-score { font-family: "Playfair Display", serif; font-size: 68px; font-weight: 700; color: var(--bs-primary); line-height: 1; }
.google-band .g-stars i { color: #FFB400; font-size: 20px; }
.depo-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(0, 22, 89, .08); padding: 38px 30px 30px; height: 100%; transition: .4s; }
.depo-card:hover { box-shadow: 0 24px 50px rgba(0, 18, 72, .14); transform: translateY(-6px); }
.depo-card .depo-quote { position: absolute; top: 24px; right: 30px; font-size: 38px; color: rgba(255, 94, 21, .15); }
.depo-card .depo-stars i { color: #FFB400; font-size: 15px; }
/* área do depoimento com rolagem interna (não deixa o card crescer) */
.depo-card .depo-quote-text {
    max-height: 190px;
    overflow-y: auto;
    margin: 14px 0 20px;
    padding-right: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 94, 21, .55) rgba(0, 22, 89, .06);
}
.depo-card .depo-quote-text p { color: #5c6470; font-style: italic; line-height: 1.75; font-size: 15px; margin-bottom: 12px; }
.depo-card .depo-quote-text p:last-child { margin-bottom: 0; }
.depo-card .depo-quote-text::-webkit-scrollbar { width: 6px; }
.depo-card .depo-quote-text::-webkit-scrollbar-track { background: rgba(0, 22, 89, .06); border-radius: 3px; }
.depo-card .depo-quote-text::-webkit-scrollbar-thumb { background: rgba(255, 94, 21, .55); border-radius: 3px; }
.depo-card .depo-quote-text::-webkit-scrollbar-thumb:hover { background: var(--bs-secondary); }
.depo-card .depo-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(0,22,89,.08); padding-top: 18px; margin-top: auto; }
.depo-card .depo-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--bs-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; flex: 0 0 auto; font-family: "Playfair Display", serif; }
.depo-card .depo-author h4 { font-size: 17px; margin: 0; color: var(--bs-dark); }
.depo-card .depo-author span { font-size: 13px; color: #8a909a; }
.depo-placeholder { border-style: dashed; border-color: rgba(0,22,89,.18); }

/* Itens de contato em fundo claro (página Contato) */
.foot-contact-dark { display: flex; align-items: center; color: var(--bs-dark); font-weight: 500; text-decoration: none; font-size: 17px; }
a.foot-contact-dark:hover { color: var(--bs-secondary); }
a.value-card:hover h3 { color: var(--bs-secondary); }

/* Rodapé profissional */
.footer .footer-title {
    font-size: 19px;
    color: #fff;
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 14px;
}
.footer .footer-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 38px; height: 3px;
    background: var(--bs-secondary);
}
.footer .footer-item > p { color: rgba(255, 255, 255, .62); line-height: 1.9; }
.footer .footer-nav a { display: block; }
.footer address { font-style: normal; margin: 0 0 20px; }
.footer .foot-contact {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .62);
    line-height: 1.6;
    margin-bottom: 15px;
    transition: .4s;
}
.footer .foot-contact i { color: var(--bs-secondary); margin-top: 4px; flex: 0 0 auto; }
.footer a.foot-contact:hover { color: var(--bs-secondary); letter-spacing: normal; }
/* Botões dentro do rodapé (ex.: WhatsApp) mantêm texto branco e legível
   — sobrepõe a cor cinza herdada de '.footer .footer-item a' */
.footer .footer-item a.btn { color: #fff; }
.footer .footer-item a.btn:hover { color: #fff; letter-spacing: normal; }

/* Barra do topo do cabeçalho: texto branco para bom contraste no fundo navy
   (os ícones continuam laranja via .text-secondary) */
.topbar a { color: rgba(255, 255, 255, .9) !important; }
.topbar a:hover { color: #fff !important; }
/* NOBRE — fim dos componentes de páginas internas */


/* ============================================================
   HERO — engenharia de conversão (glassmorphism + ornamentos)
   ============================================================ */
/* backdrop estável: desliga o zoom/blur da imagem p/ o vidro não tremer */
.carousel .carousel-inner .carousel-item img { animation: none; }

/* overlay direcional: escurece a esquerda (copy) e revela a imagem à direita */
.carousel .carousel-inner .carousel-item::after {
    background: linear-gradient(100deg, rgba(0,18,72,.94) 0%, rgba(0,18,72,.78) 34%, rgba(0,18,72,.40) 62%, rgba(0,18,72,.08) 86%, rgba(0,18,72,0) 100%);
}

/* caption alinhado à esquerda.
   pointer-events:none deixa os cliques passarem para as setas do carousel
   (que ficavam cobertas pelo caption full-width); só o vidro volta a capturar. */
.hero-caption {
    left: 0; right: 0;
    align-items: flex-start !important;
    text-align: left;
    padding: 0 6% 0 8%;
    pointer-events: none;
}
.hero-glass { pointer-events: auto; }

/* painel de vidro */
.hero-glass {
    position: relative;
    max-width: 660px;
    padding: 42px 44px 38px;
    background: linear-gradient(135deg, rgba(0,18,72,.50), rgba(4,14,45,.62));
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    backdrop-filter: blur(16px) saturate(130%);
    border: 1px solid rgba(255,255,255,.14);
    border-left: 3px solid var(--bs-secondary);
    box-shadow: 0 28px 65px rgba(0,0,0,.4);
}
/* ornamento discreto: canto superior direito */
.hero-glass::before {
    content: "";
    position: absolute; top: 14px; right: 14px;
    width: 28px; height: 28px;
    border-top: 2px solid var(--bs-secondary);
    border-right: 2px solid var(--bs-secondary);
    opacity: .85;
}

/* eyebrow com linha */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--bs-secondary); text-transform: uppercase;
    letter-spacing: 3px; font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.hero-eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--bs-secondary); }

/* título */
.hero-title {
    font-family: "Playfair Display", serif; color: #fff; font-weight: 700;
    font-size: clamp(28px, 3.4vw, 52px); line-height: 1.1; margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.35); text-transform: none;
}
.hero-title .hl { color: var(--bs-secondary); }

/* lead */
.hero-lead { color: rgba(255,255,255,.82); font-size: clamp(15px,1.15vw,18px); line-height: 1.6; margin-bottom: 22px; }

/* bullets */
.hero-bullets { list-style: none; padding: 0; margin: 0 0 26px; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 12px; color: #fff; font-size: clamp(14px,1vw,16px); font-weight: 500; margin-bottom: 12px; }
.hero-bullets li:last-child { margin-bottom: 0; }
.hero-bullets li i {
    flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
    background: var(--bs-secondary); color: var(--bs-primary);
    display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px;
}

/* CTA */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-cta .btn { font-size: 15px; font-weight: 600; padding: 15px 30px; }
.hero-cta .btn-secondary { box-shadow: 0 12px 30px rgba(255,94,21,.42); }
.btn-hero-glass {
    color: #fff; border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.08);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn-hero-glass:hover { background: #fff; color: var(--bs-primary); }

/* selos de confiança */
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 500; }
.hero-trust .st { color: #FFB400; }
.hero-trust .ic { color: var(--bs-secondary); }

/* animação por slide ativo (stagger, re-dispara a cada troca) */
@keyframes heroUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.carousel-item.active .hero-eyebrow { animation: heroUp .7s ease .10s both; }
.carousel-item.active .hero-title   { animation: heroUp .8s ease .25s both; }
.carousel-item.active .hero-lead    { animation: heroUp .8s ease .40s both; }
.carousel-item.active .hero-bullets { animation: heroUp .8s ease .50s both; }
.carousel-item.active .hero-cta     { animation: heroUp .8s ease .62s both; }
.carousel-item.active .hero-trust   { animation: heroUp .8s ease .74s both; }

@media (max-width: 767px) {
    .hero-caption { padding: 0 5%; }
    .hero-glass { max-width: 100%; padding: 26px 22px 24px; }
    .hero-title { font-size: 27px; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { padding: 13px 20px; font-size: 14px; width: 100%; justify-content: center; }
    .hero-trust { gap: 6px 16px; }
    .hero-glass::before { display: none; }
}
/* HERO — fim */


