/* Default
** ----------------------------------------------- */
:root {
  --primary-color: #002060;
  --secondary-color: #000;
  --primary-blue: #002060;
  --primary-yellow: #E6BC50;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #6c757d;
  --shadow-light: rgba(0, 32, 96, 0.1);
  --shadow-medium: rgba(0, 32, 96, 0.2);
  --shadow-heavy: rgba(0, 32, 96, 0.3);
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #128C7E;
}

/* Default
** ----------------------------------------------- */
body {
  color: #333;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

a:hover,
a:focus {
  color: #444;
  text-decoration: none;
  outline: 0;
}

a:hover,
a:focus {
  color: #005580;
  text-decoration: underline;
}

/* Topo
** ----------------------------------------------- */

.topo .topo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topo .logo {
  width: 250px;
  padding: 15px 0;
}

/* Menu
** ----------------------------------------------- */
.topo .menu li {
  display: inline-block;
  position: relative;
}

.topo .menu li:hover>a {
  color: #E6BC50;
  transition: 0.4s all;
}

.topo .menu a.menu-ativo {
  color: var(--primary-yellow);
  font-weight: bold;
}

.topo .menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.topo .menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topo .menu ul li:hover>ul {
  display: inline-grid;
  height: 300px;
}

ul.ul-dropdown-responsivo.ul-dropdown-responsivo-2 {
  height: auto !important;
  overflow: hidden !important;
}

.topo .menu ul ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  width: auto;
  background-color: #e6bc50;
  border-radius: 2px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
}

.topo .menu ul ul li {
  width: auto;
}

.topo .menu ul ul li a {
  display: block;
  padding: 10px 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.topo .menu ul ul li a:hover {
  color: #fff;
  background: var(--primary-color);
  border-radius: 0px;
}

/* Menu Fixo Lateral
** ----------------------------------------------- */
.menu-lateral {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
}

.menu-lateral-conteudo {
  position: fixed;
  left: -315px;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  background-color: #fff;
  border-right: 1px solid #ccc;
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 2;
  transition: all 0.3s ease 0s;
}

.menu-lateral-visivel .menu-lateral-conteudo {
  left: 0;
}

.menu-lateral-conteudo ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-lateral-conteudo li {
  border-top: 1px solid #eee;
}

.menu-lateral-conteudo ul ul {
  margin-left: 15px;
}

.menu-lateral-conteudo a {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
}

.menu-lateral-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* WhatsApp
** ----------------------------------------------- */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  z-index: 100;
  right: 35px;
}

.whatsapp-icon i {
  font-size: 30px;
  color: #fff;
}

.whatsapp-icon a {
  color: #fff;
  background: #24cc63;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 60px;
  width: 60px;
}

.whatsapp-icon a:hover {
  text-decoration: none;
  background: #4ed882;
  transition: 0.3s all;
}

/* Conteudo
** ----------------------------------------------- */
.informacoes-link {
  margin: 15px;
  display: block;
  text-decoration: none;
}

.informacoes-link:hover {
  color: #72b5da;
}

.informacoes-link img {
  border: 1px solid #ccc;
  width: 100%;
  display: block;
}

/* Accordion
** ----------------------------------------------- */
.accordion-titulo {
  cursor: pointer;
  background: var(--secondary-color);
  border-radius: 5px;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.accordion-conteudo {
  display: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-top: 5px;
  padding: 15px;
}

div#sidebarCollapse {
  margin-top: 30px;
}

.btn-danger {
  color: #fff;
  background-color: #24cc63;
  border-color: #24cc63;
}

.btn-danger:hover {
  color: #fff;
  background-color: #189748;
  border-color: #189748;
}

/* Sidebar
** ----------------------------------------------- */
.sidebar {
  display: table-cell;
  width: 265px;
  vertical-align: top;
}

.sidebar h3 {
  padding: 10px 0;
  border-radius: 5px;
  margin: 0;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}

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

.sidebar ul li {
  border-left: 2px solid var(--primary-color);
  margin-bottom: 10px;
  padding-left: 5px;
}

.sidebar-box+.sidebar-box {
  margin-top: 15px;
}

.sidebar li a {
  display: block;
  text-decoration: none;
  padding: 6px 8px;
  text-align: left;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
}

.sidebar li a:hover,
.sidebar .ativo {
  color: var(--primary-color);
  transition: 0.3s all;
}

.sidebar-conteudo {
  padding: 15px;
}

.sidebar-box a:hover {
  text-decoration: none;
}

.sidebar-box a:hover h3 {
  background: #ffc107;
  transition: 0.4s all;
  color: #fff;
}

/* Footer
** ----------------------------------------------- */
.footer {
  color: #fff;
  background: linear-gradient(135deg, #002060 0%, #000000 100%);
  padding: 60px 0 20px 0;
}

.logo_footer img {
  width: 210px;
  padding: 0 0 15px 0;
}

footer.footer h1 {
  font-size: 20px;
  font-weight: 600;
  border-left: 4px solid #E6BC50;
  padding-left: 5px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.footer span {
  color: #E6BC50;
}

.footer ul {
  padding: 0;
}

.footer ul li {
  display: inherit;
}

.footer ul li a {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
}

.footer ul li a:hover {
  color: #E6BC50;
}

.footer img {
  margin: 0 5px;
}

.footer a,
.footer p {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 0;
}

.footer a:hover {
  color: #E6BC50;
  transition: 0.4s all;
  text-decoration: none;
}

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

.footer .redes-sociais-footer a {
  color: #000;
  font-size: 22px;
}

.footer .redes-sociais-footer i {
  background: #fff;
  padding: 7px 12px;
  border-radius: 3px;
}

.footer .redes-sociais-footer a:hover {
  color: #E6BC50;
  transition: 0.4s all;
}

/* Créditos
** ----------------------------------------------- */
.creditos {
  padding: 15px 0;
}

.creditos-box {
  padding: 30px 0 0 0;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 10%);
  margin-top: 20px;
}

.creditos .creditos-logo {
  width: 80px;
}

img.logo-focuspublicidade {
  width: 90px;
}

.creditos .creditos-link {
  display: flex;
  align-items: center;
}

.creditos .creditos-link a {
  margin-left: 10px;
}

.creditos-text a {
  font-size: 12px;
}

.creditos-text strong {
  font-weight: 500;
}

/* Faixa PG
** ----------------------------------------------- */
.faixa_page {
    position: relative; /* necessário para o ::before funcionar corretamente */
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center; /* opcional, se quiser centralizar conteúdo horizontalmente */
    overflow: hidden; /* garante que nada do ::before vaze */
}

.faixa_page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../imagens/banner/2.webp) no-repeat center;
    background-size: cover;
    /* Overlay escuro suave */
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.4); /* ajuste a opacidade conforme necessidade */
    z-index: 1;
}

/* Conteúdo da faixa */
.faixa_page > * {
    position: relative;
    z-index: 2; /* garante que o conteúdo fique acima do overlay */
}


.faixa_page h1 {
    color: #fff;
    font-weight: 600;
    font-size: 30px;
}

/* Breadcrumb
** ----------------------------------------------- */
div#breadcrumb {
  color: #fff;
  font-weight: normal;
  padding-top: 5px;
}

div#breadcrumb i {
  color: var(--secondary-color);
  font-size: 10px;
}

div#breadcrumb>a:hover,
.bread>a:hover {
  text-decoration: none;
  color: var(--secondary-color);
  transition: 0.3s all;
}

.breadcrumb i {
  padding: 0 5px;
}

.breadcrumb a {
  color: #fff;
}

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

span.breadcrumb-separador {
  color: #fff;
}

.bread {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.faixa-pgs .row {
  display: flex;
  align-items: center;
}

/* 
/* Politica de Privacidade
** ----------------------------------------------- */
.politica-de-privacidade {
  padding: 60px 0px;
}

.politica-de-privacidade h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.politica-de-privacidade p {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 15px;
  line-height: 1.65;
}

.politica-de-privacidade h3 {
  margin-top: 26px;
  font-size: 23px;
}

.politica-de-privacidade ul li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--secondary-color);
}

/* 
/* Página de erro 404
** ----------------------------------------------- */
.erro-404 {
  padding: 60px 0px;
}

.erro-404 h2 {
  font-size: 20px;
}

.erro-404 h3 {
  font-weight: 400;
  font-size: 20px;
}

.erro-404 p {
  font-size: 25px;
  margin-top: 17px;
}

/* Mapa do Site
** ----------------------------------------------- */
.mapa-site {
  padding: 54px 0px;
}

.mapa-site h2 {
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 500;
}

.mapa-site h3 {
  margin-bottom: 13px;
  margin-top: 24px;
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-color);
}

.mapa-site ul li {
  font-size: 16px;
  line-height: 1.45;
  list-style: none;
}

.mapa-site ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s all;
}

/* Página de contato
** ----------------------------------------------- */
.contato_page {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.box_contato {
  background: #fbfbfb;
  padding: 20px 10px 10px 10px;
  border-radius: 10px;
}

.box_contato p {
  color: #000;
  font-weight: 400;
}

.box_contato p i {
  color: var(--primary-color);
  padding-right: 5px;
}

.box_contato a:hover {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s all;
}

.box_map iframe {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
  height: 210px;
  border: 2px solid var(--primary-color);
}

/* Botboox (pop-up de formulários)
** ----------------------------------------------- */
.bootbox-body h3 {
  font-size: 20px;
  text-align: center;
  color: #28a745;
}

button.btn.btn-primary.bootbox-accept:hover,
button.btn.btn-primary.bootbox-accept:active,
button.btn.btn-primary.bootbox-accept:focus {
  background: #28a745;
  transition: 0.3s all;
}

/* SEO
** ----------------------------------------------- */
.conteudo-seo {
  padding: 60px 0px;
  overflow: hidden;
}

.conteudo-informacoes {
  padding: 56px 0px;
}

.conteudo-informacoes a {
  text-decoration: none;
  transition: 0.4s all;
}

.conteudo-informacoes a:hover {
  text-decoration: none;
  transform: translateY(-10px);
}

.conteudo-informacoes a:hover h4 {
  color: var(--primary-color);
  transition: 0.4s;
}

.conteudo-informacoes h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin: 10px 0px 0px 0px;
  padding: 10px;
  font-size: 14px;
}

.conteudo-informacoes img {
  border-radius: 19px;
}

.formulario-seo {
  padding: 64px 0px;
  min-height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
}

.formulario-seo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../imagens/banner/1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.formulario-seo h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.formulario-seo h1::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: var(--primary-color);
  width: calc(100% - 80%);
  height: 5px;
  border-radius: 2px;
}

.scroll-to-content {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 100px;
}

.scroll-to-content i {
  animation: arrowDown 2s infinite;
  color: #fff;
  font-size: 30px;
}

.scroll-to-content a:hover i {
  color: var(--primary-color);
  transition: 0.3s all;
}

.texto-seo p {
  font-size: 15px;
  text-align: justify;
}

.texto-seo h2,
.texto-seo h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-color);
}

.texto-seo ul li {
  font-size: 16px;
}

.multipla-imagens-seo {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.multipla-imagens-seo img {
  border: 1px solid #ddd;
  width: 200px;
}


/* BreadCrumb Seo
** ----------------------------------------------- */
.breadcrump-seo {
  margin-bottom: 24px;
}

.breadcrump-seo #breadcrumb {
  text-shadow: none;
}

.breadcrump-seo #breadcrumb a {
  color: var(--secondary-color);
  font-size: 14px;
}

.breadcrump-seo #breadcrumb a:hover {
  color: var(--primary-color);
  text-decoration: none !important;
}

.breadcrump-seo #breadcrumb i {
  color: var(--primary-color);
  font-size: 16px;
}

.breadcrump-seo #breadcrumb span.page-active {
  color: var(--primary-color);
}

/* Mais visitados
** ----------------------------------------------- */
section.mais-visitados {
  padding: 32px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
}

section.mais-visitados h3 {
  font-size: 26px;
  color: var(--secondary-color);
  font-weight: 700;
}

section.mais-visitados .swiper-button-next,
section.mais-visitados .swiper-button-prev {
  color: var(--secondary-color);
  top: var(--swiper-navigation-top-offset, 55%);
}

.box-mais-visitado {
  text-align: center;
  width: 200px;
  margin: 0 auto;
  margin-top: 32px;
}

.box-mais-visitado h6 {
  margin-top: 16px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}

.box-mais-visitado img {
  height: 200px;
  border-radius: 8px;
}

.box-mais-visitado a:hover {
  text-decoration: none;
}

.box-mais-visitado a:hover h6 {
  color: var(--secondary-color);
  transition: 0.3s all;
}

/* Regiões
** ----------------------------------------------- */
.regioes h3 {
  margin-top: 56px;
  font-size: 26px;
  color: var(--secondary-color);
  font-weight: 600;
}

nav.regioes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

nav.regioes a {
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  width: 19.42%;
  padding: 15px 0px;
  text-align: center;
  border-radius: 12px;
}

nav.regioes a:hover,
nav.regioes a:focus {
  text-decoration: none;
  background: var(--secondary-color);
  transition: 0.3s all;
}

div#RegioesBrModal p,
div#RegioesSpModal p {
  color: var(--secondary-color);
  font-size: 15px;
}

div#RegioesBrModal h5.modal-title,
div#RegioesSpModal h5.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Faixa Informações
** ----------------------------------------------- */
.faixa-informacoes {
  background: var(--primary-color);
  padding: 32px 0px;
  position: relative;
}

.faixa-informacoes::before {
  content: "";
  position: absolute;
  top: 0;
  width: 1000vw;
  height: 100%;
  background-color: var(--primary-color);
  left: calc(-100vw);
  z-index: -1;
}

.faixa-informacoes h2 {
  color: #fff;
  text-align: right;
  font-size: 36px;
  margin: 0;
}

.faixa-informacoes .btn-whatsapp {
  text-align: left;
}

.faixa-informacoes .btn-whatsapp a {
  background: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
}

.faixa-informacoes .btn-whatsapp a:hover {
  text-decoration: none;
  background: #24cc63;
  transition: 0.3s all;
  color: #fff;
}

/* Direitos autorais
** ----------------------------------------------- */
.texto-direitos-autorais {
  margin-top: 40px;
  font-size: 13px;
}

/* Recursos Adicionais
** ----------------------------------------------- */
header .container {
  max-width: 1300px;
}

footer .container {
  max-width: 1300px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  background: var(--primary-color)
}

.produtos_pg {
  padding: 60px 0;
}

/* Página Inicial
** ----------------------------------------------- */
.services-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* Títulos da Seção */
.services-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--primary-blue));
  border-radius: 2px;
}

.services-subtitle {
  font-size: 1.3rem;
  color: var(--dark-gray);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* Cards de Serviço */
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid transparent;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 18px;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px var(--shadow-medium);
  border-color: var(--primary-yellow);
}

/* Wrapper da Imagem */
.service-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 0.9;
}

.service-icon {
  font-size: 3rem;
  color: var(--white);
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.service-card:hover .service-icon {
  transform: scale(1);
}

/* Conteúdo do Card */
.service-content {
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary-yellow);
}

.service-description {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.service-card:hover .service-description {
  color: var(--primary-blue);
}

/* Animações de Entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.service-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsividade */
@media (max-width: 768px) {
  .services-title {
    font-size: 2.5rem;
  }

  .services-subtitle {
    font-size: 1.1rem;
  }

  .service-content {
    padding: 1.5rem 1rem;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .services-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .service-image-wrapper {
    height: 150px;
  }

  .service-icon {
    font-size: 2rem;
  }
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::after {
  left: 100%;
}

.service-card:hover .service-icon {
  animation: pulse 2s infinite;
}

/*btn contato - home*/

.btn_contato {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn_contato a {
  background: var(--primary-color);
  color: #fff;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
}


.btn_contato a:hover {
  background: var(--primary-yellow);
  transition: 0.4s all;
  text-decoration: none;
  color: #fff;
}

/*css clientes*/

/* Seção do Carrossel */
.logos-carousel-section {
  padding: 80px 0;
  background: url(../imagens/banner/2.webp) no-repeat center fixed;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.logos-carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #002060, #E6BC50);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0.1;
}

.logos-carousel-section .services-title {
  color: #E6BC50;
}

.logos-carousel-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #E6BC50, #002060);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  opacity: 0.1;
}

.logos-carousel-section .services-subtitle {
  color: #fff;
}

/* Header da seção */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #002060;
  margin-bottom: 15px;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #002060, #E6BC50);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 400;
  margin-top: 20px;
}

/* Wrapper do carrossel */
.logos-carousel-wrapper {
  position: relative;
  z-index: 2;
}

.logos-swiper {
  padding: 20px 0 60px 0;
}

/* Cards dos logos */
.logo-card {
  background: white;
  border-radius: 20px;
  padding: 40px 20px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 32, 96, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #002060, #E6BC50);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.logo-card:hover::before {
  transform: scaleX(1);
}

.logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 32, 96, 0.15);
}

.logo-container {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.logo-img {
  max-width: 180px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.4s ease;
}

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

.company-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #002060;
  margin-top: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo-card:hover .company-name {
  opacity: 1;
}

/* Navegação do Swiper */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 32, 96, 0.2);
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
  color: #002060;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #002060;
  transform: scale(1.1);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: white;
}

/* Paginação */
.swiper-pagination {
  bottom: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #002060;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #E6BC50;
  opacity: 1;
  transform: scale(1.2);
}

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

  .section-subtitle {
    font-size: 1rem;
  }

  .logo-card {
    padding: 30px 15px 25px;
    height: 240px;
  }

  .logo-container {
    height: 100px;
  }

  .logo-img {
    max-width: 140px;
    max-height: 80px;
  }

  .company-name {
    font-size: 1rem;
  }

  .logos-carousel-section {
    padding: 60px 0;
  }

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

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .logo-card {
    height: 220px;
    padding: 25px 10px 20px;
  }

  .logo-img {
    max-width: 120px;
    max-height: 70px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }
}

.quem-somos {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

div#company-description p {
  line-height: 25px;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
}

.expandable-content {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.expandable-content.expanded {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.read-more-button {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  padding: 0;
}

.read-more-button:focus {
  outline: none;
}

.mvv-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 32, 96, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 32, 96, 0.05);
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #002060, #E6BC50);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 32, 96, 0.15);
}

/* Ícones dos cards */

.card-icon {
  text-align: center;
  margin-bottom: 25px;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(135deg, #002060, #E6BC50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.mvv-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.card-svg {
  width: 40px;
  height: 40px;
  color: white;
  stroke-width: 2.5;
}

/* Conteúdo dos cards */

.card-content {
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002060;
  margin-bottom: 20px;
  position: relative;
}

.card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
  margin: 0;
}

/* Estilo específico para o card de valores */

.values-card .card-content {
  text-align: left;
}

.value-item {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.value-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #002060, #E6BC50);
  border-radius: 50%;
}

.value-item strong {
  color: #002060;
  font-weight: 600;
}

/* Cores específicas para cada card */
.mission-card .icon-wrapper {
  background: linear-gradient(135deg, #002060, #4a6fa5);
}

.vision-card .icon-wrapper {
  background: linear-gradient(135deg, #E6BC50, #f0d084);
}

.values-card .icon-wrapper {
  background: linear-gradient(135deg, #002060, #E6BC50);
}

/* Animações de entrada */
.mvv-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.mvv-card:nth-child(1) {
  animation-delay: 0.2s;
}

.mvv-card:nth-child(2) {
  animation-delay: 0.4s;
}

.mvv-card:nth-child(3) {
  animation-delay: 0.6s;
}

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

/* Responsividade */
@media (max-width: 992px) {
  .values-card {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .quem-somos {
    padding: 60px 0;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .company-description {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .company-description p {
    font-size: 1rem;
  }

  .mvv-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .card-svg {
    width: 35px;
    height: 35px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .company-description {
    padding: 25px 20px;
  }

  .mvv-card {
    padding: 25px 20px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .card-svg {
    width: 30px;
    height: 30px;
  }

  .value-item {
    font-size: 0.9rem;
    padding-left: 15px;
  }
}

/*contato - home*/

.btn-success {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/*banner home*/

.banner-home {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.banner-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(143deg, rgb(0 32 96) 0%, rgb(0 0 0 / 52%) 50%, rgba(230, 188, 80, 0.2) 100%), url(../imagens/banner/1.webp) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
  transition: transform 0.3s ease;
}

.banner-home:hover::before {
  transform: scale(1.02);
}

.banner-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.banner-home .row {
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.banner-home .col-lg-6 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 40px 20px;
  animation: fadeInUp 1s ease-out;
}

/* ===== TIPOGRAFIA E TEXTOS ===== */
.banner-home span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.banner-home span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary-yellow);
  border-radius: 1px;
}

.banner-home h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 20px 0;
  line-height: 1.1;
  text-shadow: 2px 2px 8px var(--shadow-heavy);
  animation: slideInLeft 0.8s ease-out 0.4s both;
  position: relative;
}

.banner-home h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), transparent);
  border-radius: 2px;
}

.banner-home h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  margin: 30px 0 40px 0;
  line-height: 1.6;
  text-shadow: 1px 1px 4px var(--shadow-medium);
  animation: slideInLeft 0.8s ease-out 0.6s both;
  max-width: 600px;
}

/* ===== BOTÃO DE CALL TO ACTION ===== */
.btn_banner {
  margin-top: 40px;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

.btn_banner a {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4a843 100%);
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 8px 25px var(--shadow-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn_banner a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn_banner a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--shadow-heavy);
  background: linear-gradient(135deg, #f0c960 0%, var(--primary-yellow) 100%);
  border-color: var(--white);
}

.btn_banner a:hover::before {
  left: 100%;
}

.btn_banner a:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ===== RESPONSIVIDADE ===== */

/* Tablets */
@media (min-width: 768px) {
  .banner-home .col-lg-6 {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 60px 40px;
  }

  .banner-home span {
    font-size: 18px;
    padding-left: 35px;
  }

  .banner-home span::before {
    width: 25px;
  }

  .btn_banner a {
    padding: 20px 45px;
    font-size: 19px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .banner-home .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 80px 60px;
  }

  .banner-home span {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .banner-home h2 {
    margin: 35px 0 50px 0;
  }

  .btn_banner {
    margin-top: 50px;
  }

  .btn_banner a {
    padding: 22px 50px;
    font-size: 20px;
  }
}

/* Telas grandes */
@media (min-width: 1200px) {
  .banner-home .container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .banner-home .col-lg-6 {
    padding: 100px 80px;
  }
}

/* Mobile pequeno */
@media (max-width: 576px) {
  .banner-home {
    height: 100vh;
  }

  .banner-home .col-lg-6 {
    padding: 30px 15px;
    text-align: center;
  }

  .banner-home span {
    font-size: 14px;
    letter-spacing: 1px;
    padding-left: 25px;
  }

  .banner-home span::before {
    width: 15px;
  }

  .banner-home h2 {
    margin: 20px 0 30px 0;
  }

  .btn_banner {
    margin-top: 30px;
  }

  .btn_banner a {
    padding: 16px 35px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .banner-home::before,
  .banner-home span,
  .banner-home h1,
  .banner-home h2,
  .btn_banner,
  .btn_banner a {
    animation: none;
    transition: none;
  }

  .banner-home:hover::before {
    transform: none;
  }
}

.banner-home {
  will-change: transform;
}

.btn_banner a {
  will-change: transform, box-shadow;
}

.btn_banner a:focus {
  outline: 3px solid var(--primary-yellow);
  outline-offset: 3px;
}

.btn_banner a:focus:not(:focus-visible) {
  outline: none;
}

.btn_banner a:focus-visible {
  outline: 3px solid var(--primary-yellow);
  outline-offset: 3px;
}


/* Keyframes - Animações
** ----------------------------------------------- */
@keyframes arrowDown {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 10px);
  }

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.topo {
  background: rgb(255 255 255 / 0%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  position: absolute;
  width: 100%;
}

.topo.topo-scroll-preparing {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 32, 96, 0.08);
}

/* Estado sticky (fixo) */
.topo.topo-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 32, 96, 0.1);
  z-index: 100;
  transform: translateY(-100%);
  opacity: 0;
}

.topo.topo-sticky.topo-sticky-active {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 8px 32px rgba(0, 32, 96, 0.15);
}

.topo.topo-sticky .container {
  transition: all 0.3s ease;
}

.topo.topo-sticky .topo-box {
  padding: 8px 0;
  transition: padding 0.3s ease;
}

.topo.topo-sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      var(--primary-blue) 0%,
      var(--primary-yellow) 50%,
      var(--primary-blue) 100%);
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}

.topo.topo-sticky.topo-sticky-active::before {
  opacity: 1;
}

.topo.topo-sticky.topo-sticky-active {
  background: rgb(0 32 96 / 65%);
  border-bottom: 1px solid rgba(0, 32, 96, 0.12);
  box-shadow: 0 8px 32px rgba(0, 32, 96, 0.15), 0 2px 8px rgba(0, 32, 96, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.topo-placeholder {
  width: 100%;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-fixed {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9998;
  animation: whatsappEntrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s both;
}

.whatsapp-icon {
  position: relative;
  display: inline-block;
}

.whatsapp-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-green-dark) 100%);
  border-radius: 50%;
  text-decoration: none;
  box-shadow:
    0 8px 25px rgba(37, 211, 102, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.whatsapp-icon a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-icon a:hover::before {
  opacity: 1;
}

.whatsapp-icon a i {
  font-size: 28px;
  color: var(--white);
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

/* Estados de hover e interação */
.whatsapp-icon a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 15px 35px rgba(37, 211, 102, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #2ee673 0%, var(--whatsapp-green) 100%);
}

.whatsapp-icon a:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 8px 20px rgba(37, 211, 102, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Efeito de pulso sutil */
.whatsapp-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: var(--whatsapp-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

/* Indicador de notificação (opcional) */
.whatsapp-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #ff4757;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: notificationBlink 1.5s infinite;
  z-index: 3;
}

/* Tooltip elegante */
.whatsapp-icon a::after {
  content: "Fale Conosco";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-right: 15px;
  z-index: 4;
}

.whatsapp-icon a::after {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon:hover a::after {
  opacity: 1;
  visibility: visible;
  margin-right: 10px;
}

.whatsapp-icon a:hover::after {
  content: "Fale Conosco";
}

@keyframes whatsappEntrance {
  0% {
    transform: translateY(100px) scale(0);
    opacity: 0;
  }

  50% {
    transform: translateY(-10px) scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes whatsappPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

@keyframes notificationBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  .topo.topo-sticky {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .topo.topo-sticky .topo-box {
    padding: 6px 0;
  }

  .whatsapp-fixed {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon a {
    width: 55px;
    height: 55px;
    border-width: 2px;
  }

  .whatsapp-icon a i {
    font-size: 24px;
  }

  /* Esconder tooltip no mobile */
  .whatsapp-icon a::after {
    display: none;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .topo.topo-sticky {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .whatsapp-icon a {
    width: 60px;
    height: 60px;
  }

  .whatsapp-icon a i {
    font-size: 26px;
  }
}

.whatsapp-icon a:focus {
  outline: 3px solid var(--primary-yellow);
  outline-offset: 3px;
}

.whatsapp-icon a:focus:not(:focus-visible) {
  outline: none;
}

.whatsapp-icon a:focus-visible {
  outline: 3px solid var(--primary-yellow);
  outline-offset: 3px;
}

.topo {
  will-change: transform, background, box-shadow;
  transform: translateZ(0);
}

.topo.topo-sticky {
  will-change: transform, opacity;
}

.whatsapp-icon a {
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.topo.topo-sticky.topo-sticky-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.topo.topo-sticky.topo-sticky-active:hover::after {
  opacity: 1;
}

.whatsapp-icon a:active::before {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@media (prefers-color-scheme: dark) {
  .topo.topo-sticky {
    background: rgba(0, 32, 96, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.3),
      0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .topo.topo-sticky:hover {
    background: rgba(0, 32, 96, 0.98);
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.4),
      0 4px 12px rgba(0, 0, 0, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {

  .topo,
  .topo.topo-sticky,
  .whatsapp-fixed,
  .whatsapp-icon a,
  .whatsapp-icon::after {
    animation: none !important;
    transition: none !important;
  }

  .topo.topo-sticky {
    transform: none !important;
  }

  .whatsapp-icon a:hover {
    transform: none !important;
  }
}

@media (min-width: 1025px) {
  .topo.topo-sticky {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }

  .topo.topo-sticky:hover {
    background: rgb(0 32 96);
    box-shadow: 0 12px 40px rgba(0, 32, 96, 0.18), 0 4px 12px rgba(0, 32, 96, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

.btn-contato {
  list-style-type: none;
  position: relative;
  display: inline-block;
}


.btn-contato a {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}


.btn-contato a:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.05);
}


.btn-contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50px;
  z-index: 0;
  animation: pulse 2s infinite;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/** Serviços Page */

.servicos-page {
    background: #fbfbfb;
}

.servicos-page p {
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
}

.img-servicos img {
    width: 300px;
    margin-bottom: 20px;
    object-fit: cover;
    height: 300px;
    padding: 10px;
}

.conteudo-informacoes img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.services-section a:hover {
    text-decoration: none;
}

li.btn-contato a {
    color: #fff;
    margin-left: 10px;
    margin-top: 4px;
}

li.btn-contato {
    border: none;
}

/* =========================================================
   NOVO PADRÃO VISUAL DAS PÁGINAS DE SERVIÇOS
   ========================================================= */

.pagina-servico {
    padding: 55px 0 70px;
}

.conteudo-servico {
    padding-right: 25px;
}

/* Imagem principal */

.imagem-destaque-servico {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.imagem-destaque-servico img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* Introdução destacada */

.introducao-servico {
    margin-bottom: 35px;
    padding: 22px 25px;
    background: #f5f7fa;
    border-left: 4px solid #002c6d;
    border-radius: 4px;
}

.introducao-servico p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
}

/* Títulos e textos */

.conteudo-servico h2 {
    margin-top: 38px;
    margin-bottom: 15px;
    font-size: 27px;
    line-height: 1.25;
    color: #17243a;
}

.conteudo-servico h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.3;
    color: #17243a;
}

.conteudo-servico p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.conteudo-servico ul {
    margin: 18px 0 25px;
    padding-left: 22px;
}

.conteudo-servico li {
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 1.55;
}

/* Listas em duas colunas */

.lista-servico-duas-colunas {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 25px;
    padding: 0 !important;
    list-style: none;
}

.lista-servico-duas-colunas li {
    position: relative;
    margin: 0;
    padding-left: 25px;
}

.lista-servico-duas-colunas li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    color: #002c6d;
}

/* Cartões de benefícios */

.beneficios-servico {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 25px 0 40px;
}

.beneficio-servico {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e4e8ee;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.beneficio-servico h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.beneficio-servico p {
    margin: 0;
    font-size: 15px;
}

/* Caixa de documentação */

.documentacao-servico {
    margin: 40px 0;
    padding: 28px 30px;
    background: #f2f6fb;
    border-radius: 8px;
}

.documentacao-servico h2 {
    margin-top: 0;
}

/* Chamada comercial */

.chamada-servico {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 45px 0;
    padding: 30px;
    background: #00245c;
    border-radius: 8px;
    color: #ffffff;
}

.chamada-servico h2 {
    margin: 0 0 8px;
    color: #ffffff;
}

.chamada-servico p {
    margin: 0;
}

.botao-chamada-servico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    min-height: 46px;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    color: #00245c;
    text-align: center;
}

.botao-chamada-servico:hover {
    color: #00245c;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Caixa do formulário */

.caixa-formulario-servico {
    margin-top: 45px;
    padding: 32px;
    background: #f5f7fa;
    border: 1px solid #e1e6ed;
    border-radius: 8px;
}

.caixa-formulario-servico h2 {
    margin-top: 0;
}

.caixa-formulario-servico .form-control {
    min-height: 44px;
}

.caixa-formulario-servico textarea.form-control {
    min-height: 130px;
}

.caixa-formulario-servico .btn-envia {
    min-height: 46px;
    font-size: 16px;
    font-weight: 600;
}

/* Barra lateral */

.sidebar {
    position: sticky;
    top: 25px;
}

.sidebar-box {
    padding: 24px;
    background: #f7f8fa;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
}

.titulo-sidebar {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #002c6d;
    font-size: 24px;
}

.sidebar-conteudo {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-conteudo li {
    border-bottom: 1px solid #e0e4e9;
}

.sidebar-conteudo li:last-child {
    border-bottom: 0;
}

.sidebar-conteudo a {
    display: block;
    padding: 11px 8px;
    line-height: 1.4;
    transition: padding-left 0.2s ease;
}

.sidebar-conteudo a:hover {
    padding-left: 13px;
    text-decoration: none;
}

.sidebar-conteudo a[aria-current="page"] {
    padding-left: 13px;
    border-left: 3px solid #002c6d;
    font-weight: 700;
    color: #002c6d;
}

/* Tablet */

@media (max-width: 991px) {

    .pagina-servico {
        padding: 35px 0 50px;
    }

    .conteudo-servico {
        padding-right: 0;
    }

    .sidebar {
        position: static;
        margin-top: 40px;
    }

    .imagem-destaque-servico img {
        height: 280px;
    }

    .chamada-servico {
        align-items: flex-start;
        flex-direction: column;
    }

    .botao-chamada-servico {
        width: 100%;
    }
}

/* Celular */

@media (max-width: 767px) {

    .imagem-destaque-servico img {
        height: 220px;
    }

    .conteudo-servico h2 {
        font-size: 23px;
    }

    .conteudo-servico h3 {
        font-size: 19px;
    }

    .lista-servico-duas-colunas,
    .beneficios-servico {
        grid-template-columns: 1fr;
    }

    .introducao-servico,
    .documentacao-servico,
    .chamada-servico,
    .caixa-formulario-servico {
        padding: 22px;
    }
}

.botao-chamada-servico {
    border: 0;
    cursor: pointer;
}

#solicitar-orcamento {
    scroll-margin-top: 350px;
}

.titulo-card-servico {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin: 8px 8px 0;
    text-align: center;
}

@media (max-width: 1199px) {
    .titulo-card-servico {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .titulo-card-servico {
        font-size: 18px;
        line-height: 1.25;
    }
}

.informacoes-box {
    margin-bottom: 30px;
}

.informacoes-box .informacoes-link {
    display: block;
    text-decoration: none;
}
/* Alinhamento horizontal do menu superior */
.topo .menu-box > ul {
    display: flex;
    align-items: center;
}

/* Mantém todos os itens do menu centralizados */
.topo .menu-box > ul > li {
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
}

/* Corrige o alinhamento do botão Contato */
.topo .menu-box > ul > li.btn-contato {
    position: relative;
    display: flex;
    align-items: center;
}

/* Botão de contato */
.topo .menu-box > ul > li.btn-contato > a {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    margin: 0;
    line-height: 1;
}

.bloco-responsavel-tecnico {
    margin: 50px 0;
}

.cabecalho-responsavel-tecnico {
    margin-bottom: 15px;
}

.selo-responsavel-tecnico {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f2f57;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.card-responsavel-tecnico {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #d9e3ee;
    border-left: 5px solid #d4a437;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.icone-responsavel-tecnico {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f2f57, #1f4d80);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.conteudo-responsavel-tecnico h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    color: #0f2f57;
}

.conteudo-responsavel-tecnico p {
    margin-bottom: 14px;
    color: #333333;
    line-height: 1.7;
}

.lista-responsavel-tecnico {
    margin: 18px 0 0;
    padding-left: 18px;
}

.lista-responsavel-tecnico li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333333;
}

@media (max-width: 767px) {
    .card-responsavel-tecnico {
        flex-direction: column;
        padding: 22px;
    }

    .icone-responsavel-tecnico {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .conteudo-responsavel-tecnico h2 {
        font-size: 22px;
    }
}
