/* Adicione isso no início do seu CSS principal */
html, body {
    overflow-x: hidden; /* Remove scroll horizontal */
    max-width: 100%; /* Garante que não ultrapasse a largura */
    width: 100%;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.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 {
  color: var(--bs-white);
  color: #fff !important;
  border: none;
}

.btn.btn-primary:hover {
  transform: scale(1.05) !important;
  background-color: #e85d04 !important;
}

.btn.btn-primary-service {
  background: var(--bs-primary);
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary-service:hover {
  transform: scale(1.05);
  color: white !important;
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  padding-top: 11px;
  border: 0;
  transition: 0.5s;
  opacity: 1;
}

/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: #fff !important;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
  padding: 20px 0;
  color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #ff8800 !important;
}

.navbar-light .navbar-brand img {
  max-height: 80px;
  width: 100%;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: auto;
}

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

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    /* padding: 20px 0; */
    margin-left: 0;
    color: #131313 !important;
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 60px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, .1); */
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -7px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: -7px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    width: 2px;
    height: 12px;
  }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 60px;
  background: #ff8800;
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 50px !important;
  left: 30px;
  margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
  bottom: 50px !important;
  left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  color: #fff;
  background-color: #e85d04;
}

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding-top: 120px;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
  .header-carousel .owl-nav .owl-prev {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
  }

  .header-carousel .owl-nav .owl-next {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}

.header-carousel .header-carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes image-zoom {
  0% {
    height: 100%;
    opacity: 0.9;
  }

  25% {
    height: 110%;
    opacity: 0.9;
  }

  50% {
    height: 115%;
    opacity: 1;
  }

  75% {
    height: 110%;
    opacity: 0.9;
  }

  100% {
    height: 100%;
    opacity: 0.9;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .bg-breadcrumb {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 991px) {
  .bg-breadcrumb {
    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 ***/

/*** Service Start ***/
.service .service-item {
  background: var(--bs-light);
  border-radius: 10px;
  transition: 0.5s;
}

.service .service-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.service .service-item .service-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.2);
}
/*** Service End ***/

/*** pilaress Start ***/
.pilares .pilares-item {
  text-align: center;
  border-radius: 10px;
  background: #013a63;
  border: 1px solid transparent;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pilares .pilares-item .hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  border-radius: 10px;
}

.pilares .pilares-item .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  border-radius: 10px;
}

.pilares .pilares-item:hover .hover-bg,
.pilares .pilares-item:hover .hover-overlay {
  opacity: 1;
}

.pilares .pilares-item p,
.pilares .pilares-item h4,
.pilares .pilares-item h5,
.pilares .pilares-item h6 {
  color: white;
  position: relative;
  z-index: 3;
}

.pilares .pilares-item .pilares-icon {
  background: rgba(255, 255, 255, 0.099);
  border-radius: 10px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.pilares .pilares-item .btn {
  position: relative;
  z-index: 3;
}
/*** pilaress End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
  width: 100%;
  border-radius: 10px;
  display: flex;
  background: var(--bs-white);
  transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
  transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
  color: var(--bs-white);
}
/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  background: var(--bs-white);
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.blog .blog-item a {
  transition: 0.5s;
}

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

.blog .blog-item .blog-img {
  border-radius: 10px;
  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-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 208, 132, 0.1);
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
  opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
  color: var(--bs-white);
  background: var(--bs-primary);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
  color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
  margin-top: 58px;
}

.blog .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
  background: var(--bs-dark);
  color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
  background: var(--bs-dark);
  color: var(--bs-primary);
}
/*** Blog End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  color: var(--bs-secondary);
}

.faq-section
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button.collapsed {
  color: var(--bs-dark);
}
/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  padding: 0 25px 25px 25px;
  border-radius: 10px;
  transition: 0.5s;
}

.team .team-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-light);
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item:hover::before {
  height: 0;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item:hover::after {
  height: 100%;
  background: var(--bs-primary);
}

.team .team-item .team-img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: relative;
  margin-top: 50%;
  transform: translateY(-50%);
  margin-bottom: -50%;
  display: flex;
  justify-content: center;
  border: 4px solid var(--bs-primary);
  border-style: dotted;
  padding: 4px;
  background: var(--bs-white);
  transition: 0.5s;
}

.team .team-item:hover .team-img {
  border: 4px solid var(--bs-white);
  border-style: dotted;
  background: 0;
}

.team .team-item .team-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: 0.5s;
}

.team .team-item .team-title {
  padding: 25px 0 25px 0;
  text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
  transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
  color: var(--bs-white);
}

.team .team-item .team-icon {
  display: flex;
  justify-content: center;
}

.team .team-item .team-icon a {
  transition: 0.5s;
}

.team .team-item:hover .team-icon a {
  color: var(--bs-dark);
  background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
  color: var(--bs-primary);
  background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
  position: relative;
  margin-bottom: 30px;
  padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-light);
  z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
  display: flex;
  justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 5px solid var(--bs-light);
  border-style: double;
  background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
  padding: 25px 0;
  text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
  display: flex;
  justify-content: space-between;
}

.testimonial .testimonial-item .testimonial-quote-left {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 20px;
  left: 25px;
  border-radius: 60px;
  color: var(--bs-primary);
  background: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-item .testimonial-quote-right {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -30px;
  right: 25px;
  margin-top: -5px;
  border-radius: 60px;
  color: var(--bs-primary);
  background: var(--bs-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
  margin-top: 58px;
  margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  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: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  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;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-secondary);
  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.active span::after {
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
  background: #013a63;
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.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 {
  color: var(--bs-primary);
}

.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);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  background: #013a63;
}
/*** copyright end ***/

.list-box {
  overflow: hidden;
  letter-spacing: 0.5px;
}

.list-box .content h3 {
  display: block;
  line-height: 22px;
  font-size: 18px;
  margin-bottom: 4px;
}

.list-box .content p {
  margin-bottom: 0px;
  opacity: 0.75;
}

.list-box .list-icon i {
  display: block;
  font-size: 24px;
  margin-right: 15px;
  color: #ff8800;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 60px;
  border: 1px #fff solid;
  border-radius: 999px;
}

.list-box .list-icon i:hover {
  transition: 1s;
  transform: rotate(360deg);
}
.text-justify {
  text-align: justify;
}
.card-contact {
  transition: 0.5s;
}
.card-contact:hover {
  transition: 0.5s;
  box-shadow: 0 0 10px 0 #ff8800;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .button-mobile-about {
    display: none;
  }
  .mobile-img img {
    max-width: 300px !important;
  }
}

@media screen and (max-width: 430px) {
  .mobile-button {
    display: flex;
    flex-direction: column;
  }
  .mobile-button a {
    margin: 5px;
  }
}

.header-carousel .owl-nav .owl-prev {
  bottom: 10px;
}
.header-carousel .owl-nav .owl-next {
  bottom: 10px;
}
.titulo_secao_pilares {
  font-size: 22px !important;
  font-weight: bold;
}
.text-paragrafo {
  color: #222222;
  font-weight: 100;
  font-size: 15px;
}
.text-beneficios {
  font-size: 12px;
}

/* Efeito hover nos itens da lista */
.list-unstyled li {
  transition: transform 0.3s ease;
}

.list-unstyled li:hover {
  transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 768px) {
  .display-5 {
    font-size: 1.5rem !important;
  }

  .lead {
    font-size: 1.1rem;
  }
  .mobile {
    display: flex;
    justify-content: center;
  }
}
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 1.1rem;
}
li span {
  font-size: 16px;
}

/* Efeito hover nos itens da lista */
.list-unstyled li {
  transition: transform 0.3s ease;
  padding: 8px 0;
}

.list-unstyled li:hover {
  transform: translateX(5px);
}

/* Ícone customizado para fibra */
.fa-fiber:before {
  content: "⊡";
  font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .ps-lg-5 {
    padding-left: 0 !important;
  }
}
feature-icon-large {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(1, 58, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-large i {
  font-size: 1.5rem;
}

/* Efeitos hover */
.feature-icon-large {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-icon-large:hover {
  transform: scale(1.1);
  background-color: rgba(255, 136, 0, 0.1);
}

/* Cards de diferenciais */
.bg-white.rounded {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-white.rounded:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.2rem;
  }

  .feature-icon-large {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .feature-icon-large i {
    font-size: 1.2rem;
  }
}
.text-muted {
  color: gray;
}
.clientes-carousel .cliente-item {
  padding: 20px 10px;
}

.cliente-logo-wrapper {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #f8f9fa;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cliente-logo-wrapper:hover {
  border-color: #ff8800;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 136, 0, 0.15);
}

.cliente-logo-wrapper img {
  max-height: 80px;
  width: auto;
  /* filter: grayscale(100%);
    opacity: 0.7; */
  transition: all 0.3s ease;
}

.cliente-logo-wrapper:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Configurações do Owl Carousel */
.clientes-carousel.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.clientes-carousel.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.clientes-carousel.owl-carousel .owl-nav {
  margin-top: 30px;
}

.clientes-carousel.owl-carousel .owl-nav button {
  background: #013a63 !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.clientes-carousel.owl-carousel .owl-nav button:hover {
  background: #ff8800 !important;
  transform: scale(1.1);
}

.clientes-carousel.owl-carousel .owl-dots {
  margin-top: 20px;
}

.clientes-carousel.owl-carousel .owl-dot span {
  background: #ddd;
  transition: all 0.3s ease;
}

.clientes-carousel.owl-carousel .owl-dot.active span {
  background: #ff8800;
  width: 25px;
}

/* Responsividade */
@media (max-width: 768px) {
  .cliente-logo-wrapper {
    height: 100px;
    padding: 15px;
  }

  .cliente-logo-wrapper img {
    max-height: 60px;
  }

  .display-6 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .cliente-logo-wrapper {
    height: 80px;
    padding: 10px;
  }

  .cliente-logo-wrapper img {
    max-height: 50px;
  }
}

.owl-next,
.owl-prev {
  display: none;
}
.contact-card {
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(1, 58, 99, 0.1);
  border-color: #ff8800;
}

.brand-logo-wrapper {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 15px;
  border: 2px solid #e9ecef;
}

.brand-info a {
  transition: color 0.3s ease;
}

.brand-info a:hover {
  color: #ff8800 !important;
}

.contact-info a {
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ff8800 !important;
}

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 136, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .brand-logo-wrapper {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .contact-card {
    padding: 15px;
  }

  .btn {
    margin-bottom: 10px;
  }
}
.footer {
  background-color: #013a63 !important;
}

.brand-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.social-links a,
.social-links-footer a {
  transition: all 0.3s ease;
}

.social-links a:hover,
.social-links-footer a:hover {
  transform: scale(1.2);
}

.contact-info {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info:last-child {
  border-bottom: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease;
  padding: 4px 0 !important;
}

.nav-link:hover {
  color: #ff8800 !important;
}

.btn-sm-square {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsividade */
@media (max-width: 768px) {
  .brand-card {
    padding: 15px 10px;
  }

  .contact-info {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .footer-item {
    margin-bottom: 30px;
  }

  .brand-card {
    margin-bottom: 10px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #fff !important;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-container {
  text-align: center;
}

.loading-text {
  font-size: 14px;
  color: var(--text-color, #171717) !important;
  text-align: center;
}

.dots-container {
  position: relative;
  height: 13px;
  width: 65px;
  margin: 15px auto 0;
}

/* Dots */
#preloader .dot {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  background-color: var(--accent-color, #013a63);
  border-radius: 50%;
}

/* Correção das animações */
#preloader .dot:nth-child(1) {
  left: 0px;
  animation: animate-preloader-1 0.6s infinite;
}

#preloader .dot:nth-child(2) {
  left: 0px;
  animation: animate-preloader-2 0.6s infinite;
}

#preloader .dot:nth-child(3) {
  left: 24px;
  animation: animate-preloader-2 0.6s infinite;
}

#preloader .dot:nth-child(4) {
  left: 48px;
  animation: animate-preloader-3 0.6s infinite;
}

/* Keyframes */
@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

/* Ocultar preloader quando o body ganhar a classe .loaded */
.loaded #preloader {
  opacity: 0;
  visibility: hidden;
}

/* Estilos do Banner de Cookies */

/* Banner Principal */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #013a63;
  color: #ffffff;
  padding: 20px;
  z-index: 999999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 3px solid #ff8800;
  font-family: "Inter", sans-serif;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.cookie-banner.show {
  transform: translateY(0);
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-title {
  color: #ff8800;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 0;
}

.cookie-description a {
  color: #ff8800;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.cookie-btn-accept {
  background: #ff8800;
  color: #171717;
}

.cookie-btn-accept:hover {
  background: #e6a500;
  transform: translateY(-2px);
}

.cookie-btn-settings {
  background: transparent;
  color: #ffffff;
  border: 2px solid #6c757d;
}

.cookie-btn-settings:hover {
  border-color: #ff8800;
  color: #ff8800;
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #dc3545;
  color: #dc3545;
}

.cookie-btn-reject:hover {
  background: #dc3545;
  color: #ffffff;
}

/* Modal de Configurações */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background: #042e49;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid #7d7d7d;
}

.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #333;
  color: #ff8800;
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-intro {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* Categorias de Cookies */
.cookie-category {
  background: #021e32;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.cookie-category.active {
  border-left-color: #ff8800;
  background: #014b80;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.cookie-category-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.cookie-category-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  transition: 0.4s;
  border-radius: 34px;
}

.cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-category-toggle input:checked + .cookie-category-slider {
  background-color: #ff8800;
}

.cookie-category-toggle input:checked + .cookie-category-slider:before {
  transform: translateX(24px);
}

.cookie-category-description {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.cookie-category-list {
  background: #1a1a1a;
  border-radius: 6px;
  padding: 15px;
  margin-top: 10px;
}

.cookie-category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-category-list li {
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
}

.cookie-category-list li:last-child {
  border-bottom: none;
}

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-btn-save {
  background: #ff8800;
  color: #171717;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-save:hover {
  background: #e6a500;
  transform: translateY(-2px);
}

.cookie-btn-cancel {
  background: transparent;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  border: 2px solid #6c757d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-cancel:hover {
  border-color: #ff8800;
  color: #ff8800;
}

/* Botão Flutuante */
.cookie-float-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #ff8800;
  color: #171717;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999998;
  box-shadow: 0 4px 15px rgba(255, 183, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  font-size: 1.2rem;
}

.cookie-float-btn.show {
  display: flex;
}

.cookie-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #171717;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}

.logo-container {
  margin-bottom: 30px;
}

.dots-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.dot {
  width: 15px;
  height: 15px;
  background: #ff8800;
  border-radius: 50%;
  animation: dotPulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}
.dot:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

.loading-text {
  color: #ff8800;
  font-size: 1rem;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

/* Responsividade */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

  .cookie-modal {
    padding: 10px;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-float-btn {
    bottom: 80px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 15px;
  }

  .cookie-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 15px;
  }
}

/* Oliver Group Rede e Tecnologia Section Styles */
.oliver-redes-tecnologia-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.oliver-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.oliver-redes-header {
  text-align: center;
  margin-bottom: 60px;
}

.oliver-redes-title {
  color: #013a63;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.oliver-redes-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.oliver-redes-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.oliver-redes-category {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.oliver-redes-category:hover {
  border-color: #ff8800;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 136, 0, 0.1);
}

.oliver-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.oliver-category-title {
  color: #013a63;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.oliver-category-badge {
  background: linear-gradient(135deg, #ff8800 0%, #ffaa44 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.oliver-redes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.oliver-list-full {
  grid-column: 1 / -1;
}

.oliver-service-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.oliver-service-item:hover {
  background: rgba(255, 136, 0, 0.05);
  transform: translateX(5px);
}

.oliver-service-icon {
  width: 50px;
  height: 50px;
  background: #013a63;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  color: white;
  font-size: 1.2rem;
}

.oliver-service-content {
  flex: 1;
}

.oliver-service-title {
  color: #013a63;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.oliver-service-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.oliver-redes-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e9ecef;
  text-align: center;
}

.oliver-redes-contact {
  margin-bottom: 30px;
}

.oliver-website-link {
  color: #013a63;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.oliver-website-link:hover {
  color: #ff8800;
  transform: scale(1.05);
}

.oliver-redes-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.oliver-cta-button {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
}

.oliver-cta-button {
  background: #013a63;
  color: white;
}

.oliver-cta-button:hover {
  background: #00274d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(1, 58, 99, 0.2);
}

.oliver-cta-whatsapp {
  background: #ff8800;
}

.oliver-cta-whatsapp:hover {
  background: #e67a00;
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
  .oliver-redes-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .oliver-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .oliver-category-badge {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .oliver-redes-tecnologia-section {
    padding: 60px 0;
  }

  .oliver-redes-title {
    font-size: 2.2rem;
  }

  .oliver-redes-category {
    padding: 30px;
  }

  .oliver-category-title {
    font-size: 1.5rem;
  }

  .oliver-service-item {
    flex-direction: column;
    text-align: center;
  }

  .oliver-service-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .oliver-redes-cta {
    flex-direction: column;
    align-items: center;
  }

  .oliver-cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .oliver-redes-title {
    font-size: 1.8rem;
  }

  .oliver-redes-subtitle {
    font-size: 1rem;
  }

  .oliver-redes-category {
    padding: 20px;
  }
}

/* Oliver Group CFTV Simple Section Styles */
.oliver-cftv-simple-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.oliver-simple-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.oliver-simple-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.oliver-simple-content {
  padding-right: 20px;
}

.oliver-simple-title {
  color: #013a63;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.oliver-simple-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.oliver-simple-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.oliver-simple-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  border-left: 4px solid #ff8800;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.oliver-simple-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.oliver-simple-icon {
  color: #ff8800;
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.oliver-simple-item span {
  color: #013a63;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.oliver-simple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: #ff8800;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 12px;
}

.oliver-simple-button:hover {
  background: #e67a00;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
}

.oliver-simple-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.oliver-img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}

.oliver-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(1, 58, 99, 0.9), transparent);
  padding: 40px;
  color: white;
}

.oliver-overlay-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.oliver-overlay-text {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  color: #fff;
}

/* Responsividade */
@media (max-width: 992px) {
  .oliver-simple-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oliver-simple-content {
    padding-right: 0;
    order: 2;
  }

  .oliver-simple-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .oliver-cftv-simple-section {
    padding: 60px 0;
  }

  .oliver-simple-title {
    font-size: 2rem;
  }

  .oliver-simple-subtitle {
    font-size: 1.1rem;
  }

  .oliver-simple-item {
    padding: 12px;
  }

  .oliver-simple-item span {
    font-size: 0.95rem;
  }

  .oliver-img-fluid {
    min-height: 400px;
  }

  .oliver-image-overlay {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .oliver-simple-title {
    font-size: 1.8rem;
  }

  .oliver-simple-button {
    width: 100%;
    text-align: center;
  }

  .oliver-img-fluid {
    min-height: 300px;
  }
}
/* Oliver Group Controle de Acesso Section Styles */
.oliver-acesso-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.oliver-acesso-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.oliver-acesso-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.oliver-acesso-content {
    padding-top: 20px;
}

.oliver-acesso-title {
    color: #013a63;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.oliver-acesso-highlight {
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff8800;
}

.oliver-acesso-highlight-title {
    color: #013a63;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.oliver-acesso-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.oliver-acesso-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.oliver-acesso-item:hover {
    transform: translateY(-3px);
    border-color: #ff8800;
    box-shadow: 0 10px 30px rgba(255, 136, 0, 0.15);
}

.oliver-acesso-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #013a63 0%, #00274d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.oliver-acesso-text {
    flex: 1;
}

.oliver-acesso-item-title {
    color: #013a63;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.oliver-acesso-technologies,
.oliver-acesso-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.oliver-tech-tag,
.oliver-location-tag {
    background: rgba(255, 136, 0, 0.1);
    color: #013a63;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 136, 0, 0.3);
    transition: all 0.3s ease;
}

.oliver-tech-tag:hover,
.oliver-location-tag:hover {
    background: rgba(255, 136, 0, 0.2);
    transform: translateY(-2px);
}

.oliver-acesso-item-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 10px 0 0 0;
}

.oliver-acesso-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.oliver-acesso-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    background: #ff8800;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 12px;
    border: 2px solid transparent;
}

.oliver-acesso-btn:hover {
    background: #e67a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
}

.oliver-acesso-btn-secondary {
    background: transparent;
    color: #013a63;
    border: 2px solid #013a63;
}

.oliver-acesso-btn-secondary:hover {
    background: #013a63;
    color: white;
    box-shadow: 0 10px 20px rgba(1, 58, 99, 0.2);
}

/* Imagem */
.oliver-acesso-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 600px;
}

.oliver-acesso-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oliver-acesso-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.699);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.oliver-overlay-content {
    text-align: center;
    color: white;
    max-width: 400px;
}

.oliver-overlay-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.oliver-overlay-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

.oliver-overlay-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.oliver-overlay-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.oliver-overlay-features i {
    color: #ff8800;
}

/* Responsividade */
@media (max-width: 992px) {
    .oliver-acesso-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .oliver-acesso-image {
        min-height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .oliver-acesso-section {
        padding: 60px 0;
    }
    
    .oliver-acesso-title {
        font-size: 1.8rem;
    }
    
    .oliver-acesso-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .oliver-acesso-icon {
        margin: 0 auto 15px;
    }
    
    .oliver-acesso-technologies,
    .oliver-acesso-locations {
        justify-content: center;
    }
    
    .oliver-acesso-cta {
        flex-direction: column;
    }
    
    .oliver-acesso-btn {
        width: 100%;
        text-align: center;
    }
    
    .oliver-acesso-image {
        min-height: 350px;
    }
    
    .oliver-overlay-content {
        padding: 20px;
    }
    
    .oliver-overlay-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .oliver-acesso-title {
        font-size: 1.5rem;
    }
    
    .oliver-acesso-highlight-title {
        font-size: 1.2rem;
    }
    
    .oliver-acesso-item-title {
        font-size: 1rem;
    }
    
    .oliver-tech-tag,
    .oliver-location-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
/* Oliver Group Nossa História Section Styles */
.oliver-historia-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.oliver-historia-container {
  margin: 0 auto;
  padding: 0 20px;
}

.oliver-historia-header {
  text-align: center;
  margin-bottom: 60px;
}

.oliver-historia-title {
  color: #013a63;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.oliver-historia-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #ff8800;
  border-radius: 2px;
}

.oliver-historia-subtitle {
  color: #666;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 40px;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Linha do Tempo */
.oliver-timeline {
  position: relative;
  padding: 40px 0;
  margin-bottom: 60px;
}

.oliver-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #ff8800, #013a63);
  transform: translateX(-50%);
  border-radius: 2px;
}

.oliver-timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}

.oliver-timeline-item:nth-child(odd) {
  flex-direction: row;
}

.oliver-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.oliver-timeline-year {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.oliver-timeline-year span {
  background: #013a63;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(1, 58, 99, 0.3);
}

.oliver-timeline-current .oliver-timeline-year span {
  background: #ff8800;
  font-size: 1.2rem;
}

.oliver-timeline-content {
  flex: 1;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 30px;
  max-width: 500px;
}

.oliver-timeline-content:hover {
  transform: translateY(-5px);
  border-color: #ff8800;
  box-shadow: 0 15px 40px rgba(255, 136, 0, 0.15);
}

.oliver-timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #ff8800;
  border: 4px solid white;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px #ff8800;
}

.oliver-timeline-item:nth-child(odd) .oliver-timeline-content::before {
  right: -40px;
}

.oliver-timeline-item:nth-child(even) .oliver-timeline-content::before {
  left: -40px;
}

.oliver-timeline-current .oliver-timeline-content::before {
  background: #013a63;
  border-color: white;
  box-shadow: 0 0 0 3px #013a63;
  width: 25px;
  height: 25px;
}

.oliver-timeline-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff8800 0%, #ffaa44 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.8rem;
}

.oliver-timeline-current .oliver-timeline-icon {
  background: linear-gradient(135deg, #013a63 0%, #00274d 100%);
}

.oliver-timeline-title {
  color: #013a63;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.oliver-timeline-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.oliver-company-tag {
  display: inline-block;
  background: rgba(255, 136, 0, 0.1);
  color: #ff8800;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 136, 0, 0.3);
}

.oliver-company-tag-current {
  background: rgba(1, 58, 99, 0.1);
  color: #013a63;
  border-color: rgba(1, 58, 99, 0.3);
}

/* Texto Completo */
.oliver-historia-full {
  margin: 60px 0;
}

.oliver-historia-intro {
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  border-left: 5px solid #ff8800;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.oliver-intro-title {
  color: #013a63;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.oliver-intro-text {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.oliver-historia-marcas {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.oliver-marcas-title {
  color: #013a63;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.oliver-marcas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.oliver-marca-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.oliver-marca-item:hover {
  transform: translateY(-5px);
  border-color: #ff8800;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.oliver-marca-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #013a63 0%, #00274d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.oliver-marca-info h5 {
  color: #013a63;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.oliver-marca-info span {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.oliver-historia-final {
  background: linear-gradient(135deg, #013a63 0%, #00274d 100%);
  padding: 40px;
  border-radius: 15px;
  color: white;
}

.oliver-final-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* CTA */
.oliver-historia-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.oliver-historia-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: #ff8800;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  gap: 12px;
}

.oliver-historia-btn:hover {
  background: #e67a00;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.3);
}

.oliver-historia-btn-outline {
  background: transparent;
  color: #013a63;
  border: 2px solid #013a63;
}

.oliver-historia-btn-outline:hover {
  background: #013a63;
  color: white;
  box-shadow: 0 10px 20px rgba(1, 58, 99, 0.2);
}

/* Responsividade */
@media (max-width: 992px) {
  .oliver-timeline::before {
    left: 30px;
  }

  .oliver-timeline-item {
    flex-direction: row !important;
    margin-left: 60px;
    margin-right: 0;
  }

  .oliver-timeline-year {
    position: absolute;
    left: -90px;
    top: 0;
    justify-content: flex-end;
    width: 100px;
  }

  .oliver-timeline-content {
    margin: 0;
    max-width: 100%;
  }

  .oliver-timeline-content::before {
    left: -40px !important;
    right: auto !important;
  }

  .oliver-marcas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .oliver-historia-section {
    padding: 60px 0;
  }

  .oliver-historia-title {
    font-size: 2.2rem;
  }

  .oliver-historia-subtitle {
    font-size: 1.1rem;
  }

  .oliver-timeline-content {
    padding: 25px;
  }

  .oliver-marcas-grid {
    grid-template-columns: 1fr;
  }

  .oliver-marca-item {
    padding: 20px;
  }

  .oliver-historia-cta {
    flex-direction: column;
    align-items: center;
  }

  .oliver-historia-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .oliver-historia-title {
    font-size: 1.8rem;
  }

  .oliver-timeline-item {
    margin-left: 45px;
  }

  .oliver-timeline-year {
    left: -75px;
  }

  .oliver-timeline-year span {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .oliver-intro-text,
  .oliver-final-text {
    font-size: 1rem;
  }
}