
/*** 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;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    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;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid var(--bs-primary);
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 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: 100%;
    border-width: 1px;
}

.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-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -400px;}
    50%   {right: -200px;}
    75%   {top: -200px;}
    100%  {top: -400px;}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0%   {left: 0px;}
    50%   {left: 70px;}
    100%  {left: 0px;}
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0%   {left: -240px;}
    50%   {left: -300px;}
    100%  {left: -240px;}
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }
}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircleBreadcrumb 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircleBreadcrumb {
    0% {top: -200px;}
    50%   {right: -100px;}
    75%   {top: -100px;}
    100%  {top: -200px;}
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item .service-img::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.service .service-item:hover .service-img::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content {
    position: relative;
}

.service .service-item .service-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
    height: 100%;
}

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
    transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after {
    height: 100%;
}

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: 8px solid var(--bs-primary);
}
/*** Project End ***/

/*** Blog Start ***/
.blog .blog-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .project-img .blog-plus-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(68, 210, 246, 0.2);
    transition: 0.5s;
    opacity: 0;
}

.blog .blog-item:hover .project-img .blog-plus-icon {
    opacity: 1;
}

.blog .blog-item .project-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .project-img img {
    transform: scale(1.3);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-dark);
    transition: 0.5s;
}

.team .team-item:hover {
    border: none !important;
}

.team .team-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--bs-primary) transparent transparent var(--bs-primary) !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: transparent var(--bs-primary) var(--bs-primary) transparent !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item:hover:after,
.team .team-item:hover::before {
    width: 100% !important;
    height: 100% !important;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.2);
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon .team-icon-share {
    position: relative;
    margin-top: -200px;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon .team-icon-share {
    margin-top: 0 !important;
}

.team .team-item .team-content {
    position: relative;
}

.team .team-item .team-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item .team-content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item:hover .team-content::after,
.team .team-item:hover .team-content::before {
    width: 100% !important;
    height: 50% !important;
}

.team .team-item:hover .team-content .team-content-inner {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.team .team-item .team-content .team-content-inner h4,
.team .team-item .team-content .team-content-inner p {
    transition: 0.5s;
}

.team .team-item:hover .team-content .team-content-inner p {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content .team-content-inner h4 {
    color: var(--bs-dark) !important;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Testimonial End ***/

/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*** FAQ'S End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.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-primary);
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: var(--bs-primary) !important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/




/* About Modern (harmônico e institucional) */
.about-modern{
  position: relative;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(13,110,253,.10), transparent 55%),
              radial-gradient(900px 500px at 95% 20%, rgba(25,135,84,.08), transparent 55%),
              linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
}

.about-hero{
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.about-badge{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--bs-primary);
  background: rgba(13,110,253,.10);
  border: 1px solid rgba(13,110,253,.20);
}

.about-line{
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(13,110,253,.35), rgba(0,0,0,0));
}

.about-title{
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.about-lead{
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  max-width: 60ch;
    width: 100%;
  max-width: 100%;
}

.about-card{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
  padding: 1.25rem 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.about-card-head{
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}

.about-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(13,110,253,.12);
  color: var(--bs-primary);
  border: 1px solid rgba(13,110,253,.18);
  font-size: 1.1rem;
}
.about-icon.soft{
  background: rgba(25,135,84,.10);
  border: 1px solid rgba(25,135,84,.18);
  color: #198754;
}

.about-card-title{
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
}

.about-card-text{
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.about-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}
.about-list li{
  display: flex;
  align-items: flex-start;
  color: #334155;
  line-height: 1.45;
}
.about-list i{
  color: var(--bs-primary);
  margin-top: .2rem;
}

.about-quality{
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,1));
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.about-quality h3{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.about-chip{
  display: inline-flex;
  align-items: center;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  color: #0f172a;
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.08);
}

.about-signature{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: #0f172a;
}
.about-signature-line{
  flex: 1;
  min-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,0));
}
.about-signature span{
  color: #64748b;
}


/* ===== Consultas (moderno, clean, harmônico) ===== */
.consultas-section{
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 70%);
}

.consultas-kicker{
  display:inline-block;
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#5b6b82;
  margin-bottom:.35rem;
}

.consultas-title{
  font-weight:800;
  letter-spacing:-.02em;
  color:#0b1b33;
}

.consultas-subtitle{
  color:#5b6b82;
  max-width: 720px;
}

.consultas-help{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:.75rem 1rem;
  border:1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  background:#fff;
  color:#334155;
  font-size:.95rem;
  white-space:nowrap;
}

/* Card clicável */
.consulta-card{
  display:flex;
  gap:1rem;
  text-decoration:none;
  padding:1.25rem 1.25rem;
  border-radius: 18px;
  border:1px solid rgba(15, 23, 42, .08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height:100%;
  position:relative;
  overflow:hidden;
}

.consulta-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 180px at 20% 0%,
    rgba(59, 130, 246, .14),
    transparent 55%);
  opacity:.9;
  pointer-events:none;
}

.consulta-card:hover{
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, .28);
  box-shadow: 0 14px 40px rgba(2, 6, 23, .10);
}

.consulta-icon{
  width:54px;
  height:54px;
  flex:0 0 54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(37, 99, 235, .10), rgba(99, 102, 241, .10));
  border:1px solid rgba(59, 130, 246, .18);
  color:#1d4ed8;
  position:relative;
  z-index:1;
}

.consulta-icon i{
  font-size:1.35rem;
}

.consulta-body{
  position:relative;
  z-index:1;
  min-width:0;
}

.consulta-title{
  margin:0;
  font-size:1.05rem;
  font-weight:800;
  color:#0b1b33;
  letter-spacing:-.01em;
}

.consulta-desc{
  margin:.25rem 0 .7rem;
  color:#5b6b82;
  line-height:1.35;
}

.consulta-cta{
  display:inline-flex;
  align-items:center;
  gap:.25rem;
  font-weight:700;
  color:#1d4ed8;
}

.consulta-card-wide .consulta-desc{
  max-width: 520px;
}


/* Services (Novo / Moderno) */
.service-item{
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}

.service-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  border-color: rgba(13,110,253,.25);
}

.service-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.10);
  color: var(--bs-primary);
  flex: 0 0 46px;
}

.service-icon i{
  font-size: 18px;
}

.service-content h4{
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.service-content p.small{
  color: rgba(0,0,0,.65);
  line-height: 1.3rem;
}

/* Botão mais “clean” */
.service-content .btn{
  border: 1px solid rgba(0,0,0,.08);
}

/* CARD: impede “sobras” e força layout em coluna */
.service-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;              /* corta qualquer sobra e respeita o rounded */
  background: transparent !important; /* mata o bg-light */
}

/* imagem fica no topo certinha */
.service-card .service-img img{
  display: block;
  width: 100%;
}

/* CORPO: este bloco agora ocupa TODO o restante do card */
.service-card .service-body{
  flex: 1;                       /* <- o pulo do gato */
  display: flex;
  flex-direction: column;
  justify-content: center;       /* centraliza o conteúdo verticalmente (opcional) */
  background: #061b3a;           /* seu azul escuro */
  color: #fff;
}

/* links e textos dentro do corpo */
.service-card .service-body .h4,
.service-card .service-body a{
  color: #fff !important;
  text-decoration: none;
}

.service-card .service-body p{
  color: rgba(255,255,255,.85);
  margin-bottom: 0;
}

/* se quiser o ícone branquinho também */
.service-card .service-body i{
  color: #fff;
}


/* ===== Services: branco/azul -> azul/branco no hover ===== */
#servicos{
  --svc-blue: #0b2a5b;         /* seu azul escuro */
  --svc-blue-2: #0d3b7a;       /* opcional p/ gradiente */
}

/* garante que o card use altura total e controle bordas */
#servicos .service-item{
  border-radius: 18px;
  overflow: hidden;                 /* faz o fundo pegar tudo sem “vazar” */
  background: #fff;
  border: 1px solid rgba(11,42,91,.12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* área de texto */
#servicos .service-content{
  background: #fff;                 /* estado normal */
  color: var(--svc-blue);
  transition: background .25s ease, color .25s ease;
}

/* título/link e ícone no estado normal */
#servicos .service-content .h4,
#servicos .service-content a{
  color: var(--svc-blue) !important;
  text-decoration: none;
  transition: color .25s ease;
}

#servicos .service-content i{
  color: var(--svc-blue) !important;
  transition: color .25s ease;
}

#servicos .service-content p{
  color: rgba(11,42,91,.85);
  transition: color .25s ease;
}

/* HOVER: azul + texto branco */
#servicos .service-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

#servicos .service-item:hover .service-content{
  background: linear-gradient(135deg, var(--svc-blue), var(--svc-blue-2));
  color: #fff;
}

#servicos .service-item:hover .service-content .h4,
#servicos .service-item:hover .service-content a{
  color: #fff !important;
}

#servicos .service-item:hover .service-content i{
  color: #fff !important;
}

#servicos .service-item:hover .service-content p{
  color: rgba(255,255,255,.92);
}


.blog-carousel .blog-slide{
  padding: 8px; /* dá respiro pro box-shadow/rounded não grudar */
}

.blog-carousel .blog-item{
  height: 100%;
}

.blog-carousel .owl-stage{
  display: flex;
}

.blog-carousel .owl-item{
  display: flex;
}


/* O “bloco cinza” */
.bg-breadcrumb{
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../img/carousel-2.png") center/cover no-repeat;  /* <-- ATENÇÃO no caminho */
}


  /* Histórico - visual moderno sem depender de libs externas */
  #historico { isolation: isolate; }

  .history-blur{
    position:absolute; inset:auto;
    width:420px; height:420px; border-radius:50%;
    filter: blur(60px); opacity:.25; z-index:0;
    background: radial-gradient(circle, rgba(13,110,253,.45), rgba(13,110,253,0));
  }
  .history-blur-1{ top:-120px; left:-120px; }
  .history-blur-2{ bottom:-140px; right:-140px; background: radial-gradient(circle, rgba(25,135,84,.35), rgba(25,135,84,0)); }

  .history-dot{
    width:10px; height:10px; border-radius:50%;
    background: #0d6efd;
    box-shadow: 0 0 0 6px rgba(13,110,253,.12);
  }

  .history-mini-card{
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 16px 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    position: relative;
    z-index: 1;
  }

  .history-card{
    background:#fff;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(0,0,0,.07);
    overflow:hidden;
    position: relative;
    z-index: 1;
  }

  .history-accordion .accordion-button{
    background: #fff;
    border: 0;
    padding: 18px 20px;
  }
  .history-accordion .accordion-button:focus{
    box-shadow: none;
  }
  .history-accordion .accordion-body{
    padding: 0 20px 20px 20px;
    color: #343a40;
    line-height: 1.7;
  }
  .history-accordion .accordion-button:not(.collapsed){
    color: #0d6efd;
  }

  /* Fundo decorativo */
  #filiacao-telefones { isolation: isolate; }
  .ft-blur{
    position:absolute; width:420px; height:420px; border-radius:50%;
    filter: blur(60px); opacity:.22; z-index:0;
    background: radial-gradient(circle, rgba(13,110,253,.55), rgba(13,110,253,0));
  }
  .ft-blur-1{ top:-140px; left:-140px; }
  .ft-blur-2{
    bottom:-160px; right:-160px;
    background: radial-gradient(circle, rgba(25,135,84,.45), rgba(25,135,84,0));
  }

  /* Cards */
  .ft-card{
    background:#fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0,0,0,.08);
  }

  /* Timeline */
  .ft-timeline{
    position: relative;
    padding-left: 18px;
  }
  .ft-timeline:before{
    content:"";
    position:absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(13,110,253,.18);
    border-radius: 10px;
  }
  .ft-item{
    position: relative;
    display: flex;
    gap: 14px;
    padding: 10px 0;
  }
  .ft-bullet{
    width: 14px; height: 14px; border-radius: 50%;
    background:#0d6efd;
    box-shadow: 0 0 0 6px rgba(13,110,253,.12);
    flex: 0 0 14px;
    margin-left: -2px;
    margin-top: 3px;
  }
  .ft-content{ flex: 1; }
  .ft-highlight{
    background: rgba(13,110,253,.06);
    border-radius: 14px;
    padding: 14px 12px;
  }
  .ft-highlight .ft-bullet{
    background:#0b5ed7;
    box-shadow: 0 0 0 7px rgba(13,110,253,.18);
  }
  .ft-note{
    display:flex;
    align-items:center;
    gap:10px;
    color:#0b5ed7;
    font-size: .95rem;
  }
  .ft-chip{
    display:inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(13,110,253,.12);
    font-weight: 600;
    font-size: .85rem;
  }

  /* Tabela */
  .ft-table td{
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 12px 10px;
    vertical-align: middle;
  }
  .ft-table tr:first-child td{ border-top: 0; }
  .ft-row-highlight td{
    background: rgba(13,110,253,.06);
  }

  /* Responsivo */
  @media (max-width: 991.98px){
    .ft-highlight{ padding: 12px 10px; }
    .ft-table td:nth-child(3){ min-width: 220px; }
  }


  /* Visual moderno e limpo, sem brigar com o template */
  .privacy-wrap {
    position: relative;
  }

  .privacy-wrap .accordion-button {
    background: #fff;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,.08);
    padding: 1rem 1.25rem;
  }
  .privacy-wrap .accordion-button:not(.collapsed) {
    background: rgba(13,110,253,.06);
    color: #0d6efd;
    border-color: rgba(13,110,253,.25);
  }
  .privacy-wrap .accordion-item {
    background: transparent;
  }
  .privacy-wrap .accordion-body {
    border: 1px solid rgba(0,0,0,.08);
    border-top: 0;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background: #fff;
  }

  /* Sidebar mais “clean” */
  .privacy-wrap .list-group-item {
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-weight: 500;
  }
  .privacy-wrap .list-group-item:hover {
    background: rgba(13,110,253,.06);
  }

  /* Melhor leitura em telas menores */
  @media (max-width: 991.98px) {
    .privacy-wrap .sticky-lg-top { position: static !important; }
  }

  #privacySummary .list-group-item.active{
    background: rgba(13,110,253,.10);
    color: #0d6efd;
    border-left: 4px solid #0d6efd;
    font-weight: 700;
  }

  #privacySummary .list-group-item.active{
    background: rgba(13,110,253,.10);
    color: #0d6efd;
    border-left: 4px solid #0d6efd;
    font-weight: 700;
  }


  /* ===== FAQ Moderno ===== */
  .faq-modern{
    background:
      radial-gradient(900px 380px at 10% 0%, rgba(13,110,253,.12), transparent 60%),
      radial-gradient(900px 380px at 90% 0%, rgba(32,201,151,.10), transparent 60%),
      linear-gradient(180deg, rgba(248,249,250,1), rgba(248,249,250,1));
  }

 
/* ===== Toolbar centralizada: botões em cima, busca embaixo ===== */
.faq-toolbar{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Caixa dos botões centralizada */
.faq-tabs{
  width: 100%;
  max-width: 860px;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  backdrop-filter: blur(6px);
}

/* 3 botões iguais */
.faq-tab{
  flex: 1 1 0;
  min-width: 0;
  border-radius: 999px !important;
  padding: 12px 14px;
  border: 1px solid rgba(0,119,255,.28) !important;
  color: #0077FF;
  background: rgba(0,119,255,.06);
  transition: .2s ease;
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  white-space: nowrap;
}

.faq-tab:hover{
  transform: translateY(-1px);
  background: rgba(0,119,255,.12);
}

/* Botão ativo (cor sólida) */
.faq-tab.active{
  color: #fff;
  background: #071A43 !important;
  border-color: transparent !important;
  box-shadow: 0 10px 22px rgba(7,26,67,.25);
}

/* Mobile: empilha os botões */
@media (max-width: 576px){
  .faq-tabs{ flex-direction: column; }
  .faq-tab{ width: 100%; }
}

/* Busca alinhada com os botões */
.faq-search{
  width: 100%;
  max-width: 860px;
}

/* Só aumenta a largura do bloco de pesquisa */
.faq-search{
  width: 100% !important;
  max-width: none !important;
}

/* Mantém centralizado */
.faq-toolbar{
  align-items: center; /* só garantindo */
}


  .faq-search{
    padding: 12px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    backdrop-filter: blur(6px);
  }
  .faq-search .input-group-text{
    background: #fff;
    border-right: 0;
  }
  .faq-search .form-control{
    border-left: 0;
  }

  .faq-card{
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    backdrop-filter: blur(6px);
  }

  .accordion .accordion-item{
    border: 0;
    background: transparent;
  }

  .accordion .accordion-button{
    border-radius: 14px !important;
    margin-bottom: 10px;
    font-weight: 800;
    color: #1f2937;
    background: rgba(13,110,253,.06);
    border: 1px solid rgba(13,110,253,.10);
    box-shadow: 0 10px 22px rgba(0,0,0,.04);
  }

  .accordion .accordion-button:not(.collapsed){
    color: #fff;
    background: #0077FF;
    border-color: transparent;
  }

  .accordion .accordion-body{
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    margin-top: -10px;
    margin-bottom: 10px;
    box-shadow: 0 10px 22px rgba(0,0,0,.04);
    color: #334155;
    line-height: 1.6;
  }

  .faq-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: .85rem;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(32,201,151,.10);
    color: #0f766e;
    border: 1px solid rgba(32,201,151,.25);
    margin-bottom: 10px;
  }

  .faq-empty{
    margin-top: 10px;
    padding: 14px;
    border-radius: 16px;
    border: 1px dashed rgba(0,0,0,.15);
    background: rgba(248,249,250,.9);
  }
  .faq-empty-icon{
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: rgba(13,110,253,.10);
    color: #0d6efd;
  }

  mark{
    padding: 0 .18em;
    border-radius: .35em;
  }

  .compliance-wrap { border-color: rgba(0,0,0,.08) !important; }
  .compliance-head{
    background: linear-gradient(90deg, rgba(13,110,253,.10), rgba(13,110,253,0));
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .mini-item{
    display:flex; align-items:center; gap:8px;
    padding:8px 10px;
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    border-radius:12px;
    color:#6c757d;
    font-size:.95rem;
  }
  .mini-item i{ color:#0d6efd; }
  .feature-line{
    display:flex; gap:12px; align-items:flex-start;
  }
  .feature-line .ico{
    width:40px; height:40px;
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(13,110,253,.10);
    color:#0d6efd;
    flex: 0 0 auto;
  }
  .rounded-4{ border-radius: 18px; }

  /* FUNDO ESCURO DO BLOCO DE AVALIAÇÕES */
.testimonial-dark{
  background: #071B44; /* cor da sua 2ª imagem (ajuste se quiser) */
}

/* Texto da coluna esquerda (título e descrição) */
.testimonial-dark .text-primary{
  color: #63A5FF !important; /* azul claro pra destacar "Avaliações" */
}

.testimonial-dark h1,
.testimonial-dark h2,
.testimonial-dark h3,
.testimonial-dark h4,
.testimonial-dark h5,
.testimonial-dark h6{
  color: #FFFFFF !important;
}

.testimonial-dark p,
.testimonial-dark .text-muted{
  color: rgba(255,255,255,.75) !important;
}

/* Mantém os cards brancos (já estão), mas garante contraste */
.testimonial-dark .testimonial-item{
  background: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.08);
}

/* Texto dentro do card continua escuro (para ler no fundo branco) */
.testimonial-dark .testimonial-item p{
  color: #4b5563 !important;
}

/* Ícone de aspas dentro do card (se quiser mais suave) */
.testimonial-dark .testimonial-item i{
  color: #0b1f4a !important;
}

/* Bolinhas do Owl Carousel mais visíveis no fundo escuro */
.testimonial-dark .owl-dots .owl-dot span{
  background: rgba(255,255,255,.35) !important;
}

.testimonial-dark .owl-dots .owl-dot.active span{
  background: #63A5FF !important;
}

.denuncia-aviso-primary{
  background: var(--bs-primary);              /* mesma cor do btn-primary */
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 10px 22px rgba(13,110,253,.25);
}

.denuncia-aviso-primary i,
.denuncia-aviso-primary strong{
  color: #fff;
}

.denuncia-aviso-primary a{
  color: #fff;
  text-decoration: underline;
}

/* Botão Histórico (posição no canto direito do título) */
.btn-history-float{
  position: absolute;
  right: 0;
  top: 50px;              /* ajuste fino aqui se quiser mais alto/baixo */
  z-index: 2;
  border-radius: 999px;
  border: 0;
  padding: 10px 18px;
  box-shadow: 0 14px 30px rgba(13,110,253,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-history-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(13,110,253,.30);
  filter: brightness(1.03);
}

/* No mobile ele volta pro centro, abaixo do título */
@media (max-width: 992px){
  .btn-history-float{
    position: static;
    margin-top: 14px;
  }
}

/* divisória mais elegante */
.pedido-divider{
  margin: 34px 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,23,42,.12), transparent);
}

/* seção */
.pedido-section{
  padding: 2px 0;
}

/* subtítulo do bloco novo */
.pedido-subtitle{
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}

/* grid dos botões do app */
.pedido-apps{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* botões do app com visual mais “premium” */
.app-btn{
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(15,23,42,.10);
  border: 1px solid rgba(255,255,255,.12);
}

/* responsivo: empilha no mobile */
@media (max-width: 576px){
  .pedido-apps{ grid-template-columns: 1fr; }
}
