 :root {
     --AzulGlobal: #051F38;
     --AmareloGlobal: #FCC10C;
     --AmareloDestaque: #FDE006;
     --bgWebsite: #EBEBF3;
 }

 body {
     font-family: "Rubik", sans-serif;
     margin: 0;
     padding: 0;
     background: var(--bgWebsite);
 }


 /* Estilo do Background Amarelo atrás do Header (conforme imagem) */
 .header-global {
     margin: 0 0 -84px 0;
     z-index: 10;
     position: relative;
 }

 .header-white-area {
    border-radius: 0 0 13px 13px;
  	padding: 15px !important;
 }

 .search-form {
     background: #EBEBF3;
     padding: 5px;
     border-radius: 10px;
     margin: 0 10px 0 0;
 }


 /* Estilo do campo de busca */
 @media (max-width: 991.98px) {

     /* Ajuste para o campo de busca no mobile */
     .search-form {
         width: 100%;
         margin-top: 10px;
         margin-right: 0 !important;
         order: 1;
         /* Coloca o campo de busca abaixo do menu no mobile */
     }

     .search-form .input-group {
         max-width: 100%;
     }

     .social-icons {
         order: 2;
         /* Coloca os ícones sociais abaixo do campo de busca no mobile */
     }
 }

 .social-icons {
     gap: 5px;
 }

 .search-form input {
     background-color: #EBEBF3;
     border: none;
 }

 /* Remover outline padrão do input de busca */
 .search-form input:focus {
     box-shadow: none !important;
     outline: none !important;
 }

 /* Botões Amarelos das Redes Sociais */
 .social-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 44px;
     height: 44px;
     background-color: #fbbc04;
     color: #0b2240 !important;
     border-radius: 10px;
     font-size: 23px;
     transition: transform 0.2s ease;
     text-decoration: none !important;
 }

 .social-btn:hover {
     transform: scale(1.05);
     text-decoration: none;
 }

 /* Estilização do Menu Sanduíche (Mobile) */
 .navbar-toggler {
     border: none !important;
     outline: none !important;
     color: var(--AzulGlobal);
     /* Aplica o azul global */
     font-size: 24px;
     padding: 0;
 }

 /* Estilos do Slider Home */
 .sliderHome {
     background: url(../images/bgEngrenagem.webp) no-repeat top right var(--AmareloGlobal);
     background-size: contain;
     position: relative;
     overflow: hidden;
     padding: 90px 0 0 0;
 }

 .slider-item {
     padding: 80px 0;
 }

 .slider-title {
     color: var(--AzulGlobal);
     font-size: 70px;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 15px;
 }

 .slider-subtitle {
     color: var(--AzulGlobal);
     font-size: 1.4rem;
     margin-bottom: 35px;
 }


 .slider-cta {
     background: #051F38;
     background: linear-gradient(90deg, rgba(5, 31, 56, 1) 0%, rgba(0, 55, 108, 1) 100%);
     color: var(--AmareloDestaque);
     text-decoration: none;
     padding: 12px 60px;
     border-radius: 10px;
     transition: all 0.5s;
     margin: 30px 0 0 6px;
     float: left;
 }

 .slider-cta:hover {
     background: #fff;
     color: #051F38;
     transition: all 0.5s;
 }

 .slider-extra-img {
     max-width: 250px;
     height: auto;
 }

 .featured-slider-img {
     max-height: 500px;
     width: auto !important;
     margin: 0 auto;
 }

 @media (max-width: 767.98px) {
     .slider-item {
         padding: 50px 0;
         text-align: center;
     }

     .slider-title {
         font-size: 2.2rem;
     }

     .slider-extra-img {
         margin: 0 auto;
     }

     .col-slider-image {
         margin-top: 40px;
     }
 }


 /*************************************MENU PRINCIPAL**********************************/

 /* ================================================
   Menu Principal — Global Locações
   ================================================ */

 /* Container do menu */
 .menuPrincipal .principal ul.menu {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 /* Itens de nível 1 */
 .menuPrincipal .principal ul.menu>li {
     position: relative;
 }

 /* Links de nível 1 */
 .menuPrincipal .principal ul.menu>li>a {
     display: block;
     padding: 10px 13px;
     color: var(--AzulGlobal);
     font-weight: 600;
     font-size: 17px;
     text-decoration: none;
     white-space: nowrap;
     transition: color 0.2s;
 }

 .menuPrincipal .principal ul.menu>li>a:hover,
 .menuPrincipal .principal ul.menu>li.current-menu-item>a,
 .menuPrincipal .principal ul.menu>li.current-menu-ancestor>a {
     color: var(--AmareloGlobal);
 }

 .menuPrincipal .sub-menu .current-menu-item a {
     color: var(--AmareloGlobal) !important;
 }

 /* Seta indicadora de submenu */
 .menuPrincipal .principal ul.menu>li.menu-item-has-children>a::after {
     content: '';
     display: inline-block;
     width: 0;
     height: 0;
     margin-left: 6px;
     vertical-align: middle;
     border-left: 4px solid transparent;
     border-right: 4px solid transparent;
     border-top: 5px solid currentColor;
     transition: transform 0.2s;
 }

 .menuPrincipal .principal ul.menu>li.menu-item-has-children:hover>a::after {
     transform: rotate(180deg);
 }

 /* ---- DROPDOWN ---- */
 .menuPrincipal .principal ul.menu .sub-menu {
     display: none;
     position: absolute;
     top: calc(91% + 4px);
     left: 0;
     min-width: 220px;
     background: #fff;
     /* border-top: 3px solid var(--AmareloGlobal); */
     border-radius: 8px;
     box-shadow: 0 8px 24px rgba(5, 31, 56, 0.12);
     list-style: none;
     margin: 0;
     padding: 15px 15px;
     z-index: 9999;
     opacity: 0;
     transform: translateY(8px);
     transition: opacity 0.2s ease, transform 0.2s ease;
 }

 /* Mostra o dropdown no hover */
 .menuPrincipal .principal ul.menu>li:hover>.sub-menu {
     display: block;
     opacity: 1;
     transform: translateY(0);
 }

 /* Links do dropdown */
 .menuPrincipal .principal ul.menu .sub-menu li a {
     display: block;
     padding: 10px 20px;
     color: var(--AzulGlobal);
     font-size: 14px;
     font-weight: 500;
     text-decoration: none;
     transition: background 0.15s, color 0.15s;
     white-space: nowrap;
     border-radius: 5px;
 }

 .menuPrincipal .principal ul.menu .sub-menu li a:hover {
     background: var(--AmareloGlobal);
     color: var(--AzulGlobal);
     border-radius: 5px;
 }

 /* Separador entre itens do dropdown */
 .menuPrincipal .principal ul.menu .sub-menu li+li {
     border-top: 1px solid #f0f0f0;
 }

 /* ================================================
   MOBILE
   ================================================ */
 @media (max-width: 991px) {

     .menuPrincipal .principal ul.menu {
         flex-direction: column;
         align-items: flex-start;
         gap: 0;
         width: 100%;
     }

     .menuPrincipal .principal ul.menu>li {
         width: 100%;
         border-bottom: 1px solid rgba(5, 31, 56, 0.08);
     }

     .menuPrincipal .principal ul.menu>li>a {
         padding: 14px 20px;
         font-size: 16px;
     }

     /* Seta mobile aponta para baixo por padrão */
     .menuPrincipal .principal ul.menu>li.menu-item-has-children>a::after {
         float: right;
         margin-top: 6px;
     }

     /* Dropdown mobile: posição relativa, largura total */
     .menuPrincipal .principal ul.menu .sub-menu {
         position: static;
         box-shadow: none;
         border-top: none;
         border-left: 3px solid var(--AmareloGlobal);
         border-radius: 0;
         margin-left: 16px;
         min-width: unset;
         width: calc(100% - 16px);
         padding: 4px 0;
         opacity: 1;
         transform: none;
         transition: none;
     }

     .menuPrincipal .principal ul.menu .sub-menu li a {
         padding: 10px 16px;
         font-size: 14px;
     }
 }

 /*************************************************************************************/

 /* Personalização dos Dots (Paginação) do Owl Carousel */
 .home-slider.owl-theme .owl-dots {
     position: absolute;
     bottom: 30px;
     /* Posiciona os dots sobre o slider */
     width: 100%;
     text-align: center;
     margin-top: 0;
     line-height: 1;
     z-index: 10;
     /* Garante que fiquem acima das imagens do slider */
 }

 .home-slider.owl-theme .owl-dots .owl-dot {
     display: inline-block;
     /* Alinha os pontos lado a lado */
     background: none;
     border: none;
     padding: 0;
     outline: none;
 }

 .home-slider.owl-theme .owl-dots .owl-dot span {
     width: 18px;
     height: 18px;
     background: #fff !important;
     border: none;
     margin: 5px 5px;
     transition: all 0.3s ease;
     display: block;
     border-radius: 15px;
 }

 .home-slider.owl-theme .owl-dots .owl-dot.active span,
 .home-slider.owl-theme .owl-dots .owl-dot:hover span {
     background: #051F38 !important;
     /* Ativo azul global */
     transform: none;
     width: 50px;
     border-radius: 15px;
 }


 /********* BANNER DESTAQUE HOME ****************/

 .bannerDestaqueHome {
     position: relative;
     min-height: 380px;
     border-radius: 16px;
     overflow: hidden;
     background-color: #0d2a5e;
     /* fallback sem imagem */
     background-size: cover;
     background-position: center right;
     background-repeat: no-repeat;
     display: flex;
     align-items: center;
 }

 /* Gradiente escuro à esquerda para legibilidade do texto */
 .bDH__overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
 }

 .bannerDestaqueHome .row {
     position: relative;
     z-index: 2;
     width: 100%;
 }

 .bDH__content {
     padding: 48px 0px 48px 70px;
     display: flex;
     flex-direction: column;
 }

 .bDH__titulo {
     font-size: 50px;
     font-weight: 800;
     color: #f5c518;
     /* amarelo igual ao print */
     line-height: 1.15;
     margin: 0;
     text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
 }

 .bDH__content p {
     color: #fff;
     font-size: 18px;
 }



 .bDH__cta {
     display: block;
     width: fit-content;
     padding: 10px 36px;
     background: #FCC10C;
     background: linear-gradient(90deg, rgba(252, 193, 12, 1) 0%, rgba(255, 234, 0, 1) 100%);
     color: #0d1f40;
     font-weight: 400;
     font-size: 17px;
     border-radius: 12px;
     text-decoration: none;
     text-align: center;
     transition: background 0.2s ease, transform 0.2s ease;
     margin-top: auto;
 }

 .bDH__cta:hover {
     transform: translateX(3px);
     color: #0d1f40;
 }

 /* Responsivo */
 @media (max-width: 991px) {
     .bannerDestaqueHome {
         background-position: center center;
         min-height: 320px;
     }

     .bDH__overlay {
         background: linear-gradient(to bottom,
                 rgba(10, 28, 70, 0.90) 0%,
                 rgba(10, 28, 70, 0.70) 100%);
     }

     .bDH__content {
         padding: 36px 24px;
     }
 }

 @media (max-width: 575px) {
     .bannerDestaqueHome {
         min-height: 280px;
         border-radius: 10px;
     }

     .bDH__titulo {
         font-size: 1.8rem;
     }
 }

 .faseBox {
     padding: 130px 0;
 }

 .faseBox .owl-theme .owl-dots {
     position: absolute;
     width: 100%;
     text-align: center;
     margin-top: 20px;
     line-height: 1;
     z-index: 10;
     display: flex;
     justify-content: center;
 }

 .faseBox .owl-dots .active span {
     width: 18px;
     height: 18px;
     background: var(--AzulGlobal);
     border: none;
     margin: 5px 5px;
     transition: all 0.3s ease;
     display: block;
     border-radius: 25px;
     width: 50px;
 }

 .faseBox .owl-dots span {
     width: 18px;
     height: 18px;
     background: var(--AmareloGlobal);
     border: none;
     margin: 5px 5px;
     transition: all 0.3s ease;
     display: block;
     border-radius: 25px;
 }

 .faseBox h2 {
     font-size: 35px;
     font-weight: 700;
 }

 .faseBox p {
     font-size: 18px;
 }

 /******* CATEGORIAS GRID HOME ************/
 .qualEquipamentoVcPrecisa {
     padding: 130px 0;
     text-align: center;
 }

 .qualEquipamentoVcPrecisa h2 {
     font-size: 35px;
     font-weight: 700;
 }

 .qualEquipamentoVcPrecisa p {
     padding: 0 330px;
     font-size: 18px;
 }

 .contentAlign {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 10px;
     height: stretch;
 }

 .categorias-grid {
     padding: 16px 0;
 }

 .cardCategoria {
     background: #ffffff;
     border-radius: 16px;
     padding: 32px 20px 19px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 18px;
     text-align: center;
     box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
     transition: transform 0.22s ease, box-shadow 0.22s ease;
     height: 100%;
 }

 .cardCategoria:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
 }

 /* Ícone */
 .cardCategoria__icone {
     width: 160px;
     height: 160px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .cardCategoria__icone img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 /* Título */
 .cardCategoria__titulo {
     font-size: 23px;
     font-weight: 700;
     color: #0d1f40;
     margin: 0;
     line-height: 1.3;
 }

 /* Botão CTA */
 .cardCategoria__cta {
     display: block;
     width: 100%;
     padding: 10px 16px;
     background: #FCC10C;
     background: linear-gradient(90deg, rgba(252, 193, 12, 1) 0%, rgba(255, 234, 0, 1) 100%);
     color: #0d1f40;
     font-weight: 400;
     font-size: 17px;
     border-radius: 12px;
     text-decoration: none;
     text-align: center;
     transition: background 0.2s ease, transform 0.2s ease;
     margin-top: auto;
 }

 .cardCategoria__cta:hover {
     color: #0d1f40;
 }

 /* Responsivo */
 @media (max-width: 575px) {
     .cardCategoria {
         padding: 24px 14px 20px;
         border-radius: 12px;
     }

     .cardCategoria__icone {
         width: 70px;
         height: 70px;
     }

     .cardCategoria__titulo {
         font-size: 0.9rem;
     }

     .cardCategoria__cta {
         font-size: 0.85rem;
         padding: 10px 12px;
     }
 }

 .fase-card {
     background: #ffffff;
     border-radius: 16px;
     padding: 32px 20px 17px;
     flex-direction: column;
     align-items: center;
     gap: 18px;
     text-align: center;
     box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
     transition: transform 0.22s ease, box-shadow 0.22s ease;
     height: 100%;
 }

 .fase-card img {
     width: 70% !important;
     height: auto;
     margin: 0 15%;
 }

 .fase-card a {
     display: block;
     width: 100%;
     padding: 10px 16px;
     background: #FCC10C;
     background: linear-gradient(90deg, rgba(252, 193, 12, 1) 0%, rgba(255, 234, 0, 1) 100%);
     color: #0d1f40;
     font-weight: 400;
     font-size: 17px;
     border-radius: 12px;
     text-decoration: none;
     text-align: center;
     transition: background 0.2s ease, transform 0.2s ease;
     margin-top: auto;
 }


 .fase-card h3 {
     font-size: 23px;
     font-weight: 700;
 }

 /**** CARDS AVISOS ****************************/
 .cardAvisoHome {
     height: 100%;
 }

 .er-card {
     background: var(--AzulGlobal);
     border-radius: 14px;
     padding: 28px 38px;
     display: flex;
     flex-direction: column;
     gap: 14px;
     height: 100%;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
     transition: transform 0.22s ease, box-shadow 0.22s ease;
 }

 .er-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
 }

 /* Topo: ícone + título lado a lado */
 .er-card__topo {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .er-card__icon {
     flex-shrink: 0;
     width: 65px;
     height: 65px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .er-card__icon img {
     width: 65px;
     height: 65px;
     object-fit: contain;
     filter: brightness(0) invert(1);
     /* deixa ícone branco se for SVG/PNG escuro */
 }

 .er-card__titulo {
     font-size: 29px;
     font-weight: 600;
     color: var(--AmareloGlobal);
     line-height: 1.25;
     margin: 0;
     padding: 0 55px 0 0;
     line-height: 32px;
 }

 /* Texto descritivo */
 .er-card__texto {
     font-size: 0.9375rem;
     color: #c8d3e8;
     line-height: 1.65;
     margin: 0;
 }

 .er-card__texto strong,
 .er-card__texto b {
     color: #ffffff;
 }

 /* Responsivo */
 @media (max-width: 991px) {
     .er-card {
         padding: 24px 20px;
     }
 }

 @media (max-width: 575px) {
     .er-card__titulo {
         font-size: 1.05rem;
     }

     .er-card__icon {
         width: 50px;
         height: 50px;
     }

     .er-card__icon img {
         width: 50px;
         height: 50px;
     }
 }

 .produtosEmDestaque {
     padding: 130px 0;
     text-align: center;
 }

 .produtosEmDestaque h2 {
     font-size: 35px;
     font-weight: 700;
     margin: 0 0 30px 0;
 }

 .cardCategoriaDestaque {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 20px 19px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    height: auto;
    margin: 0 0 20px 0;
 }

 .cardCategoriaDestaque img {
     width: 100%;
     height: auto;
 }

 .pm-card-content h3 {
     font-size: 18px;
     font-weight: 700;
     height: 65px;
 }



 /******************************** CONFIG CATEGORIAS **************************/
 .heroCategorias {
     width: 100%;
     background: url(../images/bgEngrenagem.webp) no-repeat top right var(--AmareloGlobal);
     background-size: contain;
     position: relative;
     overflow: hidden;
     padding: 150px 0 290px 0;
     margin: 0 0 -270px 0;
 }

 .heroCategorias .breadcrumb {
     background: #E3AE0B;
     padding: 10px 15px;
     width: fit-content;
     border-radius: 10px;
     color: var(--AzulGlobal);
     font-size: 16px;
     font-weight: 600;
 }

 .heroCategorias h1 {
     margin-top: 40px;
 }

 .breadcrumb-item a {
     text-decoration: none;
     color: var(--AzulGlobal);
 }

 .breadcrumb-item.active {
     color: var(--AzulGlobal);
 }

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

 .colunaEsquerdaCategorias {
     position: relative;
 }


 .colunaEsquerdaCategorias .list-group {
     border-radius: 20px;
     padding: 15px;
     background: #fff;
 }

 .colunaEsquerdaCategorias .list-group-item {
     border: none;
 }

 .list-group-item:first-child {
     border-top-left-radius: 10px;
     border-top-right-radius: 10px;
 }

 .list-group-item:last-child {
     border-top-left-radius: 10px !important;
     border-top-right-radius: 10px !important;
     border: none !important;
 }

 .list-group-item.active {
     z-index: 2;
     color: #fff;
     background-color: var(--AmareloGlobal);
 }


 .colunaEsquerdaCategorias .list-group-item {
     position: relative;
     display: block;
     padding: 13px;
     color: #212529;
     text-decoration: none;
     border-bottom: 1px solid rgba(0, 0, 0, 0.125);
 }


 .cardProdutos {
     position: relative;
     display: flex;
     flex-direction: column;
     min-width: 0;
     word-wrap: break-word;
     background-color: #fff;
     background-clip: border-box;
     border: 1px solid rgba(0, 0, 0, 0.125);
     border-radius: 20px;
 }

 .cardProdutos .cta {
     display: block;
     width: 100%;
     padding: 10px 16px;
     background: #FCC10C;
     background: linear-gradient(90deg, rgba(252, 193, 12, 1) 0%, rgba(255, 234, 0, 1) 100%);
     color: #0d1f40;
     font-weight: 400;
     font-size: 17px;
     border-radius: 12px;
     text-decoration: none;
     text-align: center;
     transition: background 0.2s ease, transform 0.2s ease;
     margin-top: auto;
 }

 .cardProdutos h3 {
     font-size: 19px;
 }

 .contentSingleOpen {
     background: #fff;
     position: relative;
     padding: 40px;
     border-radius: 25px;
 }

 #form-orcamento-locacao .btnWhatsp {
     background: #40C039;
     color: #051F38;
     border: none;
     padding: 15px 38px;
     border-radius: 14px;
     font-weight: 600;
     font-size: 17px;
 }

 .contentSingleOpen .btnFicha {
     background-color: #eaecf4;
     /* border-color: #d1d3e2 !important; */
     font-weight: 700;
     font-size: 20px;
     border-radius: 13px;
     padding: 10px 20px !important;
     border: none !important;
     margin: 50px 0px 0 0;
 }

 .produtosRelacionados {
     padding: 100px 0;
 }

 .produtosRelacionados .fase-card h5 {
     font-size: 18px;
     height: 65px;
 }


 .produtosRelacionados .fase-card a {
     border: none;
     color: var(--AzulGlobal) !important;
 }



 .produtosRelacionados .owl-theme .owl-dots {
     position: absolute;
     width: 100%;
     text-align: center;
     margin-top: 20px;
     line-height: 1;
     z-index: 10;
     display: flex;
     justify-content: center;
 }

 .produtosRelacionados .owl-dots span {
     width: 18px;
     height: 18px;
     background: var(--AmareloGlobal);
     border: none;
     margin: 5px 5px;
     transition: all 0.3s ease;
     display: block;
     border-radius: 25px;
 }

 .produtosRelacionados .owl-dots .active span {
     width: 18px;
     height: 18px;
     background: var(--AzulGlobal);
     border: none;
     margin: 5px 5px;
     transition: all 0.3s ease;
     display: block;
     border-radius: 25px;
     width: 50px;
 }



 /***** DUVIDAS FREQUENTES **********/
 /* ================================================
   FAQ Accordion — Global Locações
   ================================================ */

 .duvidasFrequentesHp .alignTxt {
     text-align: center;
 }

 .duvidasFrequentesHp .alignTxt h2 {
     font-size: 35px;
     font-weight: 700;
 }

 .duvidasFrequentesHp .alignTxt {
     padding: 0 100px;
 }

 .duvidasFrequentesHp img {
     margin: 40px 0 0 40px;
 }

 .pm-faq-wrapper {
     padding: 16px 0;
 }

 /* Remove borda e arredondamento padrão do Bootstrap entre itens */
 .pm-faq-item {
     border: none;
     border-radius: 12px !important;
     margin-bottom: 12px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(5, 31, 56, 0.07);
     background: #fff;
 }

 /* Botão do accordion */
 .pm-faq-btn {
     display: flex;
     align-items: center;
     justify-content: space-between;
     width: 100%;
     padding: 30px 24px;
     background: #fff;
     border: none;
     text-align: left;
     font-size: 16px;
     font-weight: 700;
     color: var(--AzulGlobal, #051F38);
     cursor: pointer;
     gap: 16px;

     /* Remove o ::after padrão do Bootstrap */
     background-image: none !important;
 }

 .accordion-button:not(.collapsed) {
     color: var(--AzulGlobal);
     background-color: #FFF;
     box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.125);
 }

 .pm-faq-btn:focus {
     box-shadow: none;
     outline: none;
 }

 /* Ícone personalizado (triângulo amarelo) */
 .pm-faq-icon {
     flex-shrink: 0;
     width: 32px;
     height: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--AmareloGlobal, #FCC10C);
 }

 /* Controla qual ícone aparece */
 .pm-faq-btn.collapsed .pm-icon-open {
     display: none;
 }

 .pm-faq-btn.collapsed .pm-icon-closed {
     display: block;
 }

 .pm-faq-btn:not(.collapsed) .pm-icon-open {
     display: block;
 }

 .pm-faq-btn:not(.collapsed) .pm-icon-closed {
     display: none;
 }

 /* Corpo da resposta */
 .pm-faq-body {
     padding: 0 24px 20px;
     color: #555;
     font-size: 15px;
     line-height: 1.7;
     border: none;
 }

 .pm-faq-body p:last-child {
     margin-bottom: 0;
 }


 /****************** FOOTER *******************/
 /* ================================================
   Footer — Global Locações
   ================================================ */

 /* ===== Wrapper externo ===== */
 .gl-footer {
     background: transparent;
     padding: 48px 100px 0;
     margin: 40px 0 0 0;
 }

 /* ===== Card azul arredondado ===== */
 .gl-footer-inner {
     background: var(--AzulGlobal, #051F38);
     border-radius: 24px;
     padding: 56px 40px;
 }

 /* ===== Logo ===== */
 .gl-footer-logo {
     max-width: 180px;
     height: auto;
     display: block;
     margin-bottom: 28px;
 }

 /* ===== Redes sociais — linha horizontal ===== */
 .gl-social-icons {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 12px;
     flex-wrap: nowrap;
 }

 .gl-social-icons a {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: var(--AmareloGlobal);
     color: var(--AzulGlobal);
     font-size: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     flex-shrink: 0;
     transition: background 0.2s, color 0.2s;
 }

 .gl-social-icons a:hover {
     background: #ffffff;
     color: var(--AzulGlobal, #051F38);
 }

 /* ===== Títulos das colunas ===== */
 .gl-footer-heading {
     color: var(--AmareloGlobal, #FCC10C);
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 /* ===== Menus footer ===== */
 .gl-footer-menu {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .gl-footer-menu li a {
     color: rgba(255, 255, 255, 0.75);
     text-decoration: none;
     font-size: 14px;
     line-height: 1.4;
     transition: color 0.2s;
 }

 .gl-footer-menu li a:hover {
     color: #fff;
 }

 /* Menu Aluguel — 2 colunas internas */
 .gl-footer-menu--two-col {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px 24px;
 }

 /* ===== Contatos ===== */
 .gl-contact-list {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 /* Cada item: ícone + texto lado a lado */
 .gl-contact-list>li {
     display: flex;
     flex-direction: row;
     align-items: flex-start;
     gap: 14px;
 }

 /* Ícone quadrado amarelo */
 .gl-contact-icon {
     flex-shrink: 0;
     width: 42px;
     height: 42px;
     background: var(--AmareloGlobal, #FCC10C);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--AzulGlobal, #051F38);
     font-size: 20px;
 }

 /* Texto ao lado do ícone */
 .gl-contact-list>li>div {
     display: flex;
     flex-direction: column;
     gap: 2px;
 }

 .gl-contact-list small {
     display: block;
     font-size: 11px;
     color: rgba(255, 255, 255, 0.5);
 }

 .gl-contact-list a {
     color: #fff;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;
     transition: color 0.2s;
 }

 .gl-contact-list a:hover {
     color: var(--AmareloGlobal, #FCC10C);
 }

 .gl-contact-list address {
     color: rgba(255, 255, 255, 0.75);
     font-size: 14px;
     font-style: normal;
     line-height: 1.7;
     margin: 0;
 }

 /* ===== Ajuste para estrutura com widgets WordPress ===== */
 /* Quando os widgets ficam soltos sem o <ul> wrapper */
 .col-12.col-md-3>.gl-contact-icon {
     float: left;
     margin-right: 14px;
     margin-bottom: 20px;
 }

 .col-12.col-md-3>div {
     overflow: hidden;
     margin-bottom: 20px;
     padding-top: 14px;
 }

 .col-12.col-md-3 .widget-container {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .col-12.col-md-3 .widget-container small {
     display: block;
     font-size: 11px;
     color: rgba(255, 255, 255, 0.5);
     margin-bottom: 3px;
 }

 .col-12.col-md-3 .widget-container a {
     color: #fff;
     font-size: 15px;
     font-weight: 700;
     text-decoration: none;
     transition: color 0.2s;
 }

 .col-12.col-md-3 .widget-container a:hover {
     color: var(--AmareloGlobal, #FCC10C);
 }

 .col-12.col-md-3 .widget-container address {
     color: rgba(255, 255, 255, 0.75);
     font-size: 14px;
     font-style: normal;
     line-height: 1.7;
     margin: 0;
 }

 /* ===== Bottom bar ===== */
 .gl-footer-bottom {
     padding: 40px 0;
     margin-top: 0;
 }

 .gl-footer-bottom p {
     color: rgba(5, 31, 56, 0.65);
     font-size: 13px;
     margin: 0;
 }

 .gl-credits {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 /* ===== RESPONSIVO ===== */
 @media (max-width: 991px) {
     .gl-footer-menu--two-col {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 767px) {
     .gl-footer-inner {
         padding: 40px 24px;
         border-radius: 16px;
     }

     .gl-social-icons {
         flex-direction: row;
         /* mantém horizontal mesmo no mobile */
     }

     .gl-footer-menu--two-col {
         grid-template-columns: 1fr;
     }

     .gl-footer-bottom .container {
         flex-direction: column;
         text-align: center;
         gap: 8px;
     }
 }



 /********** GRUPOS GERADORES************/
 .heroGrupoGeradores {
     width: 100%;
     background: url(../images/bgGrupoGeradores.webp) top;
     padding: 140px 0 80px 0;
 }

 .heroGrupoGeradores h1 {
     color: var(--AmareloGlobal);
     font-size: 70px;
     font-weight: 800;
 }


 .heroGrupoGeradores p {
     color: #fff;
     font-size: 20px;
     padding: 0 30px 0 0;
 }

 .heroGrupoGeradores .breadcrumb {
     background: #051F38;
     width: fit-content;
     padding: 10px 25px;
     border-radius: 10px;
 }

 .heroGrupoGeradores img {
     float: right;
 }

 .breadcrumb-item+.breadcrumb-item::before {
     color: #fff;
 }

 .heroGrupoGeradores .breadcrumb a {
     color: #fff;
 }

 .servicosGrupoGeradores {
     width: 100%;
     margin: -80px 0 0 0;
     position: relative;
 }

 .cardEtapas {
     background: #ffffff;
     border-radius: 12px;
     padding: 32px 28px;
     height: 100%;
     box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
 }

 .cardEtapas .iconTitulo {
     display: flex;
 }

 .cardEtapas .iconTitulo img {
     width: 100px;
     height: auto;
 }

 .cardEtapas .iconTitulo h3 {
     font-size: 29px;
     line-height: 28px;
     margin: 17px 0 0 12px;
 }

 .cardEtapas__icone {
     margin-bottom: 20px;
 }

 .cardEtapas__icone img {
     width: 64px;
     height: 64px;
     object-fit: contain;
 }

 .cardEtapas__titulo {
     font-size: 1.25rem;
     font-weight: 700;
     color: #0f1f3d;
     margin-bottom: 16px;
     line-height: 1.3;
 }

 .cardEtapas__texto {
     font-size: 17px;
     color: #4a4a4a;
     line-height: 25px;
     margin-bottom: 0;
 }

 /* Espaçamento entre cards no mobile */
 @media (max-width: 991px) {
     .cardEtapas {
         margin-bottom: 24px;
     }
 }


 /************* JANELA MODAL DESCRIÇÃO GRUPOS GERADORES ***************/

 .modal-descricao {
     display: none;
     position: fixed;
     inset: 0;
     z-index: 9999;
     align-items: center;
     justify-content: center;
 }

 .modal-descricao.ativo {
     display: flex;
 }

 .modal-descricao__overlay {
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.55);
     cursor: pointer;
 }

 .modal-descricao__box {
     position: relative;
     background: #fff;
     border-radius: 12px;
     width: 90%;
     max-width: 760px;
     max-height: 85vh;
     overflow-y: auto;
     padding: 40px;
     z-index: 1;
     box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
 }

 .modal-descricao__fechar {
     position: absolute;
     top: 16px;
     right: 20px;
     background: none;
     border: none;
     font-size: 1.8rem;
     color: #0f1f3d;
     cursor: pointer;
     line-height: 1;
 }

 .modal-descricao__fechar:hover {
     color: #e74c3c;
 }

 .modal-descricao__header {
     margin-bottom: 24px;
     padding-bottom: 16px;
     border-bottom: 2px solid #f0f0f0;
 }

 .modal-descricao__header h2 {
     font-size: 1.4rem;
     font-weight: 700;
     color: #0f1f3d;
     margin: 0;
 }

 .modal-descricao__conteudo {
     font-size: 0.95rem;
     color: #444;
     line-height: 1.8;
 }

 .modal-descricao__conteudo p {
     margin-bottom: 16px;
 }

 .modal-descricao__conteudo img {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
 }

 /* Trava o scroll do body quando modal está aberto */
 body.modal-aberto {
     overflow: hidden;
 }

 @media (max-width: 768px) {
     .modal-descricao__box {
         padding: 24px 20px;
         max-height: 90vh;
     }
 }


 .listaGruposGeradores {
     padding: 100px 0 0 0;
 }

 .listaGruposGeradores h2 {
     font-size: 25px;
     font-weight: 700;
     padding: 50px 0 5px 0;
 }

 .listaGruposGeradores p {
     font-size: 16px;
     padding: 0 0 25px 0;
     color: #444;
 }

 .listaGruposGeradores .boxFichaTecnica {
     margin: 0 0 30px 0;
 }

 .listaGruposGeradores .boxFichaTecnica ul,
 .listaGruposGeradores .boxFichaTecnica ul li,
 .listaGruposGeradores .boxFichaTecnica li {
     list-style-type: none;
     margin: 0;
     padding: 0;
     line-height: 19px;
     font-size: 18px;
     width: fit-content;
 }


 .listaGruposGeradores .boxFichaTecnica ul {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 15px;
 }

 .listaGruposGeradores .boxFichaTecnica li {
     background: #fff;
     width: fit-content;
     padding: 8px 11px !important;
     border-radius: 11px;
 }

 .listaGruposGeradores .boxFichaTecnica li .fa-file-alt {
     font-size: 30px;
     float: left;
     margin: 6px 10px 0 0;
 }

 .listaGruposGeradores .boxFichaTecnica ul small {
     font-size: 15px;
 }

 .listaGruposGeradores .boxFichaTecnica ul li a {
     color: #051F38;
     text-decoration: none;
 }

 .listaGruposGeradores .attachment-post-thumbnail {
     width: 90%;
     height: auto;
     margin: -20px 0 0 7%;
 }

 .listaGruposGeradores .ctas {
     display: flex;
     gap: 14px;
 }

 .listaGruposGeradores .btn-modal-descricao {
     background: #051F38;
     background: linear-gradient(90deg, rgba(5, 31, 56, 1) 0%, rgba(0, 55, 108, 1) 100%);
     color: var(--AmareloDestaque);
     padding: 15px;
     border-radius: 10px;
     text-decoration: none;
     width: 45%;
     text-align: center;
 }

 .listaGruposGeradores .whtasappBtn {
     background: #40C039;
     color: var(--AzulGlobal);
     padding: 15px;
     border-radius: 10px;
     text-decoration: none;
     width: 45%;
     text-align: center;
     font-weight: 700;
 }


 /***************** SUBPAGES **************/
 .heroSubpages {
     width: 100%;
     background: url(../images/bgHeroSubpages.webp) top;
     padding: 80px 0 0px 0;
 }

 .heroSubpages .breadcrumb {
     background: #051F38;
     width: fit-content;
     padding: 10px 25px;
     border-radius: 10px;
     margin-top: 60px;
 }

 .heroSubpages .breadcrumb a {
     color: #fff;
 }

 .heroSubpages.breadcrumb-item+.breadcrumb-item::before {
     color: #fff;
 }

 .heroSubpages h1 {
     color: var(--AmareloGlobal);
     font-size: 70px;
     font-weight: 800;
 }

 .heroSubpages p {
     color: #fff;
     font-size: 20px;
     padding: 0 30px 0 0;
 }

 .quemSomos {
     padding: 70px 0;
 }

 .quemSomos p {
     font-size: 18px;
     color: #4a4a4a;
     line-height: 30px;
     margin: 50px 0 0 0;
 }



 /****/
 .pqEscolherAGlobal {
     padding: 0 0 80px 0;
 }

 .pqEscolherAGlobal .row {
     display: flex;
     flex-wrap: wrap;
 }

 .pqEscolherAGlobal h2 {
     width: 100%;
     text-align: center;
     font-size: 35px;
     font-weight: 800;
     color: var(--AzulGlobal);
     margin: 0 0 80px 0;
 }

 .pqEscolherAGlobal .cardPQEscolher {
     background: #fff;
     padding: 20px;
     border-radius: 20px;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .pqEscolherAGlobal .cardPQEscolher img {
     background: var(--AmareloGlobal);
     border-radius: 80px;
     margin: -70px 0 0 0;
     border: solid 10px #fff;
     width: 127px;
     height: auto;
 }


 /*********/
 .missaoVisaValores {
     background: #fff;
     padding: 40px;
     border-radius: 30px;
     margin: 30px 0 100px 0;
 }

 .missaoVisaValores h2 {
     font-size: 30px;
     color: var(--AzulGlobal);
     font-weight: 600;
 }

 .missaoVisaValores p {
     font-size: 18px;
     color: #4a4a4a;
     line-height: 30px;
 }


 /**********/
 .manutencao {
     background: var(--AmareloGlobal);
     padding: 50px 50px 0px 50px;
     border-radius: 30px;
     margin-bottom: 50px;
 }


 .manutencao h2 {
     font-size: 50px;
     color: var(--AzulGlobal);
     font-weight: 600;
 }


 .manutencao h3 {
     font-size: 30px;
     color: var(--AzulGlobal);
     font-weight: 600;
 }

 .manutencao p {
     font-size: 18px;
     color: #4a4a4a;
     line-height: 30px;
 }

 .manutencao img {
     margin: 0 0 0 50px;
 }


 /*********************/
 .heroFaq {
     padding: 80px 0 80px 0;
 }


 .duvidasFrequentasPG {
     margin: -90px 0 0 0;
 }




 /* Estilização do lado esquerdo - Informações */
 .paginaDeContato {
     padding: 80px 0;
 }

 .paginaDeContato .boxContatos {
     display: flex;
     margin: 25px 0;
 }

 .paginaDeContato .boxContatos .fab,
 .paginaDeContato .boxContatos .far,
 .paginaDeContato .boxContatos .fas {
     background: var(--AmareloGlobal);
     float: left;
     height: fit-content;
     padding: 11px;
     font-size: 23px;
     width: 44px;
     height: 44px;
     text-align: center;
     line-height: 22px;
     border-radius: 10px;
     margin: 5px 10px 0 0;
 }

 .paginaDeContato .boxContatos p small {
     font-size: 14px;
     font-weight: 400;
 }

 .paginaDeContato .boxContatos p {
     font-weight: 500;
     font-size: 20px;
     line-height: 24px;
 }

 .paginaDeContato .col-lg-6:first-child h2 {
     color: #051F38;
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 20px;
     margin-top: 0;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .paginaDeContato .col-lg-6:first-child h2:first-of-type {
     margin-top: 0;
 }

 .paginaDeContato .col-lg-6:first-child h2:last-of-type {
     margin-top: 40px;
 }

 .paginaDeContato .col-lg-6:first-child h2 i {
     font-size: 28px;
 }

 .paginaDeContato .col-lg-6:first-child p {
     color: #666;
     font-size: 16px;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 .paginaDeContato .col-lg-6:first-child ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .paginaDeContato .col-lg-6:first-child ul li {
     padding: 7px 15px;
     margin-bottom: 8px;
     background: #fff;
     border-radius: 11px;
     color: #333;
     font-size: 15px;
     transition: all 0.3s ease;
     position: relative;
     padding-left: 35px;
     margin: 0 0 8px 20px;
     border: solid 1px #DBDBDB;
 }

 .paginaDeContato .col-lg-6:first-child ul li:before {
     content: '\f0da';
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     color: #051F38;
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
 }

 .paginaDeContato .col-lg-6:first-child ul li:hover {
     background: #ffe5e5;
     transform: translateX(5px);
 }

 /* Estilização do formulário - lado direito */
 .paginaDeContato .col-lg-6:last-child {
     background: #fff;
 }

 .paginaDeContato .col-lg-6:last-child h2 {
     color: #051F38;
     font-size: 24px;
     font-weight: 800;
     margin-bottom: 10px;
     margin-top: 0;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .paginaDeContato .col-lg-6:last-child p {
     color: #5C5C5C;
 }

 .paginaDeContato .wpcf7-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .paginaDeContato .wpcf7-form>p:first-of-type {
     margin-top: 0;
 }



 .paginaDeContato .wpcf7-form p {
     margin: 0;
     display: flex;
     gap: 15px;
 }

 .paginaDeContato .wpcf7-form p label {
     color: #5C5C5C;
     color: #5C5C5C;
     padding: 12px 0 0 0;
 }

 .paginaDeContato .wpcf7-form-control-wrap {
     flex: 1;
     display: block;
 }

 .paginaDeContato .wpcf7-select,
 .paginaDeContato .wpcf7-text,
 .paginaDeContato .wpcf7-email,
 .paginaDeContato .wpcf7-tel,
 .paginaDeContato .wpcf7-textarea {
     width: 100%;
     padding: 14px 18px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 15px;
     font-family: inherit;
     transition: all 0.3s ease;
     background: white;
 }

 .paginaDeContato .wpcf7-select:focus,
 .paginaDeContato .wpcf7-text:focus,
 .paginaDeContato .wpcf7-email:focus,
 .paginaDeContato .wpcf7-tel:focus,
 .paginaDeContato .wpcf7-textarea:focus {
     outline: none;
     border-color: #051F38;
     box-shadow: 0 0 0 3px rgba(47, 50, 211, 0.1);
 }

 .paginaDeContato .wpcf7-select {
     cursor: pointer;
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 15px center;
     padding-right: 40px;
 }

 .paginaDeContato .wpcf7-textarea {
     min-height: 150px;
     resize: vertical;
     font-family: inherit;
 }

 .paginaDeContato .wpcf7-submit {
     background: #051F38;
     color: white;
     padding: 13px 50px;
     border: none;
     border-radius: 8px;
     font-size: 17px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     align-self: flex-end;
     position: relative;
 }

 .paginaDeContato .wpcf7-submit:after {
     content: '\f04b';
     font-family: 'Font Awesome 5 Free';
     font-weight: 900;
     margin-left: 10px;
     font-size: 14px;
 }

 .paginaDeContato .wpcf7-submit:hover {
     background: #051F38;
     transform: translateY(-2px);
     box-shadow: 0 6px 16px rgba(7, 6, 102, 0.4);
 }

 .paginaDeContato .wpcf7-spinner {
     display: none;
 }

 .paginaDeContato .wpcf7-response-output {
     margin-top: 15px;
     padding: 12px 18px;
     border-radius: 8px;
     font-size: 14px;
 }

 .paginaDeContato .wpcf7-validation-errors {
     background: #ffebee;
     border: 1px solid #ef5350;
     color: #c62828;
 }

 .paginaDeContato .wpcf7-mail-sent-ok {
     background: #e8f5e9;
     border: 1px solid #66bb6a;
     color: #2e7d32;
 }

 .paginaDeContato .hidden-fields-container {
     display: none;
 }

 .paginaDeContato .screen-reader-response {
     position: absolute;
     overflow: hidden;
     clip: rect(1px, 1px, 1px, 1px);
     height: 1px;
     width: 1px;
     margin: 0;
     padding: 0;
     border: 0;
 }

 .paginaDeContato .botoesWhatsappContato {
     padding: 0 0 0 0;
     margin: 30px 0 0 0;
     display: flex;
 }


 .mapa {
     width: 100%;
     text-align: center;
 }

 .mapa h2 {
     width: 100%;
     text-align: center;
     font-size: 35px;
     font-weight: 700;
     color: var(--AzulGlobal);
     margin: 0 0 30px 0;
 }

 .mapa .mapaContent {
     width: 100%;
 }


 .mapa .mapaContent iframe {
     width: 100%;
     border-radius: 25px;
     box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
 }




 /* ==============================
       ESTRUTURA GERAL
    ============================== */
 .blogPage {
     background: var(--FundoPagina);
     padding: 60px 0;
 }

 .blogPage__titulo {
     font-size: 1.75rem;
     font-weight: 800;
     color: var(--AzulGlobal);
     margin-bottom: 32px;
 }

 /* ==============================
       CARD DE POST
    ============================== */
 .postCard {
     display: flex;
     align-items: stretch;
     overflow: hidden;
     margin-bottom: 20px;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
     transition: box-shadow 0.25s ease, transform 0.25s ease;
     background: #fff;
     border-radius: 19px;
 }

 .postCard:hover {
     box-shadow: 0 6px 24px rgba(0, 0, 0, 0.11);
     transform: translateY(-2px);
 }

 .postCard__thumb {
     display: block;
     flex: 0 0 240px;
     width: 240px;
     overflow: hidden;
 }

 .postCard__thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.4s ease;
 }

 .postCard:hover .postCard__thumb img {
     transform: scale(1.04);
 }

 .postCard__body {
     flex: 1;
     padding: 24px 28px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     position: relative;
 }

 .postCard__categoria {
     font-size: 0.78rem;
     font-weight: 700;
     color: var(--AmareloGlobal);
     text-transform: uppercase;
     letter-spacing: 0.04em;
     text-decoration: none;
     margin-bottom: 8px;
     display: block;
 }

 .postCard__data {
     font-size: 0.82rem;
     color: var(--CinzaTexto);
     display: flex;
     align-items: center;
     gap: 6px;
     margin-bottom: 10px;
 }

 .postCard__data i {
     color: var(--AzulGlobal);
     font-size: 0.85rem;
 }

 .postCard__titulo {
     font-size: 1rem;
     font-weight: 600;
     color: var(--AzulGlobal);
     margin: 0 0 16px;
     line-height: 1.45;
 }

 .postCard__titulo a {
     text-decoration: none;
     color: inherit;
 }

 .postCard__titulo a:hover {
     color: var(--AmareloGlobal);
 }

 .postCard__link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: var(--AzulGlobal);
     border-radius: 8px;
     color: #fff;
     font-size: 0.9rem;
     text-decoration: none;
     align-self: flex-end;
     transition: background 0.2s ease;
 }

 .postCard__link:hover {
     background: var(--AmareloGlobal);
     color: var(--AzulGlobal);
 }

 /* ==============================
       PAGINAÇÃO
    ============================== */
 .blogPage__paginacao {
     margin-top: 32px;
     display: flex;
     gap: 8px;
 }

 .blogPage__paginacao .page-numbers {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 38px;
     height: 38px;
     border-radius: 8px;
     background: var(--BrancoBg);
     color: var(--AzulGlobal);
     font-weight: 600;
     font-size: 0.9rem;
     text-decoration: none;
     border: 1px solid #ddd;
     transition: all 0.2s;
 }

 .blogPage__paginacao .page-numbers.current,
 .blogPage__paginacao .page-numbers:hover {
     background: var(--AmareloGlobal);
     border-color: var(--AmareloGlobal);
     color: var(--AzulGlobal);
 }

 /* ==============================
       SIDEBAR
    ============================== */
 .blogSidebar {
     display: flex;
     flex-direction: column;
     gap: 28px;
 }

 /* Busca */
 .blogSidebar__busca form {
     display: flex;
     align-items: center;
     gap: 12px;
     background: #fff;
     border-radius: 10px;
     padding: 14px 18px;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
     margin-bottom: 25px;
 }

 .blogSidebar__busca i {
     color: var(--CinzaTexto);
     font-size: 1rem;
 }

 .blogSidebar__busca input {
     border: none;
     outline: none;
     font-size: 0.9rem;
     color: var(--CinzaTexto);
     width: 100%;
     background: transparent;
 }

 .blogSidebar__busca input::placeholder {
     color: #aaa;
 }

 /* Categorias */
 .blogSidebar__categorias {
     background: var(--AmareloGlobal);
     border-radius: 20px;
     padding: 28px 28px 20px;
     margin: 70px 0 0 0;
 }

 .blogSidebar__categorias h3 {
     font-size: 1.25rem;
     font-weight: 800;
     color: var(--AzulGlobal);
     margin-bottom: 18px;
 }

 .blogSidebar__categorias ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .blogSidebar__categorias ul li a {
     display: block;
     font-size: 0.95rem;
     font-weight: 600;
     color: var(--AzulGlobal);
     text-decoration: none;
     padding: 6px 0;
     border-bottom: 1px solid rgba(5, 31, 56, 0.1);
     transition: opacity 0.2s;
 }

 .blogSidebar__categorias ul li:last-child a {
     border-bottom: none;
 }

 .blogSidebar__categorias ul li a:hover {
     opacity: 0.65;
 }

 /* Mais clicadas */
 .blogSidebar__maisClicadas h3 {
     font-size: 1.15rem;
     font-weight: 800;
     color: var(--AzulGlobal);
     margin-bottom: 16px;
 }

 .postPopular {
     display: flex;
     gap: 14px;
     align-items: flex-start;
     text-decoration: none;
     margin-bottom: 16px;
     transition: opacity 0.2s;
 }

 .postPopular:hover {
     opacity: 0.75;
 }

 .postPopular__thumb {
     flex: 0 0 72px;
     width: 72px;
     height: 72px;
     border-radius: 8px;
     overflow: hidden;
 }

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

 .postPopular__info {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .postPopular__titulo {
     font-size: 0.88rem;
     font-weight: 600;
     color: var(--AzulGlobal);
     line-height: 1.4;
 }

 .postPopular__data {
     font-size: 0.75rem;
     color: var(--CinzaTexto);
 }

 /* ==============================
       RESPONSIVO
    ============================== */
 @media (max-width: 991px) {
     .postCard__thumb {
         flex: 0 0 160px;
         width: 160px;
     }

     .blogSidebar {
         margin-top: 40px;
     }
 }

 @media (max-width: 600px) {
     .postCard {
         flex-direction: column;
     }

     .postCard__thumb {
         width: 100%;
         height: 200px;
     }
 }



 .carrosselDestaques {
     background: var(--FundoPagina);
     padding: 60px 0 70px;
 }

 /* ===== CARD ===== */
 .destaque-card {
     background: #fff;
     border-radius: 16px;
     overflow: hidden;
     margin: 8px 12px 16px;
     box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     flex-direction: column;
 }

 .destaque-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
 }

 .destaque-card__thumb {
     display: block;
     width: 100%;
     height: 220px;
     overflow: hidden;
 }

 .destaque-card__thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.45s ease;
 }

 .destaque-card:hover .destaque-card__thumb img {
     transform: scale(1.05);
 }

 .destaque-card__thumb--placeholder {
     width: 100%;
     height: 100%;
     background: #dde0e8;
 }

 .destaque-card__body {
     padding: 20px 22px 22px;
     display: flex;
     flex-direction: column;
     flex: 1;
 }

 .destaque-card__categoria {
     font-size: 0.78rem;
     font-weight: 700;
     color: var(--CinzaTexto);
     text-transform: uppercase;
     letter-spacing: 0.03em;
     margin-bottom: 10px;
     display: block;
 }

 .destaque-card__titulo {
     font-size: 1.05rem;
     font-weight: 700;
     color: var(--AzulGlobal);
     line-height: 1.45;
     margin: 0 0 auto;
     padding-bottom: 20px;
 }

 .destaque-card__titulo a {
     text-decoration: none;
     color: inherit;
 }

 .destaque-card__titulo a:hover {
     color: var(--AmareloGlobal);
 }

 .destaque-card__footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-top: 16px;
     border-top: 1px solid #f0f0f0;
 }

 .destaque-card__data {
     font-size: 0.82rem;
     color: var(--CinzaTexto);
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .destaque-card__data i {
     font-size: 0.85rem;
     color: var(--AzulGlobal);
 }

 .destaque-card__btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 38px;
     height: 38px;
     background: var(--AmareloGlobal);
     border-radius: 8px;
     color: var(--AzulGlobal);
     font-size: 0.85rem;
     text-decoration: none;
     transition: background 0.2s ease, transform 0.2s ease;
     flex-shrink: 0;
 }

 .destaque-card__btn:hover {
     background: var(--AzulGlobal);
     color: #fff;
     transform: scale(1.08);
 }

 /* ===== OWL DOTS CUSTOMIZADOS ===== */
 .destaques-carousel.owl-theme .owl-dots {
     margin-top: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .destaques-carousel.owl-theme .owl-dots .owl-dot span {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: var(--AmareloGlobal);
     margin: 0;
     transition: all 0.3s ease;
     display: block;
 }

 .destaques-carousel.owl-theme .owl-dots .owl-dot.active span {
     width: 36px;
     border-radius: 20px;
     background: var(--AzulGlobal);
 }

 /* ===== OWL NAV (oculto — dots suficientes) ===== */
 .destaques-carousel.owl-theme .owl-nav {
     display: none;
 }



 /************* POST OPEN ***********/
 /*********************/
 .heroBlogOpen {
     padding: 80px 0 220px 0;
 }


 .contentPost .attachment-thumb-post-highlights-blog {
     width: 100%;
     height: auto;
     border-radius: 25px;
     margin: -110px 0px 20px 0;
 }

 .contentPost .theContent p {
     font-size: 18px;
     color: #4a4a4a;
     line-height: 33px;
 }


 .ultimasNoticias__grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 20px;
 }

 /************ ULTIMAS NOTICAS HOME ************/
 .boxUltimasNoticiasPages {
     width: 90%;
     text-align: center;
     padding: 35px;
     background: #fff;
     margin: 0 0 100px 5%;
     border-radius: 45px;
 }


 /* ===== CARD ===== */
 .noticiaCard {
     background: #EBEBF3;
     border-radius: 16px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     margin: 20px 0 0 0;
 }

 .noticiaCard:hover {
     transform: translateY(-4px);
 }

 .noticiaCard__thumb {
     display: block;
     width: 100%;
     height: 210px;
     overflow: hidden;
 }

 .noticiaCard__thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.45s ease;
 }

 .noticiaCard:hover .noticiaCard__thumb img {
     transform: scale(1.05);
 }

 .noticiaCard__thumb--placeholder {
     width: 100%;
     height: 100%;
     background: #dde0e8;
 }

 .noticiaCard__body {
     padding: 18px 20px 20px;
     display: flex;
     flex-direction: column;
     flex: 1;
     gap: 10px;
     text-align: left;
 }

 .noticiaCard__categoria {
     font-size: 0.78rem;
     font-weight: 700;
     color: var(--CinzaTexto, #4F4F4F);
     text-decoration: none;
     display: block;
 }

 .noticiaCard__categoria:hover {
     color: var(--AmareloGlobal, #FCC10C);
 }

 .noticiaCard__titulo {
     font-size: 1rem;
     font-weight: 700;
     color: var(--AzulGlobal, #051F38);
     line-height: 1.45;
     margin: 0;
     flex: 1;
 }

 .noticiaCard__titulo a {
     text-decoration: none;
     color: inherit;
 }

 .noticiaCard__titulo a:hover {
     color: var(--AmareloGlobal, #FCC10C);
 }

 .noticiaCard__footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-top: 14px;
     border-top: 1px solid #f0f0f0;
     margin-top: auto;
 }

 .noticiaCard__data {
     font-size: 0.82rem;
     color: var(--CinzaTexto, #4F4F4F);
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .noticiaCard__data i {
     color: var(--AzulGlobal, #051F38);
 }

 .noticiaCard__btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 38px;
     height: 38px;
     background: var(--AmareloGlobal, #FCC10C);
     border-radius: 8px;
     color: var(--AzulGlobal, #051F38);
     font-size: 0.85rem;
     text-decoration: none;
     flex-shrink: 0;
     transition: background 0.2s ease, transform 0.2s ease;
 }

 .noticiaCard__btn:hover {
     background: var(--AzulGlobal, #051F38);
     color: #fff;
     transform: scale(1.08);
 }

 /* ===== RESPONSIVO ===== */
 @media (max-width: 1199px) {
     .ultimasNoticias__grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 767px) {
     .ultimasNoticias__grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 480px) {
     .ultimasNoticias__grid {
         grid-template-columns: 1fr;
     }
 }


 .contentBotBlue {
     width: 100%;
     height: fit-content;
     margin: 0;
     display: flex;
     justify-content: center;
 }

 .botBlue {
     background: #051F38;
     background: linear-gradient(90deg, rgba(5, 31, 56, 1) 0%, rgba(0, 55, 108, 1) 100%);
     color: var(--AmareloDestaque);
     text-decoration: none;
     padding: 15px 50px;
     border-radius: 10px;
     transition: all 0.5s;
 }

 .botBlue:hover {
     color: var(--AzulGlobal);
     background: #FCC10C;
     background: linear-gradient(90deg, rgba(252, 193, 12, 1) 0%, rgba(255, 238, 0, 1) 100%);
     transition: all 0.5s;
 }

 .ajusteNoticiasHOme {
     margin: 17px 0 -60px 0;
 }




 /**************************************************************** ajustes mobile **********************************************************/

 @media (max-width: 480px) {
     .qualEquipamentoVcPrecisa p {
         padding: 0;
         font-size: 18px;
     }

     .cardAvisoHome {
         height: auto;
         margin: 0 0 15px 0;
     }

     .cardCategoriaDestaque {
         height: auto;
         margin: 0 10px 20px 10px;
     }

     .duvidasFrequentesHp .alignTxt {
         padding: 0;
     }

     .gl-footer {
         background: transparent;
         padding: 13px;
         margin: 40px 0 0 0;
     }

     .duvidasFrequentesHp img {
         margin: 40px 0 0 40px;
         display: none;
     }

     .sliderHome .owl-carousel .owl-item {
         text-align: left;
     }

     .sliderHome .owl-carousel .owl-item img {
         transform-style: preserve-3d;
         width: 100% !important;
         height: auto;
     }

     .heroGrupoGeradores img {
         float: right;
         width: 100%;
         height: auto;
     }

     .listaGruposGeradores .attachment-post-thumbnail {
         width: 100%;
         height: auto;
         margin: 30px 0;
     }

     .listaGruposGeradores .ctas {
         display: grid;
         gap: 14px;
         width: 100%;
     }

     .listaGruposGeradores .btn-modal-descricao {
         width: 100%;
     }

     .listaGruposGeradores .whtasappBtn {
         width: 100%;
     }

     .cardEtapas {
         background: #ffffff;
         border-radius: 12px;
         padding: 32px 28px;
         height: auto;
         box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
         margin: 0 0 30px 0;
     }

     .heroGrupoGeradores {
         background-size: cover;
     }


     .listaGruposGeradores {
         padding: 10px 0 0 0;
     }

     .heroSubpages {
         background-size: cover;
     }

     .pqEscolherAGlobal .cardPQEscolher {
         height: auto;
         margin-bottom: 75px;
     }

     .manutencao img {
         margin: 0 0 0 10%;
         width: 80%;
         height: auto;
     }

     .cardProdutos img {
         width: 80%;
         height: auto;
         margin: 0 0 0 10%;
     }

     .slider-subtitle,
     .slider-title {
         text-align: left;
     }

     .cardCategoriaDestaque img {
         width: 80%;
         height: auto;
     }

     .fase-card a {
         display: block;
         width: 100%;
         padding: 10px 16px;
         background: #FCC10C;
         background: linear-gradient(90deg, rgba(252, 193, 12, 1) 0%, rgba(255, 234, 0, 1) 100%);
         color: #0d1f40;
         font-weight: 500;
         font-size: 15px;
         border-radius: 12px;
         text-decoration: none;
         text-align: center;
         transition: background 0.2s ease, transform 0.2s ease;
         margin-top: auto;
         line-height: 15px;
     }

     .fase-card h3 {
         font-size: 20px;
         font-weight: 600;
         height: 44px;
     }

     .fase-card {
         padding: 9px;
     }
 }


 /* =============================================
       HEADER MOBILE
    ============================================= */

 .header-global {
     position: relative;
 }

 /* Fundo amarelo + barra branca flutuante */
 .header-mobile {
     padding: 0 0 20px;
 }

 .header-mobile__bar {
     background: #fff;
     border-radius: 0 0 24px 24px;
     padding: 14px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
 }

 .header-mobile__logo {
     max-height: 44px;
 }

 /* Botão hamburguer com traços amarelos */
 .header-mobile__toggle {
     background: none;
     border: none;
     padding: 4px;
     cursor: pointer;
     display: flex;
     flex-direction: column;
     gap: 5px;
 }

 .header-mobile__toggle span {
     display: block;
     width: 28px;
     height: 4px;
     background: var(--AmareloGlobal, #FCC10C);
     border-radius: 4px;
     transition: all 0.3s ease;
 }

 /* Último traço menor (fiel ao print) */
 .header-mobile__toggle span:last-child {
     width: 20px;
 }

 /* =============================================
       DRAWER (menu lateral)
    ============================================= */
 .header-mobile__drawer {
     position: fixed;
     top: 0;
     left: -100%;
     width: 80%;
     max-width: 320px;
     height: 100vh;
     background: #fff;
     z-index: 9999;
     display: flex;
     flex-direction: column;
     padding: 0;
     transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
 }

 .header-mobile__drawer.aberto {
     left: 0;
 }

 .header-mobile__drawer-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 20px 20px;
     border-bottom: 2px solid var(--AmareloGlobal, #FCC10C);
 }

 .header-mobile__close {
     background: none;
     border: none;
     font-size: 1.4rem;
     color: var(--AzulGlobal, #051F38);
     cursor: pointer;
     padding: 4px;
 }

 /* Nav links */
 .header-mobile__drawer-nav {
     flex: 1;
     overflow-y: auto;
     padding: 16px 0;
 }

 .header-mobile__nav-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .header-mobile__nav-list li a {
     display: block;
     padding: 14px 24px;
     font-size: 1rem;
     font-weight: 600;
     color: var(--AzulGlobal, #051F38);
     text-decoration: none;
     border-bottom: 1px solid #f0f0f0;
     transition: background 0.2s, color 0.2s;
 }

 .header-mobile__nav-list li a:hover {
     background: var(--AmareloGlobal, #FCC10C);
     color: var(--AzulGlobal, #051F38);
 }

 /* Ícones sociais no drawer */
 .header-mobile__drawer-social {
     display: flex;
     gap: 16px;
     padding: 20px 24px;
     border-top: 1px solid #f0f0f0;
 }

 .header-mobile__drawer-social a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 38px;
     height: 38px;
     border-radius: 50%;
     background: var(--AzulGlobal, #051F38);
     color: #fff;
     font-size: 0.9rem;
     text-decoration: none;
     transition: background 0.2s;
 }

 .header-mobile__drawer-social a:hover {
     background: var(--AmareloGlobal, #FCC10C);
     color: var(--AzulGlobal, #051F38);
 }

 /* Overlay escuro */
 .header-mobile__overlay {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.45);
     z-index: 9998;
 }

 .header-mobile__overlay.aberto {
     display: block;
 }


 /* Sub-menu escondido por padrão */
 .header-mobile__nav-list .sub-menu {
     list-style: none;
     padding: 0;
     margin: 0;
     background: #f7f7f7;
 }

 .header-mobile__nav-list .sub-menu li a {
     padding-left: 36px;
     font-size: 0.92rem;
     font-weight: 500;
     color: var(--AzulGlobal, #051F38);
     border-bottom: 1px solid #ebebeb;
 }

 .header-mobile__nav-list .sub-menu li a:hover {
     background: var(--AmareloGlobal, #FCC10C);
 }

 /* Seta indicadora */
 .dropdown-seta {
     margin-left: auto;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 28px;
     height: 28px;
     border-radius: 6px;
     background: var(--AmareloGlobal, #FCC10C);
     color: var(--AzulGlobal, #051F38);
     font-size: 0.7rem;
     flex-shrink: 0;
     transition: transform 0.3s ease;
     pointer-events: none;
 }

 /* Seta rotaciona quando aberto */
 .menu-item-has-children.ativo .dropdown-seta {
     transform: rotate(180deg);
 }

 /* Link pai vira flex para alinhar seta */
 .header-mobile__nav-list .menu-item-has-children>a {
     display: flex;
     align-items: center;
 }





 /*********** BANNER COOKIES ****************/

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

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

.cookie-text h3 {
    color: var(--cinzaTextoMS);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: var(--cinzaMedioMS);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--vermelhoMS);
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

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

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-accept {
    background: #051F38;
    color: white;
}

.btn-accept:hover {
    background-color: #051F38;
    color: var(--AmareloDestaque);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(17, 15, 77, 0.3);
}

.btn-settings {
    background-color: var(--bgCinzaSuaveMS);
    color: var(--cinzaTextoMS);
}

.btn-settings:hover {
    background-color: #e0e0e0;
}

.demo-container {
    text-align: center;
    margin-top: 100px;
}

.demo-container h1 {
    color: var(--cinzaTextoMS);
    margin-bottom: 16px;
}

.demo-container button {
    padding: 12px 24px;
    background-color: var(--vermelhoMS);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.demo-container button:hover {
    background-color: #051F38;
    color: #FFF;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

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

