/*!
 * 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
=============================== */
:root { 
  --background-color: #002239;          /* Background do site */
  --default-color: #555555;             /* Cor padrão do texto */
  --heading-color: #002239;             /* 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;
}


h1,
h2,
h3,
h4 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
}


p, a {
	font-family: "Inter", sans-serif;
	font-weight: 400;
}


.bg-principal {
	background:#002239;
}

.color-principal {
	color:#002239;
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 24px;
    background: #002138;
    color: #fff;
    border: 1px solid #000;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary i {
    transition: transform 0.25s ease;
}

.btn-primary:hover i {
    transform: translate(2px, -2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}




/* ===============================
   Text Utilities
=============================== */
.text-primary {
  color: #002239!important;
}

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

body::-webkit-scrollbar-thumb {
  background: #002239;
}

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

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

/* ===============================
   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;
}


.navbar-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    /* Visual moderno */
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.75) 45%,
        rgba(10, 10, 10, 0.25) 100%
		
    );

    /* Efeito glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Borda suave */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    /* Sombra elegante */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;

    /* Transição suave */
    transition:
        background 0.3s ease,
        backdrop-filter 0.3s ease,
        box-shadow 0.3s ease;

    padding: 14px 0;
}
/* ===============================
   Abertura Menu
=============================== */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    color: #333;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Linha animada */
.navbar-light .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #FBCE01;
    transition: width 0.3s ease;
}

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

/* Animação da linha */
.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link:focus::before {
    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: #002239;
}

.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: #002239;
}

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

/*======================= 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: #002239;
  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, #002239, #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: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    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 //=======================-->*/

/*======================= Abertura Galeria =======================*/
/* =========================
   GALERIA
========================= */
#galeria {
    padding-bottom: 50px;
}

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

#galeria h1 span {
    padding-top: 50px;
    color: #002239;
}

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

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



/* Estilo padrão dos botões */
#galeria .btn-filter {
    cursor: pointer;

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

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

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

/* Hover */
#galeria .btn-filter:hover {
    background-color: #e0e0e0;
}

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

/* =========================
   FILTROS
========================= */



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

.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, 90, 191, 0.6);
    opacity: 0;

    transition: 0.3s;
}

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

/* 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;
}


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

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

.carousel-indicators .active {
    background-color: rgba(0, 90, 191, 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: rgba(22, 46, 56, 0.9);
    box-shadow: inset 0 -1px 0 rgba(10, 35, 45, 0.95);
}

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

/*======================= 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 {
    width: 100%;
    overflow: hidden;
}


/* Área dos logos */
#logos .single-logo {
    min-height: 95px;
}


/* Imagens */
#logos .single-logo img {
    width: auto;
    max-width: 100%;
    height: 65px;

    object-fit: contain;

    opacity: .75;

    transition:
        opacity .3s ease,
        transform .3s ease,
        filter .3s ease;
}


/* Hover */
#logos .single-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}


/* =====================================================
   DOTS DO OWL
===================================================== */

#logos .owl-dots {
    display: flex;

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

    gap: 6px;

    margin-top: 8px;
    margin-bottom: 4px;
}


#logos .owl-dot {
    width: 8px !important;
    height: 8px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    background: #878787 !important;

    opacity: .6;

    transition: all .3s ease;
}


#logos .owl-dot.active {
    width: 25px !important;

    border-radius: 10px !important;

    background: #002239 !important;

    opacity: 1;
}


/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 767.98px) {

    #logos .single-logo {
        min-height: 85px;
    }

    #logos .single-logo img {
        height: 58px;
    }

}
#logos {}

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

#logos .brand-carousel {}

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

#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: #002239 !important;
}

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


/* =========================
   FAQ
========================= */
/* ==============================
   FAQ
================================= */

.faq {
    padding: 80px 0;
}

.faq .titulo-principal {
    font-size: 32px;
    line-height: 1.25;
    color: #222;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}

.faq .titulo-principal span {
    font-weight: 400;
    color: #FBCE01;
}

.faq hr {
    width: 70px;
    height: 4px;
    border: 0;
    border-radius: 10px;
    background: #002239;
    opacity: 1;
    margin: 0 0 35px;
}

.faq .accordion {
    padding-top: 0;
}

.faq .accordion-item {
    background: #fff;
    border: 1px solid #e9ecef !important;
    border-radius: 14px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .accordion-item:hover {
    border-color: #d8e5f2 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07) !important;
    transform: translateY(-2px);
}

.faq .accordion-button {
    position: relative;
    padding: 20px 55px 20px 22px;
    background: #fff;
    color: #222;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.faq .accordion-button:hover {
    color: #002239;
}

.faq .accordion-button:not(.collapsed) {
    color: #002239 !important;
    /* background: #f8fbff; */
}

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

.faq .accordion-button::after {
    width: 12px;
    height: 12px;
    background-size: 12px;
    transition: transform 0.3s ease;
}

.faq .accordion-body {
    padding: 0 22px 22px;
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
    background: #f8fbff;
}

/* Imagem */

.faq .sobre-img {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.faq .sobre-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 55%,
        rgba(0, 0, 0, 0.15)
    );
    pointer-events: none;
}

.faq .sobre-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

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

/* ==============================
   Responsivo
================================= */

@media (max-width: 991px) {

    .faq {
        padding: 60px 0;
    }

    .faq .sobre-img {
        margin-top: 40px;
    }

    .faq .sobre-img img {
        height: 400px;
    }

}

@media (max-width: 575px) {

    .faq {
        padding: 45px 0;
    }

    .faq .titulo-principal {
        font-size: 26px;
    }

    .faq .accordion-button {
        padding: 17px 45px 17px 18px;
        font-size: 15px;
    }

    .faq .accordion-body {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .faq .sobre-img img {
        height: 320px;
    }

}

/* =========================
   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;
	width: 100%;
    height: 300px;
    object-fit: cover;
}

.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, 0, 0, 0.2);
    transition: background 0.4s ease;
}

.servico-card:hover .overlay {
    background: rgba(0, 0, 0, 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: #002239;
}


/* =========================
   CTA (CALL TO ACTION)
========================= */
/* =====================================================
   CTA - CONTATO
===================================================== */

#cta {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #00264a 0%,
            #003b70 50%,
            #002239 100%
        );
}


/* Elementos decorativos */
#cta::before,
#cta::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    pointer-events: none;
}


#cta::before {
    width: 500px;
    height: 500px;

    top: -250px;
    left: -180px;
}


#cta::after {
    width: 600px;
    height: 600px;

    right: -300px;
    bottom: -350px;
}


/* Container */
.cta-formulario {
    position: relative;
    z-index: 2;
}


/* Caixa principal */
.cta-box {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);

    overflow: hidden;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);
}


.cta-am {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #000 0%, #071b3a 55%, #0C2F65 100%);
    height: 520px;
    padding-top: 124px !important;
}

.cta-am-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			circle at 85% 50%,
			rgba(255, 255, 255, .13) 0,
			rgba(255, 255, 255, 0) 35%
		),
		radial-gradient(
			circle at 15% 120%,
			rgba(0, 210, 255, .12) 0,
			rgba(0, 210, 255, 0) 35%
		);
}

.cta-am::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	right: -180px;
	top: -180px;
}

.cta-am::after {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 50%;
	left: -140px;
	bottom: -180px;
}

.cta-am .container {
	z-index: 2;
}

.cta-am-line {
	display: inline-block;
	width: 35px;
	height: 3px;
	border-radius: 10px;
	background: #fff;
}

.cta-am h2 {
	max-width: 800px;
	line-height: 1.15;
	letter-spacing: -.02em;
}

.cta-am h2 span {
	color: #FBCE01;
}

.cta-am p {
	max-width: 760px;
	color: rgba(255, 255, 255, .78);
}

.cta-am-action {
	position: relative;
	z-index: 3;
}

.cta-am-action strong {
	font-size: 1.1rem;
}

.cta-am-action small {
	color: rgba(255, 255, 255, .65);
}

.cta-am .btn {
    transition: all .25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    font-family: "Montserrat", sans-serif;
    padding: 14px;
}

.cta-am .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

@media (max-width: 991.98px) {
	.cta-am-action {
		text-align: center;
	}

	.cta-am h2 {
		font-size: 2.2rem;
	}
}

/* =====================================================
   LADO ESQUERDO
===================================================== */

.cta-contatos {
    position: relative;
    overflow: hidden;

    padding: 60px 50px;

    background:
        linear-gradient(
            145deg,
            #003056,
            #002239
        );

    color: #ffffff;
}


/* Brilho decorativo */
.cta-contatos::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -200px;
    right: -180px;

    border-radius: 50%;

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


/* Mantém conteúdo acima */
.cta-contatos > * {
    position: relative;
    z-index: 2;
}


/* Subtítulo */
.cta-subtitulo,
.form-subtitulo {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.cta-subtitulo {
    color: rgba(255, 255, 255, 0.70);
}


/* Título */
.cta-contatos h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: clamp(32px, 3vw, 46px);
    font-weight: 700;

    line-height: 1.15;
}


.cta-contatos h2 span {
    display: block;

    color: #ffffff;
}


/* Descrição */
.cta-descricao {
    margin-bottom: 38px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 16px;
    line-height: 1.8;
}


/* Lista */
.cta-lista {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* Item */
.cta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}


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

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.10);

    font-size: 20px;

    transition: 0.3s ease;
}


.cta-item:hover .cta-icon {
    background: #ffffff;
    color: #002239;

    transform: translateY(-3px);
}


/* Textos dos itens */
.cta-item span {
    display: block;

    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.cta-item a,
.cta-item p {
    margin: 0;

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;
}


/* =====================================================
   REDES SOCIAIS
===================================================== */

.cta-redes {
    margin-top: 40px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.cta-redes > span {
    display: block;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
    font-weight: 600;
}


.cta-redes div {
    display: flex;
    gap: 10px;
}


.cta-redes a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

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

    transition: 0.3s ease;
}


.cta-redes a:hover {
    background: #ffffff;
    color: #002239;

    transform: translateY(-4px);
}


/* =====================================================
   FORMULÁRIO
===================================================== */

.cta-form {
    padding: 60px 55px;

    background: #ffffff;
}


/* Subtítulo */
.form-subtitulo {
    color: #002239;
}


/* Título */
.cta-form h2 {
    margin-bottom: 10px;

    color: #111827;

    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
}


.cta-form > p {
    margin-bottom: 30px;

    color: #6b7280;

    font-size: 15px;
    line-height: 1.7;
}


/* Remove o estilo antigo de card duplicado */
.formulario-cta {
    padding: 0;

    border-radius: 0;

    background: transparent;
}


/* =====================================================
   CAMPOS DO FORMULÁRIO
===================================================== */

#cta input,
#cta select,
#cta textarea {
    width: 100%;

    margin: 0 0 15px;
    padding: 14px 16px;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    background: #f8fafc;

    color: #111827;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


#cta input,
#cta select {
    height: 52px;
}


#cta textarea {
    min-height: 140px;

    resize: vertical;
}


/* Focus */
#cta input:focus,
#cta select:focus,
#cta textarea:focus {
    border-color: #002239;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(0, 90, 191, 0.10);
}


/* Placeholder */
#cta input::placeholder,
#cta textarea::placeholder {
    color: #9ca3af;
}


/* =====================================================
   BOTÃO DO FORMULÁRIO
===================================================== */

#cta button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 54px;

    margin: 5px 0 0;
    padding: 12px 25px;

    border: 0;
    border-radius: 10px;

    background: #002239;

    color: #ffffff;

    font-size: 14px;
    font-family: inherit;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(0, 90, 191, 0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


#cta button:hover {
    background: #003e85;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0, 90, 191, 0.30);
}


/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 991px) {

    #cta {
        padding: 70px 0;
    }


    .cta-box {
        grid-template-columns: 1fr;
    }


    .cta-contatos,
    .cta-form {
        padding: 45px 35px;
    }

}


@media (max-width: 575px) {

    #cta {
        padding: 50px 0;
    }


    .cta-formulario {
        padding-right: 12px;
        padding-left: 12px;
    }


    .cta-contatos,
    .cta-form {
        padding: 38px 25px;
    }


    .cta-contatos h2 {
        font-size: 32px;
    }


    .cta-item {
        align-items: flex-start;
    }


    .cta-icon {
        width: 44px;
        height: 44px;
    }

}


/* =========================
   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: #ccc;
}

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

.bg-contatos {
    background: #111;
}

.texto-color {
    color: #fff!important;
	font-size: 18px!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: #002239 !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 #002239;
    border-radius: 8px;
}

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

/*<!--=======================// Abertura Footer //=======================-->*/
/* =========================
   FOOTER
========================= */
/* =========================================================
   FOOTER
========================================================= */

footer {
    position: relative;
    background: #002239;
    color: #fff;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {
    padding: 75px 0 60px;
}

.footer-contact {
    padding: 0 25px;
}

.footer-contact:first-child {
    padding-left: 0;
}

.footer-contact:last-child {
    padding-right: 0;
}

/* =========================================================
   LOGO
========================================================= */

.logo-footer {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;


}

/* =========================================================
   TÍTULOS
========================================================= */

footer h2 {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 30px;
    padding-bottom: 12px;
}

footer h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    border-radius: 10px;
    background: #002239;
}

/* =========================================================
   TEXTOS
========================================================= */

footer p {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

footer p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   LINKS
========================================================= */

footer a {
    color: #bdbdbd;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* =========================================================
   ÍCONES DE CONTATO
========================================================= */

.footer-contact p i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 8px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-contact p a:hover i {
    background: #fff;
    color: #002239;
    transform: translateY(-2px);
}

/* =========================================================
   LISTA DE PÁGINAS
========================================================= */

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 13px;
}

footer ul li:last-child {
    margin-bottom: 0;
}

footer ul li a {
    position: relative;
    display: inline-block;
    padding-left: 18px;
}

footer ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -1px;
    color: rgba(255,255,255,0.3);
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: #fff;
    padding-left: 23px;
}

footer ul li a:hover::before {
    color: #FBCE01;
}

/* =========================================================
   REDES SOCIAIS
========================================================= */

footer .sociais {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

footer .sociais a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: #fff;
    color: #002239;
    border-radius: 10px;
    box-shadow: none;
    transition: all 0.3s ease;
}

footer .sociais a i {
    font-size: 17px;
}

footer .sociais a:hover {
    background: #002239;
    color: #fff;
    transform: translateY(-4px);
}

/* =========================================================
   ÍCONES FONT AWESOME
========================================================= */

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

/* =========================================================
   ASSINATURA / COPYRIGHT
========================================================= */

#assinatura {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}

.assinatura-footer {
    margin: 0;
    padding: 20px 0;
}

.copyright {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.copyright strong {
    color: #222;
    font-weight: 600;
}

#assinatura a {
    color: #777;
    font-size: 13px;
    text-decoration: none;
}

#assinatura a:hover {
    color: #002239;
}

#assinatura img {
    max-width: 100px;
    width: auto;
    height: auto;
    margin-left: 5px;
    vertical-align: middle;
}

#assinatura strong {
    color: #002239;
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    width: 45px;
    height: 45px;
    background: #002239;
    color: #fff !important;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #fff;
    color: #002239 !important;
    transform: translateY(-4px);
}

.back-to-top i {
    font-size: 16px;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .footer-top {
        padding: 60px 0 45px;
    }

    .footer-contact {
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .footer-contact:first-child {
        padding-left: 15px;
    }

    .footer-contact:last-child {
        padding-right: 15px;
        margin-bottom: 0;
    }

}

@media (max-width: 767px) {

    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-contact {
        margin-bottom: 40px;
    }

    footer h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    footer p,
    footer a {
        font-size: 14px;
    }

    .assinatura-footer {
        padding: 20px 15px;
    }

    #assinatura .text-lg-end {
        text-align: center !important;
        margin-top: 10px;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

}



/*======================= 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 #002239;
    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: #002239;
    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, #002239, #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: #002239;
    transition: 0.3s;
}

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

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

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


#pjAcceptCookieBar .btn-primary {
    background: #002239;
}

#pjAcceptCookieBar .btn-primary:houver {
    background: #002239;
}


#pjAcceptCookieBar .btn-outline {
    background: #fff;
    border: 2px solid #002239;
    color: #002239;
}


/* =========================
   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;
}

/*<!--=======================// 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;
    color: #444;
    transition: 0.2s;
}

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

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

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

/* =========================
   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);
}

/* =========================
   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;
}

/* =========================================================
   TOP BAR
========================================================= */

.site-topbar {
    background: #002239;
    color: #fff;
    font-family: "Montserrat", sans-serif;
}

.site-topbar__link {
    color: #ddd;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-topbar__link:hover {
    color: #fff;
}

.site-topbar__link i {
    font-size: 14px;
    color: #FBCE01;
    transition: all 0.3s ease;
}

.site-topbar__link:hover i {
    transform: translateY(-1px);
}

/* WhatsApp */

.site-topbar__whatsapp {
    color: #fff;
}

.site-topbar__whatsapp i {
    color: #25D366;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.site-topbar__social {
    display: flex;
}

.site-topbar__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.site-topbar__social-link:hover {
    color: #fff;
    background: #002239;
    border-color: #002239;
    transform: translateY(-2px);
}

.site-topbar__social-link i {
    font-size: 13px;
}


/* =========================================================
   NAVBAR
========================================================= */

.site-navbar {
    min-height: 82px;
    border-bottom: 1px solid #eee;
    font-family: "Poppins", sans-serif;
    z-index: 999;
}

.site-navbar__brand {
    padding: 0;
}

.site-navbar__logo {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 65px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.site-navbar__brand:hover .site-navbar__logo {
    transform: scale(1.02);
}


/* =========================================================
   BOTÃO MOBILE
========================================================= */

.site-navbar__toggler {
    padding: 8px;
}

.site-navbar__toggler:focus {
    box-shadow: none;
}


/* =========================================================
   BOTÃO ORÇAMENTO
========================================================= */

.site-navbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 135px;
    padding: 2px 20px;
    background: #002239;
    color: #fff;
    border: 2px solid #002239;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 43px;
}

.site-navbar__cta i {
    font-size: 17px;
}

.site-navbar__cta:hover {
    background: #fff;
    color: #002239;
    border-color: #002239;
    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .site-topbar {
        padding: 10px 0;
    }

    .site-navbar {
        min-height: 72px;
    }

    .site-navbar__logo {
        max-width: 165px;
        max-height: 55px;
    }

}

@media (max-width: 575px) {

    .site-topbar__link {
        font-size: 12px;
    }

    .site-topbar__contacts {
        width: 100%;
    }

    .site-topbar__social {
        margin-top: 12px;
    }

    .site-navbar__logo {
        max-width: 145px;
    }

}

/* =========================
   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 .card-body h2 {
	font-size: 18px;
}

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

#home p strong {
    color: #002239;
}

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



/* =====================================================
   SEÇÃO DE SERVIÇOS
===================================================== */

.servicos-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}


/* Detalhe decorativo */
.servicos-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -200px;
    right: -150px;

    border-radius: 50%;

    background: rgba(0, 90, 191, 0.04);

    pointer-events: none;
}


/* =====================================================
   CABEÇALHO
===================================================== */

.servicos-header {
    position: relative;
    z-index: 2;

    max-width: 750px;

    margin: 0 auto 55px;
}


.servicos-tag {
    display: inline-block;

    margin-bottom: 12px;
    padding: 7px 16px;

    border-radius: 50px;

    background: rgba(0,34,57, 0.9);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.servicos-header h2 {
    margin: 0 0 15px;
    color: #111827;
    font-weight: 700;
    line-height: 1.15;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
}


.servicos-header h2 .color-principal {
    color: #FBCE01;
}


.servicos-header p {
    max-width: 650px;

    margin: 0 auto;

    color: #6b7280;

    font-size: 17px;
    line-height: 1.7;
}


/* =====================================================
   LINK DO CARD
===================================================== */

.servico-link {
    display: block;

    height: 100%;

    color: inherit;
    text-decoration: none;
}


/* =====================================================
   CARD
===================================================== */

.servico-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    border: 1px solid #edf0f4;
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Hover do card */
.servico-link:hover .servico-card {
    transform: translateY(-8px);

    border-color: rgba(0, 90, 191, 0.18);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12);
}


/* =====================================================
   IMAGEM
===================================================== */

.servico-imagem {
    position: relative;

    height: 220px;

    overflow: hidden;
}


.servico-imagem img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.servico-link:hover .servico-imagem img {
    transform: scale(1.08);
}


/* =====================================================
   OVERLAY
===================================================== */

.servico-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 20px;

    opacity: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 90, 191, 0.05),
            rgba(0, 20, 45, 0.82)
        );

    transition:
        opacity 0.35s ease;
}


.servico-link:hover .servico-overlay {
    opacity: 1;
}


.servico-overlay span {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
}


.servico-overlay i {
    font-size: 15px;

    transition:
        transform 0.3s ease;
}


.servico-link:hover .servico-overlay i {
    transform: translate(3px, -3px);
}


/* =====================================================
   CONTEÚDO
===================================================== */

.servico-conteudo {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    min-height: 125px;

    padding: 24px 22px;
}


/* =====================================================
   ÍCONE
===================================================== */

.servico-icone {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 48px;
    height: 48px;

    border-radius: 12px;

    background: rgba(0, 90, 191, 0.08);

    color: #002239;

    font-size: 21px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.servico-link:hover .servico-icone {
    background: #002239;
    color: #ffffff;

    transform: scale(1.05);
}


/* =====================================================
   TÍTULO
===================================================== */

.servico-conteudo h3 {
    margin: 2px 0 7px;
    color: #111827;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-family: "Montserrat", sans-serif;
}


.servico-link:hover .servico-conteudo h3 {
    color: #002239;
}


/* Descrição */
.servico-conteudo p {
    margin: 0;

    color: #6b7280;

    font-size: 13px;
    line-height: 1.55;
}


/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 991px) {

    .servicos-header {
        margin-bottom: 40px;
    }

}


@media (max-width: 767px) {

    .servicos-header {
        padding: 0 15px;
    }


    .servicos-header h2 {
        font-size: 34px;
    }


    .servicos-header p {
        font-size: 16px;
    }


    .servico-imagem {
        height: 230px;
    }

}


@media (max-width: 480px) {

    .servicos-header {
        margin-bottom: 30px;
    }


    .servicos-header h2 {
        font-size: 30px;
    }


    .servico-conteudo {
        padding: 20px;
    }

}

.sobre-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background: #ffffff;
}


/* =====================================================
   CONTEÚDO
===================================================== */

.sobre-conteudo {
    max-width: 650px;
}


/* Badge */
.sobre-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(0,34,57, 0.9);

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* Título */
.sobre-conteudo h2 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-family: "Montserrat", sans-serif;
}


.sobre-conteudo h2 span {
    display: block;

    color: #FBCE01;
}


/* Texto */
.sobre-descricao {
    margin: 0 0 15px;

    color: #6b7280;

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   DIFERENCIAIS
===================================================== */

.sobre-diferenciais {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px 25px;

    margin: 30px 0;
}


.sobre-diferencial {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #374151;

    font-size: 14px;
    font-weight: 600;
}


.sobre-diferencial i {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 24px;
    height: 24px;

    border-radius: 50%;

    background: rgba(0, 90, 191, 0.10);

    color: #002239;

    font-size: 14px;
}


/* =====================================================
   BOTÃO
===================================================== */

.sobre-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding: 14px 25px;

    border-radius: 31px;

    background: #002239;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(0, 90, 191, 0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.sobre-btn i:first-child {
    font-size: 20px;
}


.sobre-btn i:last-child {
    font-size: 15px;

    transition: transform 0.3s ease;
}


.sobre-btn:hover {
    background: #003f87;
    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 90, 191, 0.30);
}


.sobre-btn:hover i:last-child {
    transform: translate(3px, -3px);
}


/* =====================================================
   IMAGEM
===================================================== */

.sobre-imagem-wrapper {
    position: relative;

    max-width: 580px;

    margin: 0 auto;

    padding: 20px 20px 30px 30px;
}


/* Decoração azul */
.sobre-decoracao {
    position: absolute;

    top: 0;
    left: 0;

    width: 85%;
    height: 90%;

    border-radius: 24px;

    background: #002239;

    transform: rotate(-5deg);

    z-index: 0;
}


/* Imagem */
.sobre-imagem {
    position: relative;
    z-index: 2;

    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.18);
}


.sobre-imagem img {
    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


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


/* =====================================================
   PONTOS DECORATIVOS
===================================================== */

.sobre-ponto {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #002239;

    z-index: 3;
}


.ponto-1 {
    top: 30px;
    right: 15px;
}


.ponto-2 {
    bottom: 15px;
    left: 10px;
}


/* =====================================================
   BOX DE DESTAQUE
===================================================== */

.sobre-box {
    position: absolute;

    right: -5px;
    bottom: 0;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 190px;

    padding: 16px 20px;

    border-radius: 14px;

    background: #ffffff;

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


.sobre-box > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 10px;

    background: rgba(0, 90, 191, 0.10);

    color: #FBCE01;

    font-size: 20px;
}


.sobre-box strong {
    display: block;

    color: #111827;

    font-size: 15px;
}


.sobre-box span {
    display: block;

    margin-top: 2px;

    color: #6b7280;

    font-size: 12px;
}


/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 991px) {

    .sobre-section {
        padding: 75px 0;
    }


    .sobre-conteudo {
        max-width: 100%;
    }


    .sobre-imagem-wrapper {
        max-width: 650px;

        margin-top: 25px;
    }

}


@media (max-width: 575px) {

    .sobre-section {
        padding: 55px 0;
    }


    .sobre-conteudo h2 {
        font-size: 36px;
    }


    .sobre-descricao {
        font-size: 15px;
        line-height: 1.7;
    }


    .sobre-diferenciais {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .sobre-imagem-wrapper {
        padding: 15px 10px 35px 15px;
    }


    .sobre-imagem img {
        height: 360px;
    }


    .sobre-decoracao {
        width: 90%;
        height: 85%;
    }


    .sobre-box {
        right: 0;
    }

}

/* =========================
   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: #FDD001;
    transform: translateY(-2px);
}

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

.navbar .btn-danger {
    background: #FDD001;
    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;
}

/* =========================
   HERO / BANNER
========================= */
#banner {
    position: relative;
    width: 100%;
    min-height: 100vh;

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

    text-align: center;
    overflow: hidden;

    background:
        url("../image/banner/1.jpg")
        center / cover no-repeat;
}


/* Overlay principal */
#banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 50%,
            rgba(0, 0, 0, 0.50) 100%
        );

    z-index: 1;
}


/* Glow azul */
#banner::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(0, 90, 191, 0.25),
            transparent 38%
        );

    z-index: 1;
    pointer-events: none;
}


/* Conteúdo */
.banner-content {
    position: relative;
    z-index: 2;

    max-width: 950px;
    padding: 40px 20px;

    animation: bannerFadeUp 1s ease both;
}


/* Tag superior */
.banner-tag {
    display: inline-flex;
    align-items: center;

    margin-bottom: 22px;
    padding: 8px 18px;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* Título */
#banner h1 {
    max-width: 900px;
    margin: 0 auto 22px;
    color: #ffffff;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}


/* Destaque */
#banner h1 span {
    display: block;

    color: #FBCE01;
}


/* Texto */
#banner p {
    max-width: 720px;
    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.82);

    font-size: clamp(17px, 2vw, 20px);
    font-weight: 400;

    line-height: 1.7;
}


/* Botões */
.banner-actions {
    display: flex;
    justify-content: center;
}


/* Botão principal */
.btn-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 56px;
    padding: 15px 30px;

    border: 1px solid #002239;
    border-radius: 8px;

    background: #002239;

    color: #ffffff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(0, 90, 191, 0.30);

    transition:
        0.3s ease;
}


.btn-banner i {
    font-size: 18px;
}


/* Hover */
.btn-banner:hover {
    background: #ffffff;
    border-color: #ffffff;

    color: #002239;

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.30);
}


/* Texto inferior */
.banner-scroll {
    position: absolute;
    bottom: 47px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scrollMove 2s ease-in-out infinite;
    z-index: 99999;
}

.banner-scroll a:houver {

	color: #FACE01;

}



/* Linha decorativa */
.banner-scroll::after {
    content: "";

    display: block;

	color: #FACE01;
	
    width: 0px;
    height: 0px;

    margin: 10px auto 0;

    background: #002239;
}


/* Animação do conteúdo */
@keyframes bannerFadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Animação inferior */
@keyframes scrollMove {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }

}


/* Responsivo */
@media (max-width: 768px) {

    #banner {
        min-height: 700px;
    }


    .banner-content {
        padding: 40px 20px;
    }


    #banner h1 {
        font-size: 44px;
        letter-spacing: -1.5px;
    }


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


    .banner-scroll {
        bottom: 20px;
    }

}


/* Celular */
@media (max-width: 480px) {

    #banner {
        min-height: 650px;
    }


    #banner h1 {
        font-size: 36px;
        line-height: 1.12;
    }


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


    .banner-tag {
        font-size: 10px;
        padding: 7px 13px;
    }


    .btn-banner {
        width: 100%;
        max-width: 320px;

        min-height: 54px;
    }


    .banner-scroll {
        display: none;
    }

}

/* =========================
   HERO / MINI BANNER
========================= */
#mini-banner {
    position: relative;
    width: 100%;
    min-height: 430px;

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

    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            rgba(0, 20, 40, 0.88),
            rgba(0, 49, 73, 0.72),
            rgba(0, 0, 0, 0.55)
        ),
        url("../image/banner/banner.jpg") center / cover no-repeat;
}


/* Camada adicional para melhorar o contraste */
#mini-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(50, 123, 204, 0.16),
            transparent 55%
        );

    pointer-events: none;
}


/* Linha decorativa inferior */
#mini-banner::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 70%;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(50, 123, 204, 0.8),
        transparent
    );
}


/* Formas decorativas */
.banner-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;

    background: rgba(50, 123, 204, 0.12);
    filter: blur(5px);
}


.shape-1 {
    width: 280px;
    height: 280px;

    top: -130px;
    left: -100px;
}


.shape-2 {
    width: 350px;
    height: 350px;

    right: -180px;
    bottom: -180px;
}


/* Conteúdo */
.banner-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 950px;

    padding: 50px 25px;

    animation: bannerFadeUp 0.9s ease both;
}


/* Subtítulo */
.banner-subtitle {
    display: inline-block;

    margin-bottom: 15px;
    padding: 7px 16px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Título */
#mini-banner h1 {
    margin: 0 0 18px;

    color: #ffffff;

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

    line-height: 1.15;
    letter-spacing: -1.5px;

    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
	font-family: "Montserrat", sans-serif;
}


#mini-banner h1 span {
    color: #FBCE01;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}


/* Texto */
#mini-banner p {
    max-width: 700px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.82);

    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 2vw, 19px);

    line-height: 1.7;
}


/* Área do botão */
.banner-buttons {
    margin-top: 30px;
}


/* Botão */
.btn-orcamento {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 32px;

    border: 0px solid #FBCE01;
    border-radius: 32px;

    background: #000;

    color: #ffffff;
    text-decoration: none;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(50, 123, 204, 0.25);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.btn-orcamento:hover {
    background: #ffffff;
    color: #003149;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}


/* Animação */
@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsivo */
@media (max-width: 768px) {

    #mini-banner {
        min-height: 360px;
    }


    .banner-content {
        padding: 40px 20px;
    }


    #mini-banner h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }


    #mini-banner p {

        font-size: 16px;
        line-height: 1.6;
    }


    .banner-subtitle {
        font-size: 11px;
        letter-spacing: 0.7px;
    }


    .shape-1 {
        width: 200px;
        height: 200px;
    }


    .shape-2 {
        width: 250px;
        height: 250px;
    }

}


@media (max-width: 480px) {

    #mini-banner {
        min-height: 330px;
    }


    #mini-banner h1 {
        font-size: 32px;
    }


    .btn-orcamento {
        width: 100%;
        max-width: 280px;
    }

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

    background: #fff;
    color: #002239;
    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);
}

/* Hover bonito */
.btn-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    color: #000;
}

/* Í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;
    }
}

/* =========================================================
   SEÇÃO DE DIFERENCIAIS
========================================================= */

.site-diferenciais {
    position: relative;
    background: #002239;
    padding: 65px 0;
    overflow: hidden;
}

/* Brilho discreto ao fundo */
.site-diferenciais::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(0, 90, 191, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.site-diferenciais__container {
    position: relative;
    z-index: 1;
}

.site-diferenciais__item {
    height: 100%;
}

/* =========================================================
   CARD
========================================================= */

.site-diferenciais__card {
    position: relative;
    height: 100%;
    padding: 30px 25px;

    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    overflow: hidden;

    transition: all 0.4s ease;
}

.site-diferenciais__card::after {
    content: "";
    position: absolute;
    left: 25px;
    bottom: 0;

    width: 45px;
    height: 3px;

    background: #002239;
    border-radius: 10px 10px 0 0;

    transition: all 0.4s ease;
}

.site-diferenciais__card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(250, 233, 22, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.site-diferenciais__card:hover::after {
    width: calc(100% - 50px);
}


/* =========================================================
   ÍCONE
========================================================= */

.site-diferenciais__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    background: #000;
    color: #fff;

    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    transition: all 0.4s ease;
}

.site-diferenciais__icon i {
    font-size: 25px;
}

.site-diferenciais__card:hover .site-diferenciais__icon {
    transform: scale(1.08) rotate(-3deg);
    background: #fff;
    color: #002239;
}


/* =========================================================
   TÍTULO
========================================================= */

.site-diferenciais__title {
    margin: 0;

    color: #FBCE01;
    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================================
   TEXTO
========================================================= */

.site-diferenciais__text {
    margin: 18px 0 0;

    color: #aaa;

    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 300;

    line-height: 1.75;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .site-diferenciais {
        padding: 55px 0;
    }

    .site-diferenciais__card {
        padding: 25px 22px;
    }

}

@media (max-width: 767px) {

    .site-diferenciais {
        padding: 45px 0;
    }

    .site-diferenciais__card {
        margin-bottom: 20px;
    }

    .site-diferenciais__title {
        font-size: 19px;
    }

    .site-diferenciais__text {
        font-size: 14px;
    }

}



/* =========================
   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: #002239; /* 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: #002239;
}

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

/* =========================
   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;
}

#sobre-nos h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #002239;
}

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

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

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

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

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

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

/* =========================
   SECTION
========================= */
.sobre-section {
    padding: 13px;
    background: linear-gradient(135deg, #ffffff, #f4f9fb);
    padding-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%;
    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: rgba(0,34,57, 0.9);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* =========================
   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:#002239;
}

#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: #002239;
    margin-bottom: 20px;
}

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

.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: #002239;
}

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

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

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

#contato p,
#contato a {
    color: #000;
}

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

#contato .fa-brands {
    color: #002239;
}

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

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

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

#contato button {
    color: #fff;
    background-color: #002239;
    border-color: #002239;
    width: 200px;
    height: 50px;
    border: 0;
    border-radius: 50px;
    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;
	border: solid 1px #ccc;
}

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



/* =========================================================
   CONTATO MODERNO
========================================================= */

.contato-moderno {
    position: relative;
    padding: 90px 0;
    background: #f7f8fa;
    overflow: hidden;
}

.contato-moderno::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 450px;
    height: 450px;
    background: rgba(0, 90, 191, 0.06);
    border-radius: 50%;
    filter: blur(80px);
}

.contato-moderno__cabecalho {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.contato-moderno__subtitulo {
    display: inline-block;
    margin-bottom: 12px;

    color: #002239;
    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 2px;
}

.contato-moderno__titulo {
    margin-bottom: 15px;

    color: #1c1c1c;
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 700;
}

.contato-moderno__titulo span {
    color:#FBCE01;
}

.contato-moderno__descricao {
    margin: 0;

    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ÁREA PRINCIPAL
========================================================= */

.contato-moderno__area {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.contato-moderno__formulario {
    padding: 45px;

    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contato-moderno__formulario-titulo {
    margin-bottom: 8px;

    color: #222;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.contato-moderno__formulario-texto {
    margin-bottom: 30px;

    color: #888;
    font-size: 14px;
}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.contato-moderno__informacoes {
    height: 100%;
    padding: 35px;
}

.contato-moderno__informacoes-titulo {
    margin-bottom: 25px;

    color: #222;
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 600;
}


/* =========================================================
   ITEM DE CONTATO
========================================================= */

.contato-moderno__item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 17px;
    margin-bottom: 12px;

    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;

    transition: all 0.3s ease;
}

.contato-moderno__item:hover {
    border-color: #002239;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.contato-moderno__icone {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    background: #eef5fc;
    color: #002239;

    border-radius: 10px;

    transition: all 0.3s ease;
}

.contato-moderno__item:hover .contato-moderno__icone {
    background: #002239;
    color: #fff;
}

.contato-moderno__rotulo {
    display: block;
    margin-bottom: 2px;

    color: #999;

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

    text-transform: uppercase;
    letter-spacing: 1px;
}

.contato-moderno__valor {
    color: #333;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;
}

a.contato-moderno__valor:hover {
    color: #002239;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.contato-moderno__redes {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;
}

.contato-moderno__rede {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: #fff;
    color: #555;

    border: 1px solid #e5e5e5;
    border-radius: 10px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.contato-moderno__rede:hover {
    background: #002239;
    color: #fff!important;
    border-color: #002239;
    transform: translateY(-4px);
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .contato-moderno {
        padding: 70px 0;
    }

    .contato-moderno__titulo {
        font-size: 32px;
    }

    .contato-moderno__informacoes {
        padding: 35px 0 0;
    }

}

@media (max-width: 575px) {

    .contato-moderno {
        padding: 55px 0;
    }

    .contato-moderno__cabecalho {
        margin-bottom: 35px;
    }

    .contato-moderno__titulo {
        font-size: 27px;
    }

    .contato-moderno__descricao {
        font-size: 14px;
    }

    .contato-moderno__formulario {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .contato-moderno__informacoes {
        padding-top: 30px;
    }

}
/*<!--=======================// 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: #002239;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

#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: #002239;
}

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

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

#paginas-seo li strong {
    color: #002239;
}

/* 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 {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.30);
}

/* 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: #002239 !important;
}


.card-artigo {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

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

/* Imagem */
.card-artigo img {
    transition: transform 0.4s ease;
}

.card-artigo:hover img {
    transform: scale(1.08);
}

/* 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 */


/* =========================
   TÍTULOS COM CORES DE DESTAQUE
========================= */
.title-veja {
    color: #111;
    font-weight: 600;
    margin-bottom: 20px;
}

.title-veja span {
    color: #002239;
}

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

/* =========================
   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 {
    
    border-radius: 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: #002239;
}

#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: #FBCE01;
}

/*<!--=======================// 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: #002239;
    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) {

    /* =========================
       TOPO E FOOTER
    ========================= */
    .footer-contact {
        padding: 0 31px;
    }

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

    footer {
        text-align: center;
    }

    .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;
    }

    /* =========================
       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;
    }

    /* =========================
       SEÇÕES
    ========================= */
    #sobre-nos,
    #servicos,
    #informacoes,
    #contato,
    #paginas-seo,
    #mapasite {
        padding: 30px;
    }

    .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;
    }

}

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