/*!
 * Start Bootstrap - Modern Business (https://startbootstrap.com/template-overviews/modern-business)
 * Copyright 2013-2019 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-logomodern-business-nav/blob/master/LICENSE)
 */

/* ===============================
   Fonts
=============================== */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* ===============================
   Global Colors.titulo-banner {
    font-size: 33px;
    font-weight: 600;
    margin: 0;
}
=============================== */
:root { 
  --background-color: #002E48;          /* Background do site */
  --default-color: #555555;             /* Cor padrão do texto */
  --heading-color: #002E48;             /* Cor de headings/subheadings */
  --accent-color: #036dda;              /* Cor de destaque (botões, links) */
  --surface-color: #ffffff;             /* Fundo de elementos box */
  --contrast-color: #ffffff;            /* Cor de contraste de texto */
}

/* ===============================
   Nav Menu Colors
=============================== */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);        /* Cor padrão dos links do menu */
  --nav-hover-color: #ffffff;                  /* Hover/ativo no menu */
  --nav-mobile-background-color: #ffffff;     /* Fundo menu mobile */
  --nav-dropdown-background-color: #ffffff;   /* Fundo dropdown */
  --nav-dropdown-color: #555555;              /* Cor links dropdown */
  --nav-dropdown-hover-color: #036dda;        /* Hover links dropdown */
}



body {
	font-family: "Montserrat", sans-serif;
}

/* ===============================
   Text Utilities
=============================== */
.text-primary {
  color: #002E48;
}

/* ===============================
   Scrollbar Customization
=============================== */
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-thumb {
  background: #002E48;
}

.sub-menu-info::-webkit-scrollbar {
  width: 8px;
  background: #F4F4F4;
}

.sub-menu-info::-webkit-scrollbar-thumb {
  background: #0d6efd;
}

/* ===============================
   Headings & Paragraphs
=============================== */
h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter {
  text-transform: uppercase;
}

p {
  font-size: 18px;
  color: #515151;
}

p::first-letter {
  text-transform: uppercase;
}

li {
  font-size: 18px;
  color: #515151;
}

/* ===============================
   Horizontal Rule (hr)
=============================== */
hr {
  border: solid 2px rgba(0, 90, 191, 0.9);
  opacity: 0.9; /* corrigido de 9 para valor válido */
  max-width: 100px;
  margin-left: 0;
  margin-bottom: 32px;
}
/* ===============================
   Abertura Menu
=============================== */


.navbar-light .navbar-nav .nav-link {
    color: #003149;
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    font-weight: 600;
    padding: 6px 13px;
    position: relative;
}

/* linha escondida inicialmente */
.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ee8f2e;
    transition: width 0.3s ease;
}

/* hover */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #ee8f2e !important;
}

/* animação da linha */
.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link:focus::after {
    width: 100%;
}


.bg-transparent {
    transition: all 0.3s ease;
    position: absolute;
    z-index: 999;
    width: 100%;
}

/* ===============================
   Submenu Info
=============================== */
.sub-menu-info {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  min-height: 40px;
  width: 250px;
  z-index: 7;
  background: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}

.sub-menu-info a {
  display: block;
  padding: 11px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: #002E48;
}

.sub-menu-info a:hover {
  color: #fff;
  transition: all 0.6s;
}

/* ===============================
   Ajuste do Dropdown
=============================== */
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: -133px;
  margin-top: 0.125rem;
  min-width: 325px;
  max-height: 400px;
  width: auto;
}

.dropdown-item {
  padding: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
  background-color: #002E48;
}

/*======================= Abertura WhatsApp =======================*/



/* ===============================
   Form Popup - Título
=============================== */
#form-popup h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}

#form-popup h3 strong {
  color: #03CC0B;
}

/* ===============================
   Form Popup - Container
=============================== */
#form-popup {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 320px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  z-index: 9999;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

#form-popup.hidden {
  display: none;
}

/* ===============================
   Form Popup - Inputs
=============================== */
#form-popup input,
#form-popup select,
#form-popup textarea,
#form-popup button {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  font-size: 14px;
  color: #999;
}

#form-popup::placeholder {
  color: #999;
}

#form-popup textarea {
  resize: vertical;
  min-height: 60px;
}

/* ===============================
   Form Popup - Button
=============================== */
#form-popup button {
  background: #002E48;
  color: #fff;
  border: 0;
  border-radius: 4px;
}

/* ===============================
   WhatsApp Button
=============================== */
#whatsapp-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#whatsapp-button i {
  z-index: 2;
}

/* Glow animado moderno */
#whatsapp-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse-ring 2s infinite;
  z-index: 1;
}

/* Hover */
#whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* ===============================
   Pulse Animation
=============================== */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ===============================
   WhatsApp Buttons Container
=============================== */
.whatsapp-buttons {
  position: fixed;
  bottom: 5%;
  left: 2%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* ===============================
   Botão do WhatsApp - Geral
=============================== */
.whatsapp-button {
  width: 65px;
  aspect-ratio: 1;
  background-color: #25d366; /* Cor padrão do WhatsApp */
  color: white;
  font-size: 1.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 1.5s infinite;
}

.whatsapp-button:hover {
  background-color: #128c7e;
}

.whatsapp-button i {
  margin: 0;
}

/* Texto de identificação (ex: SP ou BH) */
.whatsapp-button span {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(15, 42, 76, 0.7);
  color: white;
  font-size: 0.7em;
  padding: 1px 8px;
  border-radius: 16px 5px 14px 5px;
  margin: -8px -21px;
}

/* Container de múltiplos botões do WhatsApp */
.whatsapp-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whatsapp-buttons a {
  text-decoration: none;
  color: #fff;
  margin-bottom: 30px;
}

.whatsapp-buttons .fa {
  color: #fff !important;
}

/* ===============================
   Animação de pulso
=============================== */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ===============================
   Botão SEO
=============================== */
.btn-seo {
  background: #03CC0B;
  color: #fff !important;
  margin-left: 10px;
  margin-bottom: 10px;
  padding: 10px 27px !important;
  border-radius: 5px;
}

.btn-seo .fa {
  background: #03CC0B;
  color: #fff !important;
  border: 0;
  box-shadow: none;
}

/*======================= Back to Top Button (Modern) =======================*/
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 996;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    border-radius: 50%;

    background: rgba(0, 90, 191, 0.85);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 22px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);

    transition: all 0.35s ease;
}

/* Ícone */
.back-to-top i {
    pointer-events: none;
}

/* Estado ativo */
.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Hover com efeito moderno */
.back-to-top:hover {
    background: linear-gradient(135deg, #002E48, #00A3FF);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 90, 191, 0.4);
}

/* Clique (feedback) */
.back-to-top:active {
    transform: scale(0.95);
}

/* Suporte a modo escuro */
@media (prefers-color-scheme: dark) {
    .back-to-top {
        background: rgba(255, 255, 255, 0.1);
        color: #000;
    }

    .back-to-top:hover {
        background: linear-gradient(135deg, #1e90ff, #00c6ff);
		color: #fff;
    }
}

/* Acessibilidade: reduzir animação */
@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: none;
    }
}
/* =========================
   BREADCRUMB / CAMINHO
========================= */
#caminho {
    background: #002E48;
    padding: 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Remove espaçamento padrão */
.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Links */
.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #bbb;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.25s ease;
}

/* Hover moderno */
.breadcrumb a:hover {
    color: #fff; /* cor principal */
    transform: translateY(-1px);
}

/* Ícones */
.breadcrumb i {
    font-size: 14px;
    color: #fff;
}

/* Separador */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
}

/* Item ativo */
.breadcrumb-item.active {
    color: #bbb !important;
    font-weight: 600;
}


/* =========================
   RESPONSIVO
========================= */
@media (max-width: 576px) {
    #caminho {
        padding: 14px 10px;
    }

    .breadcrumb {
        font-size: 14px;
    }

    .breadcrumb a span {
        display: none; /* mostra só o ícone no mobile */
    }
}


/* =========================
   SLIDER
========================= */
.slider-wrapper {
    padding: 10px;
    border-radius: 16px;
    overflow: hidden;
}


/* =========================
   TITULOS DE SECTION
========================= */
section h2 {
    font-size: 2rem;
    letter-spacing: -0.5px;
}


/*<!--=======================// Fechamento Caminho //=======================-->*/
#carouselAtuacao {
	margin-bottom: 20px;
}


#carouselAtuacao img {
	width: 100%;
    height: 400px;
    object-fit: cover;
}
/*======================= Abertura Galeria =======================*/
/* =========================
   GALERIA
========================= */
#galeria {
    padding-bottom: 50px;
}

#galeria h1 {
    padding-top: 50px;
    color: #002E48;
}

#galeria button {
    padding: 13px;
    border: 0;
    background: #111;
    color: #fff;
}

/* Modal */
.modal-body {
    text-align: center !important;
}


/* =========================
   FILTROS
========================= */
.filter-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-filter {
    position: relative;
    cursor: pointer;

    padding: 10px 20px;
    border-radius: 50px;

    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;

    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    color: #002E48;
    border-color: #002E48;
    transform: translateY(-2px);
}

.btn-filter:active {
    transform: scale(0.95);
}

#galeria .btn-filter:hover {
    background-color: #FF7A00;
}

#galeria .btn-filter.active {
    background-color: #FF7A00!important; /* azul */
    color: #fff;
    border-color: #FF7A00!important;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* =========================
   CARDS DA GALERIA
========================= */
.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1px;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

/* Overlay */
.gallery-card .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	background: rgba(0,46,72, 0.7);
	
	
    opacity: 0;

    transition: 0.3s;
}

.gallery-card .overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.video-icon .bi {
    font-size: 68px;
	color:#003149!important;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  font-size: 60px;
  opacity: 0.85;
  pointer-events: none;

  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* opcional: efeito hover */
.gallery-card:hover .video-icon {
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.2s ease;
}

/* Hover */
.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .overlay {
    opacity: 1;
}


/* =========================
   PROJECTS / CARDS
========================= */
.projects-section {
    
}

.projects-title {
    margin-bottom: 20px;
    color: #1A1A1A;
    font-weight: 600;
}

.project-card {
    position: relative;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Faixa lateral */
.project-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 40px;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}




.produtos {
  background: #fff;
}

.produto-card img {
  height: 140px;
  object-fit: contain;
}

.produto-titulo {
  color: #1f6f8b;
  font-weight: 600;
  margin-bottom: 10px;
}

.produto-texto {
  font-size: 14px;
  color: #666;
  min-height: 80px;
}

.btn-prod {
  display: inline-block;
  background: #2f7e91;
  color: #fff;
  padding: 10px 25px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-prod:hover {
  background: #256675;
}




/* =========================
   CAROUSEL
========================= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0);
}

.carousel-indicators [data-bs-target] {
    background-color: #ccc;
}

.carousel-indicators .active {
    background-color: rgba(249,115,22,0.9);
}


/* =========================
   ACCORDION
========================= */
.accordion {
    max-width: 700px;
    font-family: "Poppins", sans-serif;
}

.accordion-button {
    color: #2D424C !important;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: #FF7A00 !important;
    box-shadow: inset 0 -1px 0 rgba(10, 35, 45, 0.95);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(0);
}


.accordion-item:not(:first-of-type) {
    border-top: 0;
    border-radius: 6px;
}


.saiba-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #012638;
    color: #fff !important;
    border-radius: 10px;
    font-size: 23px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

.saiba-btn:houver {
	background: #002E48!important;
}

/* =========================
   MENU LATERAL ACCORDION
========================= */

.men-lateral {
    padding: 0;
}

/* Card / Item */
.men-lateral .accordion-item {
    border: 0;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0;
    background: transparent;
}

/* Header */
.men-lateral .accordion-header {
    padding: 12px 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Link principal */
.men-lateral .accordion-header a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
    flex: 1;
}

.men-lateral .accordion-header a:hover {
    color: #ee8f2e;
}

/* Botão + */
.men-lateral .accordion-button {
    width: 28px;
    height: 28px;
    padding: 0;
    background: #f5f5f5;
    border-radius: 4px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    box-shadow: none;
}

.men-lateral .accordion-button:focus {
    box-shadow: none;
}

.men-lateral .accordion-button::after {
    display: none; /* remove seta padrão Bootstrap */
}

/* Conteúdo */
.men-lateral .accordion-body {
    padding: 8px 15px 12px;
    background: #fafafa;
}

/* Lista */
.men-lateral .accordion-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.men-lateral .accordion-body li {
    margin: 6px 0;
}

/* Links internos */
.men-lateral .accordion-body a {
    text-decoration: none;
    font-size: 13px;
    color: #555;
    transition: 0.2s;
}

.men-lateral .accordion-body a:hover {
    color: #ee8f2e;
    padding-left: 4px;
}

/* Estado aberto (highlight opcional) */
.men-lateral .accordion-collapse.show + .accordion-header,
.men-lateral .accordion-item:has(.show) .accordion-header {
    background: background: rgba(0,0,0, 0.2);;
}

/*======================= Fechamento Galeria =======================*/
/* =========================
   DIFERENCIAIS SUPERIOR
========================= */
.dife-superior {
    padding-bottom: 50px;
}

.dife-superior .card {
    border: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.30);
}

.dife-superior .card-body {
    background-color: #111;
}

.dife-superior .card-title a {
    color: #fff;
    font-size: 18px;
}


/* =========================
   SOBRE HOME
========================= */
.sobre-home h1 {
    font-size: 20px;
}

.sobre-home h1 strong {
    font-size: 32px;
    color: var(--heading-color);
}

/* ⚠️ CORREÇÃO IMPORTANTE AQUI */
.sobre-home p,
.sobre-home a {
    color: #999;
    font-size: 18px;
}

.sobre-home li,
.sobre-home li a {
    color: #999;
    font-size: 18px;
}


/* =========================
   ERROR
========================= */
.error-box .bi {
    color: red;
}

/*======================= Slider Logos =======================*/
/* =========================
   LOGOS / MARCAS
========================= */
#logos {}

#logos .section-padding {
    padding: 17px 0;
}

#logos .brand-carousel {}

#logos .owl-dots {
    text-align: center;
    margin-top: 1px;
    margin-bottom: 1%;
    padding-top: 41px;
}

#logos .owl-dot {
    display: inline-block;
    width: 15px !important;
    height: 15px !important;

    margin: 0 5px;
    border-radius: 50%;

    background-color: #878787 !important;
    opacity: 0.8;
}

#logos .owl-dot.active {
    background-color: #002E48 !important;
}

#logos .owl-carousel .owl-item img {
    display: block;
    width: auto !important;
    height: 80px;
    margin: 0 auto;
}


/* ===================================================
   CLIENTES
=================================================== */

#clientes-page{
    position: relative;
    padding: 90px 0;
    background:
    linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

/* TOPO */
.clientes-topo{
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.clientes-topo .mini-title{
    display: inline-block;
    background: rgba(0,49,73,.08);
    color: #003149;

    padding: 10px 22px;
    border-radius: 50px;

    font-size: 11pt;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.clientes-topo h1{
    position: relative;

    color: #003149;

    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;

    margin-bottom: 25px;
}

.clientes-topo h1::after{
    content: '';

    width: 90px;
    height: 4px;

    background: #f7b500;

    display: block;
    margin: 20px auto 0;

    border-radius: 50px;
}

.clientes-topo p{
    color: #6b7280;

    font-size: 13pt;
    line-height: 1.8;

    margin: 0;
}

/* GRID */
.logos-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* CARD */
.single-logo{
    position: relative;

    background: #fff;

    border-radius: 18px;

    padding: 35px;

    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0,0,0,.05);

    transition: .4s ease;
}

.single-logo::before{
    content: '';

    position: absolute;
    inset: 0;

    border-radius: 18px;

    background:
    linear-gradient(135deg,
    rgba(0,49,73,.03),
    rgba(247,181,0,.03));

    opacity: 0;

    transition: .4s;
}

.single-logo:hover{
    transform: translateY(-8px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.single-logo:hover::before{
    opacity: 1;
}

.single-logo img{
    position: relative;
    z-index: 2;

    max-width: 100%;
    max-height: 75px;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: .75;

    transition: .4s ease;
}

.single-logo:hover img{
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

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

    #clientes-page{
        padding: 70px 0;
    }

    .logos-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .clientes-topo h1{
        font-size: 38px;
    }

}

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

    .logos-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .single-logo{
        min-height: 110px;
        padding: 20px;
    }

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

    .clientes-topo{
        margin-bottom: 45px;
    }

    .clientes-topo h1{
        font-size: 30px;
    }

    .clientes-topo p{
        font-size: 11pt;
    }

}

/* =========================
   FAQ
========================= */
.faq {}

.faq hr {
    float: left;
    width: 200px;
}

.faq .accordion {
    padding-top: 50px;
}


/* =========================
   SERVIÇOS - CAROUSEL
========================= */
.servicos-cards {
    padding: 50px;
}

.servicos-cards h4 {
    text-align: center;
    color: var(--heading-color);
}

.servicos-cards hr {
    max-width: 100px;
    margin: 0 auto;

    border: 2px solid rgba(0, 90, 191, 0.9);
    opacity: 1; /* corrigido (era 9) */
}

.servicos-cards .carousel {
    padding-top: 30px;
}


/* CARD GERAL */
.servico-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

/* CARD HOVER - LEVE ELEVAÇÃO */
.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* IMAGEM COM ZOOM SUAVE */
.servico-card .position-relative img {
    transition: transform 0.5s ease;
}

.servico-card:hover .position-relative img {
    transform: scale(1.1);
}

/* OVERLAY BRILHANTE */
.servico-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 90, 191, 0.2);
    transition: background 0.4s ease;
}

.servico-card:hover .overlay {
    background: rgba(0, 90, 191, 0.35);
}

/* ICONE E TEXTO ANIMADOS */
.servico-card .card-body i {
    transition: transform 0.4s ease, color 0.4s ease;
}

.servico-card:hover .card-body i {
    transform: scale(1.2) rotate(10deg);
    color: #003F8F; /* Tom mais escuro do azul */
}

.servico-card .card-body h5 {
    transition: color 0.4s ease;
}

.servico-card:hover .card-body h5 {
    color: #002E48;
}


/* =========================
   CTA (CALL TO ACTION)
========================= */
#cta {
    position: relative;
    padding: 106px 0;

    font-size: 16px;
    color: #fff;
    text-align: left;

    background-size: cover;
    /* background: linear-gradient(...), url(...) fixed center center; */
}

#cta strong {
    font-size: 22px;
}

#cta .btn {
    width: auto;
    padding: 10px 44px;

    background: #fff;
    border: 0;
}


/* Inputs */
#cta input,
#cta select,
#cta textarea {
    width: 100%;
    height: 44px;

    padding: 4px 9px;
    margin-right: 8px;

    font-size: 14px;

    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

#cta input::placeholder,
#cta textarea::placeholder {
    color: #999;
    font-size: 14px;
    font-family: "Heebo", sans-serif;
}

#cta select {
    margin-bottom: 16px;
    color: #777;
    font-family: "Heebo", sans-serif;
}

#cta textarea {
    min-height: 180px;
    padding: 12px;

    color: #000;
    border-bottom: 1px solid #003056;
}


/* Botão */
#cta button {
    width: 230px;
    height: 50px;

    margin-top: 10px;
    margin-left: 12px;

    border: 0;
    border-radius: 16px;

    background: #002E48 !important;
    color: #fff !important;

    font-size: 16px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    text-transform: uppercase;

    outline: none;
}


/* Formulário */
.formulario-cta {
    padding: 44px 29px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.5);
}

.formulario-cta h5 {
    margin-bottom: 50px;

    font-size: 32px;
    text-align: center;
    text-transform: uppercase;

    color: var(--heading-color);
}


/* Contatos */
.contatos-cta h4 {
    margin-top: 51px;
    margin-bottom: 50px;

    font-size: 34px;
    font-weight: 600;
    font-family: "Arial", serif;

    color: #fff;
}

.contatos-cta p,
.contatos-cta a {
    color: #fff;
}


/* =========================
   CTA 2
========================= */
#cta2 {
    position: relative;
    padding: 106px 0;
    text-align: center;

    font-size: 16px;
    color: #fff;

    background: linear-gradient(
            rgba(40, 58, 90, 0.3),
            rgba(0, 0, 0, 0.5)
        ),
        url(../image/cta.jpg) fixed center center;
    background-size: cover;
}

#cta2 strong {
    font-size: 22px;
}

#cta2 .btn {
    width: auto;
    padding: 10px 44px;
    background: #fff;
    border: 0;
}


/* =========================
   FORMULÁRIO CTA
========================= */
.cta-formulario {}

.cta-formulario span {
    color: #717171;
}

.cta-formulario h4 {
    color: #000;
}

.cta-formulario .bg-form {
    font-family: "Montserrat", sans-serif;
}

.bg-form .bi a {
    color: #003149 !important;
}




.cta-formulario .text-warning {
    color: #F7931E !important;
}



/* =========================
   REDES SOCIAIS
========================= */
.jssocials-shares {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    text-align: center;
}

.jssocials-share {
    display: inline-block;
    vertical-align: top;
    margin: 0.3em 0.6em 0.3em 0;
}

.jssocials-shares p {
    font-size: 12px;
    margin: 11px 0 0 0;
    color: #444;
    font-weight: bold;
}

.jssocials-share-link {
    padding: 0.5em 0.6em;
    color: #fff !important;
    transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
}

.jssocials-share-link:hover {
    color: #fff;
}

/* WhatsApp */
.jssocials-share-whatsapp .jssocials-share-link {
    background: #25D366;
    border-radius: 5px;
    padding: 8px 10.5px;
}

/* LinkedIn */
.jssocials-share-linkdin .jssocials-share-link {
    background: #0077B0;
    border-radius: 5px;
    padding: 8px 10.5px;
}

/* Facebook */
.jssocials-share-facebook .jssocials-share-link {
    background: #3b5998;
    border-radius: 5px;
    padding: 8px 10.5px;
}

/* Instagram */
.jssocials-share-instagram .jssocials-share-link {
    background: url(../image/bg-insta.png);
    background-size: cover;
    border-radius: 5px;
    padding: 8px 10.5px;
}

/* =========================
   CTA FOOTER
========================= */
.cta-footer {
    background: #212529;
    font-family: "Poppins", sans-serif;
    padding: 22px;
    text-align: center;
}

/* =========================
   TITULO E TEXTO
========================= */
.cta-footer h5 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 600 !important;
    color: #fff;
    text-align: left;
}

.cta-footer p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

/* =========================
   BOTÃO
========================= */
.cta-footer .btn {
    position: relative;
    overflow: hidden;

    padding: 1.5rem 1.5rem;
    border: none;
    border-radius: 4px;

    background-color: #002E48 !important;
    transition: all 0.3s ease;
}

/* Hover suave */
.cta-footer .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 160, 170, 0.35);
}

/* Brilho sutil */
.cta-footer .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.6s;
}

.cta-footer .btn:hover::after {
    left: 100%;
}

/* =========================
   ICONE E POINTE
========================= */
.cta-footer .icone {
    width: 40px;
    height: 70px;
    border: 2px solid #002E48;
    border-radius: 8px;
}

.pointe {
    width: 8px;
    height: 8px;
    background-color: #002E48;
    border-radius: 50%;
}

/*<!--=======================// Abertura Footer //=======================-->*/
/* =========================
   FOOTER
========================= */
footer {
    background-color: #002E48;
    color: #fff;
    padding: 20px 0 0 0;
    font-family: "Poppins", sans-serif;
}

/* =========================
   FOOTER TOP
========================= */
.footer-top {
    padding: 50px;
}

.logo-footer {
    max-width: 200px;
    width: 100%;
    margin-bottom: 20px;
}

footer h3,
footer h4 {
    color: #fff;
}

footer h4 {
    font-size: 28px;
    margin-bottom: 26px;
}

footer p,
footer a {
    font-size: 18px;
    color: #fff;
}

footer a:hover {
    color: #FF7A00;
    transition: color 0.3s ease-in-out;
}

/* =========================
   REDES SOCIAIS
========================= */
footer .sociais .fa-brands,
footer .sociais .fab {
    background: #fff;
    padding: 12px;
    font-size: 18px;
    margin-right: 9px;
    color: #002E48;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.30);
}

.fa-solid,
.fas {
    font-size: 16px !important;
}



.footer {
  background: #002E48;
  color: #fff;
  padding-top: 60px;
}

.footer-text {
  color: #cfd8dc;
  line-height: 1.6;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #FF7A00;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #FF7A00!important;
}

.footer-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-info .icon {
  background: #ff7a00;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.footer-info i {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 20px 0;
  color: #cfd8dc;
  font-size: 14px;
}


.footer strong {
	color: #FF7A00
}


/* =========================
   LISTAS
========================= */
footer ul {
    list-style: none;
    padding: 0;
}

/* =========================
   COPYRIGHT / ASSINATURA
========================= */
.copyright {
    color: #999;
    font-size: 15px;
	
}

#assinatura {
    width: 100%;
    min-height: 50px;
    background: #002E48;
	border-top: solid 1px rgba(255,255,255,0.5);	
}





#assinatura a {
    color: #fff;
    font-size: 15px;
}

#assinatura strong {
    color: #FF7A00;
}

.assinatura-footer {
    color: #fff;
    margin: auto -15px;
}

/* =========================
   FORMULÁRIO LATERAL
========================= */
.formulario-lateral {
    background: #002E48;
    color: #fff;
    padding: 20px 0;
}

footer input {
    border: 0;
    border-radius: 4px;
    height: 38px;
    padding: 12px 15px;
    font-size: 14px;
}

footer button {
    width: 100px;
    height: 50px;
    background: #002E48;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
}

/* =========================
   CONTATO / FOOTER CONTACT
========================= */
.footer-contact {
    padding: 46px 31px;
}

.footer-contact p {
    text-align: left;
}

/*======================= Formularios =======================*/
/* =========================
   INPUTS GLOBAIS
========================= */
input,
select,
textarea {
    width: 100%;
    margin-bottom: 15px;
    overflow: visible;
    outline: none;
}

/* =========================
   FORMULÁRIO DE CONTATO
========================= */
#formulario-contato {
    text-align: left;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
}

#formulario-contato span {
    color: #2D2D2D;
    text-align: left;
    padding-bottom: 10px;
}

#formulario-contato input,
#formulario-contato select,
#formulario-contato textarea {
    width: 100%;
    padding: 4px 9px;
    border: 1px solid #002E48;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

#formulario-contato input {
    height: 35px;
}

#formulario-contato select {
    height: 44px;
    margin-bottom: 20px;
}

#formulario-contato textarea {
    min-height: 180px;
    color: #000;
}

#formulario-contato input::placeholder,
#formulario-contato textarea::placeholder {
    color: #999;
}

#formulario-contato button {
    width: 200px;
    height: 40px;
    background: #002E48;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
}

#formulario-contato strong {
    color: red;
}

.check {
    max-width: 50px;
}

/* =========================
   CTA FULL
========================= */
.cta-full {
    position: relative;
    width: 100%;
    padding: 70px 20px;
    color: #fff;
    background: linear-gradient(135deg, #002E48, #003f8a);
    overflow: hidden;
}

/* Efeito decorativo */
.cta-full::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* Ícone CTA */
.icone-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;
    font-size: 30px;
    color: #fff;

    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;

    transition: 0.3s;
}

.icone-cta:hover {
    transform: scale(1.05) rotate(-5deg);
}

/* Título e subtítulo */
.cta-title {
    font-size: 30px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 17px;
    opacity: 0.9;
}

/* Botão CTA full */
.btn-cta-full {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;

    background: #fff;
    color: #002E48;
    transition: 0.3s;
}

.btn-cta-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #002E48;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
    .cta-title {
        font-size: 22px;
    }

    .icone-cta {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
/*======================= Cookies =======================*/
/* =========================
   COOKIE BAR
========================= */
.cookie-actions {
	
}

.cookie-actions .btn-primary {
    background: #003149;

}

.cookie-actions .btn-outline {
    background: #fff;
    border: 2px solid #003149;
    color: #003149;
}

.cookie-actions .btn-primary:hover {
    background: #FF901D;
	transition: all 0.9s;
}


#pjAcceptCookieBar {
    background: #002E48 !important;
}

#pjAcceptCookieBar .pjAcceptCookieBarBtn {}

#pjAcceptCookieBar .pjAcceptCookieBarBtn:after {
    border-bottom: 4px solid #14428d;
    background: rgba(20, 66, 141, 0.3);
}

/* =========================
   DEPOIMENTOS / CAROUSEL
========================= */
#depoimentos .carousel-control-next {
    width: 3%;
    height: 15%;
    top: 50%;
    background: rgba(0, 0, 0, 0.8);
}

#depoimentos .card {
    width: 18rem;
    border: 0;
}

#depoimentos .card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =========================
   TEAM / EQUIPE
========================= */
.team .member {
    position: relative;
    height: 100%;
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
}

.team .member:hover {
    transform: translateY(-10px);
}

/* Foto do membro */
.team .member .pic {
    width: 180px;
    border-radius: 50%;
    overflow: hidden;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

/* Informações do membro */
.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #37517e;
}

.team .member span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 10px;
    position: relative;
}

.team .member span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

/* Redes sociais */
.team .member .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 57px;
    margin-top: 12px;
}

.team .member .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background: #eff2f8;
    transition: ease-in-out 0.3s;
}

.team .member .social a i {
    font-size: 16px !important;
    color: #37517e;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #47b2e4;
}

.team .member .social a:hover i {
    color: #fff;
}

.team .member .social a + a {
    margin-left: 8px;
}



.text-warning {
	color: #F7931E!important;
	font-family: "Montserrat", sans-serif;
}


.sbre-section p {
	
}
/*<!--=======================// Fechamento Depoimentos //=======================-->*/
/*<!--=======================// Abertura Carousel Logos //=======================-->*/
/* =========================
   CAROUSEL LOGOS
========================= */
#carousel-logos .carousel-caption {
    bottom: 90px;
}

#carousel-logos .carousel-item {
    height: auto;
}

#carousel-logos .logos {
    width: 100%;
    height: 120px;
}

#arrow-left,
#arrow-right {
    width: 50px;
    height: 50px;
    margin-top: 50px;
    background: #000;
}

/* =========================
   LINKS GERAIS
========================= */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* =========================
   MENU LATERAL
========================= */
#menu-lateral .btn {
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#menu-lateral .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#menu-lateral .btn-success {
    background: #25D366;
    border: none;
}

#menu-lateral .btn-success:hover {
    background: #1ebe5d;
}

#menu-lateral .list-group-item {
    font-size: 0.95rem !important;
    color: #444;
    transition: 0.2s;
}

#menu-lateral .list-group-item:hover {
    color: #d40000;
    padding-left: 5px;
}

#menu-lateral .btn-custom {
    background: #002E48;
    color: #fff !important;
}

/* =========================
   IMAGENS CTA / SEO
========================= */
.img-cta {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    float: left;
    margin-right: 24px;
    margin-bottom: 24px;
}

.img-seo {
    width: 100%;
    display: block;
    transition: 0.3s;
}




/* Hover leve na imagem */
.img-cta:hover .img-seo {
    filter: brightness(0.85);
}

.sublateral {
    height: 100vh;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* =========================
   BOTÃO FIXO NA BASE
========================= */
.cta-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    text-align: center;
    padding: 16px;

    font-size: 18px;
    font-weight: 600;

    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.cta-bottom:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    letter-spacing: 0.5px;
    color: #fff;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
    .cta-bottom {
        font-size: 16px;
        padding: 14px;
    }
}

/*<!--=======================// GERAL //=======================-->*/
/*<!--=======================// HEADER TOPO //=======================-->*/
/* =========================
   TOPO / CONTATOS
========================= */
.contatos-topo a {
    color: #fff;
    text-decoration: none;
}

.topbar {
    width: 100%;
    min-height: 50px;
    background-color: var(--background-color);
    line-height: 44px;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
}

.topbar a {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
}


.background-topo {
    background: #fff;
    z-index: 999;
}

/* Ícones */
.contatos-topo .fa {
    padding: 1px;
    font-size: 14px;
    margin-left: 10px;
}

.sociais .fa-brands,
.fab {
    padding: 13px;
    font-size: 14px;
}

/* =========================
   FOOTER LINKS
========================= */
.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

/*<!--=======================// FOOTER //=======================-->*/
/*<!--=======================// HOME //=======================-->*/
/* =========================
   HOME
========================= */
#home {}

#home h1 {}

#home h2 {}

#home p {
    color: #767676;
    font-size: 16px;
}

#home p strong {
    color: #002E48;
}

#home li {
    color: #767676;
    font-size: 16px;
}


.text-muted {
    color: var(--bs-secondary-color) !important;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    opacity: 0.8;
	font-size: 18px;
}


.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  color: white;
  font-size: 20px;
}


.product-card {
	font-family: "Inter", sans-serif;
	
}

.product-card p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.product-card img {
    height: 180px;
    object-fit: contain;
    width: 100%;
    background: #fff;
}

.product-card h5 {
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.cta-section h2 {
    font-size: 46px;
    font-family: "Montserrat", sans-serif;
}


.img-home {
	width: 100%;
	height: 240px;
	object-fit: cover;	
}


.produtos .card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.produtos .card {
  border-radius: 12px;
  overflow: hidden;
}

.produtos .card-body {
  padding: 1.5rem;
}




.bg-segmento {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url(../image/bg-sobre.png) center / cover no-repeat;
    width: 100%;
    padding-top: 126px !important;
    min-height: 850px;
}


.bg-segmento .card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.bg-segmento .card {
  border-radius: 12px;
  overflow: hidden;
}

.bg-segmento .card-body {
  padding: 1.5rem;
}


.faq-section {
  background: #f8f9fa;
}


.faq-section .accordion {
    max-width: 700px;
    font-family: "Poppins", sans-serif;
    margin-left: -83px;
}

.custom-accordion .accordion-button {
  background: #fff;
  border-radius: 10px !important;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 1.2rem;
}

.custom-accordion .accordion-button::before {
  content: "←";
  background: #ff7a00;
  color: #fff;
  font-weight: bold;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #000 !important;
    background: #fff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.0);
}

.custom-accordion .accordion-body {
    color: #6c757d;
    padding: 1rem 1.5rem 1.5rem 3.5rem;
    font-family: "Inter", sans-serif;
}


.img-page {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}

.img-page-servicos {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 6px;
}

.cta-section {
  background: #ff7a00;
}


.cta-section h2 {
    font-family: "Montserrat", sans-serif;
}


.cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #012638;
    color: #fff;
    border-radius: 10px;
    font-size: 23px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: "Montserrat", sans-serif;
    height: 85px;
}

.cta-section .cta-btn:hover {
  background: #012638;
  transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.produtos h4 {
    color: #003149;
}


.produtos a {
    color: #ff7a00;
}

.card-produto {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
}

.card-produto img {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 5px;
}

.card-produto h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-produto p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.card-produto a {
  display: inline-block;
  margin-top: 15px;
  color: #003149;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.card-produto a:hover {
  color: #005b85;
  padding-left: 5px;
}

/* Hover bonito */
.card-produto:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}



/* CARD PRINCIPAL */
.menu-card {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
  padding: 20px;
  height: 100%;
  transition: all 0.25s ease;
}

.menu-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* TÍTULO */
.menu-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* LISTA DE LINKS */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-list a {
  text-decoration: none;
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.menu-list a:hover {
  background: #f3f4f6;
  color: #111827;
  padding-left: 12px;
}

/* ÍCONES */
.menu-list i {
    color: #FF7A00;
    font-size: 16px;
}

/* TEXTO SOBRE */
.menu-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}


.product-zoom {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.product-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-zoom:hover .product-img {
    transform: scale(1.8);
    cursor: zoom-in;
}



.card-artigo {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
	font-family: "Montserrat", sans-serif;
}

/* Hover com efeito premium */
.card-artigo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-artigo .card-body {
	background: #003149;
}

/* Imagem */
.card-artigo img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}



/* Conteúdo */
.card-artigo .card-body {
    padding: 20px;
}

/* Título */
.card-artigo .card-title a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover no título */
.card-artigo .card-title a:hover {
    color: #ff3b3b;
}

/* Espaçamento melhor */


/* ===== LAYOUT PRINCIPAL ===== */
.alinhar-pg-padrao {
   
    align-items: center;
}



.text-box {
    border-radius: 10px;
}

#sobre-nos p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
}


/* ===== IMAGEM ===== */
.img-page-produtos {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top; /* padrão */
}

.img-page-produtos:hover {
    transform: scale(1.05);
}

/* ===== TEXTO ===== */
.text-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

/* ===== MENU LATERAL ===== */
.menu-produtos {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-produtos a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #003149;
    background: #f1f6f8;
    padding: 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.menu-produtos a img {
    width: 18px;
}

.menu-produtos a:hover {
    background: #2FA0AA;
    color: #fff;
    transform: translateX(5px);
}

/* ===== HR ===== */
.hr-produtos {
    margin: 50px 0;
    border: none;
    height: 1px;
    background: #e5e5e5;
}


/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .alinhar-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .img-page-produtos {
        max-width: 100%;
    }

    .menu-produtos {
        margin-top: 30px;
    }
}
/* =========================
   SEÇÃO NÚMEROS / STATS
========================= */
.numeros {
    width: 100%;
    margin-top: 50px;
    float: left;
    background: #FFFFFF;
}

.numeros .col-lg-2 {
    min-width: 252px;
}

.number {
    background: #01005E;
    padding: 50px;
}

.number p {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.number h4 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 900;
}

.numeros h4 {
    color: #01005E;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    text-align: left;
    font-size: 24px;
    padding-left: 14px;
}

.numeros .card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease;
    padding: 36px 10px !important;
    background: none;
}

.numeros .card:hover {
    transform: scale(1.02);
}

.numeros span {
    position: absolute;
    top: 29px;
    margin-left: 11%;
    font-size: 42px;
    font-weight: 900;
    color: var(--heading-color);
}

.numeros .counter {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 900;
    font-family: "Inter", sans-serif;
}

.numeros .label {
    font-size: 17px;
    color: var(--heading-color);
    font-family: "Jost", sans-serif;
}

.numeros .col-md-4 {
    max-width: 302px;
}

.numeros .col-md-2 {
    width: 244px;
}

/* =========================
   TOPBAR
========================= */
.topbar {
    background: #111;
    color: #ccc;
    font-size: 0.9rem;
}

.topbar a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.topbar a:hover {
    color: #fff;
}

/* WhatsApp destaque */
.destaque-whats {
    color: #25D366 !important;
    font-weight: 600;
}

/* =========================
   REDES SOCIAIS
========================= */
.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #222;
    color: #fff;
    transition: 0.3s;
}

.social-icon:hover {
    background: #d40000;
    transform: translateY(-2px);
}

/* =========================
   NAVBAR
========================= */
.navbar {
    transition: all 0.3s ease;
}

.navbar .btn-danger {
    background: #d40000;
    border: none;
}

.navbar .btn-danger:hover {
    background: #a80000;
}

/* =========================
   LOGO
========================= */
.logo {
    max-height: 69px;
	padding: 15px;
    max-width: 220px;
}

/* =========================
   CAROUSEL ITEM
========================= */
.carousel-item {
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.fixed {
	background: rgba(255,255,255,0.00);
}
/* =========================
   HERO / BANNER
========================= */
#banner {
    position: relative;
    
	background: url("../image/banner/banner1.gif") center top / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.0); /* ajuste aqui */
  z-index: 1;
}

/* FADE BRANCO IGUAL DA IMAGEM */
#banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #f5f7fa 35%,
        rgba(245, 247, 250, 0.95) 45%,
        rgba(245, 247, 250, 0.7) 55%,
        rgba(245, 247, 250, 0) 70%
    );
    z-index: 1;
}

/* CONTAINER */
.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* TEXTO */
.banner-text {
    font-family: "Montserrat", sans-serif;
}

.banner-tag {
    display: block;
    color: #0f2a3d;
    margin-bottom: 15px;
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
}

.banner-text h1 span {
    font-size: 43px;
}

.banner-text h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #0f2a3d;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    margin-top: -20px;
}

.banner-text p {
    color: #0e2a3a;
    font-size: 28px;
    margin-bottom: 30px;
    font-family: "Montserrat", sans-serif;
	max-width: 900px;
}

/* BOTÃO IGUAL AO DESIGN */
.btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF901D;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
}

.btn-banner:hover {
    transform: translateY(-2px);
}

.btn-banner .btn-icon {
    margin-left: 42px;
    margin-right: -22px;
    background: #0b2c4d;
    width: 50px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CARD (AGORA POSICIONADO NO BANNER, NÃO NA IMAGEM) */
.banner-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(15, 42, 61, 0.5);
    padding: 20px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    max-width: 500px;
    backdrop-filter: blur(6px);
    z-index: 3;
    font-family: "Montserrat", sans-serif;
}

.banner-card img {
    width: 200px;
    height: auto;
    object-fit: cover;
    background: #fff;
    padding: 45px 10px;
}

.banner-card span {
    font-size: 18px;
    opacity: 0.8;
}

.banner-card strong {
    display: block;
    font-size: 27px;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
}

.banner-card p {
    font-size: 18px;
	
    opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-card {
        right: 0;
        bottom: 0;
        margin-top: 30px;
    }
}

/*#banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(120deg, rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
        url("../image/banner/1.jpg") center/cover no-repeat;
}

/* Glow sutil 
#banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,59,59,0.2), transparent 40%);
}


#banner h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

#banner h1 span {
    color: #002E48; 
}


#banner p {
    color: #ddd;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 35px;
}*/


/* Banner interno */
.banner-interno {
  position: relative;
  height: 260px;
  background: linear-gradient(120deg, #000c14 0%, #003149 60%, #004d73 100%);
  color: #fff;
  overflow: hidden;
}

/* Efeito decorativo lado direito */
.banner-interno::after {
	content: "SMI";
	position: absolute;
	right: 60px;
	bottom: 20px;
	font-size: 90px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.05);
	font-family: "Montserrat", sans-serif;
	letter-spacing: 4px;
	white-space: nowrap;
}

/* Breadcrumb */
.breadcrumb-custom {
  font-size: 14px;
}

.breadcrumb-custom a {
  color: #cfd8ff;
  text-decoration: none;
}

.breadcrumb-custom span {
  margin: 0 6px;
  color: #cfd8ff;
}

.breadcrumb-custom strong {
  color: #fff;
}

/* Título */
.titulo-banner {
    font-size: 33px;
    font-weight: 600;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .titulo-banner {
    font-size: 36px;
  }

  .banner-interno::after {
    font-size: 60px;
    right: 20px;
  }
}


/* =========================
   BOTÃO MODERNO HERO
========================= */
.btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF901D;
    color: #fff;
    padding: 5px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
/* Hover bonito */
.btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    color: #fff;
}

/* Ícone dentro do botão */
.btn-banner i {
    font-size: 18px;
}

/* =========================
   BOTÃO SAIBA MAIS
========================= */
.botao-saiba {
    background-color: var(--background-color);
    text-align: center;
    color: #fff;
    animation-name: color;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    padding: 12px 34px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.3);
}

.botao-saiba:hover {
    color: #fff;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
    #banner h1 {
        font-size: 34px;
    }

    #banner p {
        font-size: 16px;
    }

    .btn-banner {
        padding: 12px 22px;
        font-size: 14px;
    }
}


/* =========================
   BG-SUB / SEÇÃO DE DESTAQUE
========================= */
.bg-sub {
    background: #0D0D0D;
}

.bg-sub h5 {
    color: #002E48;
    font-weight: 600 !important;
    font-family: "Poppins", sans-serif;
}

.bg-sub p {
    font-family: "Roboto", sans-serif;
    font-weight: 300 !important;
    font-size: 16px;
}

.bg-sub .bi {
    color: #fff !important;
}

.text-success {
    color: #fff !important;
}

/* Botão warning customizado */
.btn-warning {
    color: #fff;
    background-color: rgba(0,90,191,1);
    border-color: rgba(0,90,191,1);
}

.btn-warning:hover {
    color: #000;
    background-color: rgba(0,90,191,0.8);
    border-color: rgba(0,90,191,0.8);
    transition: all 0.9s;
}

/* BG interno com padding */
.bg-sub .bg-warning {
    background-color: #002E48 !important;
    padding: 40px;
}

/* =========================
   BANNER VÍDEO
========================= */
.banner-video {
    position: relative;
    width: 100%;
    height: 100vh; /* ocupa a tela toda */
    overflow: hidden;
}

/* Faz o vídeo cobrir 100% igual background-size: cover */
.banner-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* proporção 16:9 */
    min-height: 100vh;
    min-width: 177.77vh; /* garante cobertura total */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Overlay escuro opcional */
.banner-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

/* Overlay escuro elegante com blur */
.banner-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Texto centralizado */
.banner-video .texto {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.banner-video h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
}

.banner-video h1 span {
    color: #002E48; /* azul da marca */
    font-weight: 700;
}

.banner-video h1 strong {
    display: block;
    font-size: 22px;
    font-weight: 400;
    color: #ddd;
    margin-top: 10px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
    .banner-video {
        height: 60vh;
    }

    .banner-video h1 {
        font-size: 28px;
    }

    .banner-video h1 strong {
        font-size: 16px;
    }
}
/* =========================
   BANNER ROTATIVO
========================= */
#banner-rotativo .carousel-inner {
    max-height: 750px;
}

#banner-rotativo .carousel-item {
    min-height: 650px;
}

#banner-rotativo img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

/* CAPTION */
#banner-rotativo .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    top: 72%;
    max-height: 128px;
}

#banner-rotativo .carousel-caption h5 {
    font-size: 32px;
}

/* CONTROLES */
#banner-rotativo .carousel-control-next,
#banner-rotativo .carousel-control-prev {
    width: 40px;
    height: 60px;
    top: 50%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
}

#banner-rotativo .carousel-dark .carousel-control-next-icon,
#banner-rotativo .carousel-dark .carousel-control-prev-icon {
    filter: invert(0) grayscale(100);
}

/* INDICADORES */
#banner-rotativo .carousel-indicators {
    height: 5px;
    margin-bottom: 30px;
}

#banner-rotativo .carousel-indicators .active {
    background-color: #002E48;
}

/* =========================
   ARROWS GERAIS
========================= */
.carousel-control-next,
.carousel-control-prev {
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.8);
    top: 50% !important;
}

.box-cards {
    padding: 0px 21px;
    font-family: "Montserrat", sans-serif;
}

.box-cards h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

.box-cards .bi {
    font-size: 21px !important;
    margin: 7px !important;
	color: #F7931E;
}



.box-cards p {
    color: #848484 !important;
    font-weight: 500;
    font-size: 17px;
    font-family: "Inter", sans-serif;
}

/* =========================
   BOTÃO ORÇAMENTO
========================= */
.btn-orca {
    background: linear-gradient(135deg, #25D366, #03CC0B);
    color: #fff !important;
    margin-left: 10px;
    padding: 0px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.btn-orca:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #1ebe5d, #02b809);
}

.btn-orca:active {
    transform: scale(0.97);
}

/* =========================
   COMPARTILHE / REDES SOCIAIS
========================= */
.compartilhe {
    padding-left: 0;
}

.compartilhe a {
    padding: 0;
}

/* FACEBOOK */
.social-icon:hover:has(.fa-facebook-f) {
    background: #1877F2;
}

/* INSTAGRAM */
.social-icon:hover:has(.fa-instagram) {
    background: #E4405F;
}

/* LINKEDIN */
.social-icon:hover:has(.fa-linkedin-in) {
    background: #0A66C2;
}

/* TIKTOK */
.social-icon:hover:has(.fa-tiktok) {
    background: #000000;
}

/*<!--=======================// HOME //=======================-->*/
/*<!--=======================// SOBRE NÓS //=======================-->*/
/* =========================
   SOBRE NÓS
========================= */
#sobre-nos {
    padding: 50px 0;
	background: #F9FCFD;
	font-family: 'Inter', sans-serif;
}


#sobre-nos .card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

#sobre-nos .card:hover {
    transform: translateY(-5px);
}

#sobre-nos .shadow-sm {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}


#sobre-nos h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #002E48;
	letter-spacing: -1px;
}

#sobre-nos h2 {
    font-size: 30px;
}

#sobre-nos h3 {
    font-size: 28px;
}

#sobre-nos h4 {
    font-size: 22px;
}

#sobre-nos p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

#sobre-nos a {
    /* estilos específicos podem ser adicionados aqui */
}

#sobre-nos a:hover {
    /* estilos de hover podem ser adicionados aqui */
}


#sobre-nos li {
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

/* =========================
   SECTION
========================= */
.sobre-section {
    padding: 13px;
    background: linear-gradient(135deg, #ffffff, #f4f9fb);
    margin-bottom: 50px;
}

/* =========================
   IMAGEM
========================= */
.sobre-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.sobre-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s;
}

.sobre-img:hover img {
    transform: scale(1.05);
}

/* =========================
   TEXTO
========================= */
.sobre-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.sobre-content p {
    color: #6b7280;
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* =========================
   TAG
========================= */
.sobre-tag {
    display: inline-block;
    background: #FF7A00;
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.breadcrumb-custom strong {
    color: #FF7A00!important;
}

/* =========================
   DESTAQUE
========================= */
.sobre-destaque {
    margin-top: 25px;
    font-weight: 600;
    color: #313131;
    letter-spacing: 1px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 991px) {
    .sobre-section {
        padding: 60px 0;
    }

    .sobre-content {
        margin-top: 30px;
    }
}


/*<!--=======================// SOBRE NÓS //=======================-->*/
/*<!--=======================// SOBRE NÓS //=======================-->*/

#enviado {
	background: #F9FCFD;
}

#enviado h1 {
	font-size: 32px;
}

#enviado h2 {
	font-size: 30px;
}

#enviado h3 {
	font-size: 28px;
}

#enviado h4 {
	font-size: 22px;
}

#enviado p {
	
}

#enviado a {
	
}

#enviado a:hover {
	
}



/*<!--=======================// SOBRE NÓS //=======================-->*/
/*<!--=======================// SERVIÇOS //=======================-->*/

#servicos{
	text-align: center;
	padding-bottom: 50px;
	padding-top: 50px;
	background: #F9FCFD;
}


#servicos h1 {
	font-size: 32px;
	margin-bottom: 20px;
	color:#002E48;
}

#servicos h2 {
	font-size: 30px;
}

#servicos h3 {
	font-size: 28px;
}

#servicos h4 {
	font-size: 22px;
}

#servicos p {
	
}

#servicos a {
	
}

#servicos a:hover {
	
}

#servicos hr {
    margin: 50px 50px;
}


/* =========================
   VANTAGENS
========================= */
.vantagens-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f4f9fb);
}

.section-header h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.section-header p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.vantagem-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.vantagem-card i {
    font-size: 2rem;
    color: #002E48;
    margin-bottom: 20px;
}

.vantagem-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #002E48;
}

.vantagem-card p {
    font-size: 0.95rem;
    color: #717171;
}

.vantagem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* =========================
   CONTATO
========================= */
#contato {
    padding: 50px;
	background: #F9FCFD;
}

#contato h1 {
    font-size: 32px;
    color: #002E48;
}

#contato h2 {
    margin-bottom: 20px;
    font-size: 30px;
    color: #002E48;
}

#contato h3 {
    font-size: 28px;
}

#contato h4 {
    color: #00111C;
    font-weight: bold;
    font-size: 26px;
}

#contato p {
    color: rgba(33, 37, 41, 0.75);
    font-weight: 500;
    font-size: 18px;
    font-family: "Inter", sans-serif;
}


#contato a {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	font-family: "Inter", sans-serif;
}

form span {
	color: red!important;
	
}

#contato a:hover {
    /* hover pode ser adicionado aqui */
}



.card-custom {
	background-color: #f5f5f5;
	border: none;
	padding: 30px;
	border-radius: 10px;
}





.btn-custom {
    background-color: #003149;
    color: #fff !important;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    margin-top: 20px;
    border-radius: 0;
    width: 100%;
    padding: 14px 1px;
    text-align: center;
}

.btn-custom:hover {
	background-color: #FF7A00;
	transition: all 0.9s;
}



#contato .fa-brands {
    color: #002E48;
}

.contatos .fa-solid,
.fas {
    color: #002E48;    
}

#contato iframe {
    width: 100% !important;
}

#contato b,
#contato span strong {
    color: red;
}

#contato button {
    color: #fff;
    background-color: #002E48;
    border-color: #002E48;
    width: 200px;
    height: 50px;
    border: 0;
    border-radius: 0;
    font-family: "Montserrat", sans-serif;
}

.form-control-lg {
    min-height: calc(1.5em + (1rem + 2px));
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

#contato input,
#contato select {
    overflow: visible;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
    height: 45px;
}

#contato radio {
    
    width: 10px;
}


#contato textarea {
    overflow: visible;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
    min-height: 145px;
}


.radio-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}

/* aumenta o tamanho do radio */
.radio-group input[type="radio"] {
  transform: scale(1.4);
  cursor: pointer;
}


/*<!--=======================// CONTATO //=======================-->*/
/*<!--=======================// PÁGINAS SEO //=======================-->*/
/* =========================
   PÁGINAS SEO
========================= */
#paginas-seo {
    padding-top: 50px;
    background: #f8f9fa;
}

/* Títulos */
#paginas-seo h2 {
    font-size: 30px;
}

#paginas-seo h3 {
    font-size: 28px;
}

#paginas-seo h4 {
    font-size: 22px;
}

/* Cards e links */
#paginas-seo .card-body a {
    color: #002E48;
    font-size: 20px;
}

#paginas-seo .card {
    transition: all 0.3s ease;
}

#paginas-seo .card:hover {
    transform: translateY(-5px);
}

#paginas-seo .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Texto */
#paginas-seo p {
    color: #767676;
    font-size: 16px;
    text-align: justify;
}

#paginas-seo p strong {
    color: #002E48;
}

#paginas-seo a {
    color: #767676;
    font-size: 16px;
}

#paginas-seo li {
    color: #767676;
    font-size: 16px;
}

#paginas-seo li strong {
    color: #002E48;
}

/* Conteúdo de texto dentro de cards */
#paginas-seo .content-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

/* Imagens flutuantes */
.img-seo {
	max-width: 470px;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.30);
}


.img-seo2 {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    border-top: solid 5px #FF7A00;
    border-radius: 5px;
    max-width: 470px;
}



/* Botões */
#paginas-seo .btn-success {
    background: #25D366;
    border: none;
}

#paginas-seo .btn-success:hover {
    background: #1ebe5d;
}

#paginas-seo .btn-danger {
    background: #28A745;
    border: none;
    color: #fff;
}

#paginas-seo .btn-danger:hover {
    background: #28A745;
}

/* Links de destaque */
.linkagen a {
    color: #002E48 !important;
}

/* =========================
   TÍTULOS COM CORES DE DESTAQUE
========================= */
.title-veja {
    color: #111;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}
.title-veja span {
    color: #FF7A00;
	font-weight: bold;
}

.title-veja b,
.title-veja strong {
    font-weight: bolder;
    color: #002E48;
}

/* =========================
   REDES SOCIAIS
========================= */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links .bi {
    color: #fff;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.3s;
    border-radius: 50%;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn i {
    position: relative;
    z-index: 2;
}

/* Cores individuais */
.instagram::before {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.facebook::before {
    background: #1877f2;
}

.linkedin::before {
    background: #0a66c2;
}

.whatsapp::before {
    background: #25d366;
}

.tiktok::before {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
}

/* Responsivo */
@media (max-width: 576px) {
    .social-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}


/* =========================
   CTA BOX MODERNO
========================= */
.cta-box {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    border-radius: 20px;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow vermelho sutil decorativo */
.cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 59, 59, 0.25);
    filter: blur(100px);
    top: -50px;
    left: -50px;
}

/* Conteúdo acima do glow */
.cta-content {
    position: relative;
    z-index: 2;
}

/* Título */
.cta-box h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Texto secundário */
.cta-box p {
    color: #bbb;
    font-size: 18px;
    margin-bottom: 30px;
}

/* BOTÃO MODERNO */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;

    padding: 16px 32px;
    border-radius: 50px;

    font-size: 18px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Hover moderno */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Ícone dentro do botão */
.cta-btn i {
    font-size: 20px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
    .cta-box {
        padding: 35px 15px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
}
/*<!--=======================// PÁGINAS SEO //=======================-->*/
/*<!--=======================// Redes sociais SEO //=======================-->*/
/* =========================
   BOTÕES DE REDES SOCIAIS
========================= */

/* Instagram */
.btn-instagram {
    background-color: #E4405F;
    color: white !important;
    border-color: #E4405F;
}

/* Facebook */
.btn-facebook {
    background-color: #1877F2;
    color: white !important;
    border-color: #1877F2;
}

/* LinkedIn */
.btn-linkedin {
    background-color: #0077B5;
    color: white !important;
    border-color: #0077B5;
}

/* TikTok */
.btn-tiktok {
    background-color: #000;
    color: white !important;
    border-color: #000;
}

/* WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    border-color: #25D366;
}

/* Hover para todos os botões */
.btn-instagram:hover,
.btn-facebook:hover,
.btn-linkedin:hover,
.btn-whatsapp:hover,
.btn-tiktok:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* =========================
   MAPA DO SITE
========================= */

#mapasite {
    padding: 30px 0; /* opcional para dar espaço */
}

#mapasite h1 {
    color: #002E48;
}

#mapasite h2,
#mapasite h3,
#mapasite h4 {
    color: #2D2D2D; /* default escuro */
}

#mapasite p {
    color: #444;
    font-size: 16px;
}

#mapasite a {
    color: #2D2D2D;
    text-decoration: none;
    transition: all 0.3s ease;
}

#mapasite a:hover {
    color: #FF7A00;
}

/*<!--=======================// MAPA DO SITE //=======================-->*/

/*<!--=======================// RESPONSIVO //=======================-->*/
/* =========================
   MOBILE RESPONSIVO
========================= */
@media only screen and (min-width: 10px) and (max-width: 991px) { 

    /* GERAL */
    .img-seo {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        float: none;
    }

    /* HOME */
    #home { }

    /* SOBRE NÓS */
    #sobre-nos { }

    /* SERVIÇOS */
    #servicos { }

    /* INFORMAÇÕES */
    #informacoes { }

    /* CONTATO */
    #contato { }

    /* PÁGINAS SEO */
    #paginas-seo { }

    /* MAPA DO SITE */
    #mapasite { }

}

/* =========================
   BOTÕES FIXOS MOBILE (Bottom)
========================= */
#botoes {
    width: 100%;
    position: fixed;
    bottom: 0;
    display: none; /* Ativar via JS se necessário */
    z-index: 999;
    margin: 0;
    left: 0;
    text-align: center;
}

#botoes a {
    color: #FFF;
    font-size: 20px;
    padding: 16px 41px;
    display: inline-block;
}

#botoes .fa, .fas, .fab, .far, .fa-solid {
    font-size: 25px;
}

#botoes .fa-whatsapp {
    font-size: 25px;
}

/* Divisão de botões em 3 partes iguais */
.bts {
    width: 33.33%;
    float: left;
    margin-bottom: -1px;
}

/* BOTÃO 1 - WhatsApp */
.bt-1 {
    background: #01C854;
    color: #FFF;
    text-align: center;
}

/* BOTÃO 2 - Orçamento / Contato */
.bt-2 {
    background: #002E48;
    color: #FFF;
    text-align: center;
}

/* BOTÃO 3 - Call / Ação secundária */
.bt-3 {
    background: #000;
    color: #FFF;
    text-align: center;
}

/*==================== MOBILE L ====================*/
/* =========================
   RESPONSIVO GERAL ATÉ 1400px
========================= */
@media only screen and (min-width: 10px) and (max-width: 1400px) {
    /* Aqui você pode adicionar ajustes gerais para tablets e laptops */
}

/* =========================
   RESPONSIVO MOBILE (até 455px)
========================= */
@media only screen and (min-width: 10px) and (max-width: 455px) {
	.cta-section .cta-btn {
		padding: 25px 4px !important;
		width: 100%;
		text-align: center !important;
		display: block;
	}
	
	.footer-info {
		text-align: left;
	}
	
	
	.cta-section h2 {
		font-size: 32px;
	}
	
	.faq-section .accordion {
		margin-left: 0px;
	}

	

	.banner-text h1 {
		margin-top: 0px;
	}
	
    /* =========================
       TOPO E FOOTER
    ========================= */
    .footer-contact {
        padding: 0 31px;
    }

    .icones-sociais {
        width: 100%;
        float: left;
    }

    .footer {
		background: #002E48;
		color: #fff;
		padding-top: 60px;
		text-align: left;
		padding: 54px 46px;
	}

    .footer-top {
        padding: 21px;
    }

    footer h4 {
        font-size: 30px;
        margin-top: 28px;
    }

    .footer-contact p {
        text-align: center;
    }

    .topbar {
        padding-bottom: 7px;
    }

    .sociais .fab,
    .topbar .fas {
        padding: 6px 11px 12px 14px;
        font-size: 16px;
    }

    .contatos-topo span {
        width: 100%;
        float: left;
        display: none;
    }

    .contatos-topo a {
        color: #fff;
        text-decoration: none;
    }
	
	.footer-info .icon {
		min-width: 41px;
	}
	
	
	.sobre-img img {
		width: 100%;
		height: auto;
	}
	

    /* =========================
       IMAGENS
    ========================= */
    .img-sobre,
    .img-seo {
        max-width: 100%;
        height: auto;
    }

    #home .img-fluid {
        max-width: 100%;
        height: auto;
        margin-top: 32px;
    }

    /* =========================
       BOTOES FIXOS / CTA
    ========================= */
    #botoes {
        display: block;
    }

    .bto-whats {
        display: none;
    }

    .btn-orca {
        margin-left: 0;
        width: 100%;
        float: left;
        margin-top: 10px;
        text-align: center;
    }

    .botao-saiba {
        float: left;
        width: 100%;
        margin-bottom: 20px;
    }

    #cta input,
    #cta select,
    #cta button {
        max-width: 100%;
        width: 100%;
    }

    #cta button {
        width: 80%;
        margin: 10px auto;
        display: block;
    }

	
	.img-cta {
		margin-right: 0;
	}
	
	
	.titulo-banner {
        font-size: 30px;
    }
    /* =========================
       SEÇÕES
    ========================= */
    #sobre-nos,
    #servicos,
    #informacoes,
    #contato,
    #paginas-seo,
    #mapasite {
        padding: 14px!important;
    }

	
	#sobre-nos p {
		text-align: left;
	}
    .servicos-cards {
        padding: 50px 15px;
    }

    /* =========================
       BANNERS / CAROUSEL
    ========================= */
    #banner-rotativo .carousel-caption {
        top: 37%;
        max-height: 230px;
        padding: 53px 27px;
    }

    #depoimentos .carousel-control-next {
        width: 40px;
        height: 60px;
    }

    /* =========================
       DIFERENCIAIS / CARDS
    ========================= */
    .dife-superior .card-body {
        margin-bottom: 24px;
    }

    .contatos-cta h4 {
        margin-top: 0;
    }

    .formulario-cta {
        border-radius: 0;
    }

    .numeros {
        margin-right: 0px;
        margin-left: 12px;
    }

    /* Dropdown responsivo */
    .dropdown-menu[data-bs-popper] {
        max-height: 100%;
        max-width: 353px;
        width: auto;
    }

    /* CTA centralizado */
    #cta {
        text-align: center;
    }

    /* HOME ajustes */
    #home {
        text-align: center;
    }

    #home li {
        list-style: none;
    }

    /* GALERIA */
    .lightbox {
        padding-top: 100px;
    }

    .lb-nav a.lb-next,
    .lb-nav a.lb-prev,
    .lb-nav a.lb-next:hover,
    .lb-nav a.lb-prev:hover {
        opacity: 1;
    }
	
	.banner-card {
		display: none;
	}
	

	
	.navbar-nav {
        background: rgba(0,46,72,0.9);
        padding: 20px !important;
    }
	
	.navbar-light .navbar-nav .nav-link {
		color: #fff;
	}
	
	.navbar-light .navbar-nav .nav-link:hover {
		color: #FF901D;
	}

}

/*==================== MOBILE P ====================*/
@media only screen and (min-width: 10px) and (max-width: 355px) {
    .contatos-topo span {
        width: 100%;
        float: left;
    }
}
