<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* ======================= RESET ======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-top:80px;
  margin-top: 62px; /* ajuste conforme a altura da navbar */
  overflow-x:hidden;/*antes não tinha isso*/
}

/* ======================= TEXTO E FONTES ======================= */

h1, h2, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color:#0B004A;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.7rem;
  line-height:4.7rem;
  color:#0B004A;
  padding-bottom:10px;  
}

h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.7rem;
  line-height:3.7rem;
  color:#0B004A;
  padding-bottom:10px;  
}

h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height:3rem;
  color:#0B004A;
  padding-bottom:30px; 
}
.texto-geral {
  font-family: 'Inconsolata', sans-serif;
  color: #4a4a4a;
}

/* ======================= TOP BAR ======================= */
.top-bar {
  display: flex;
  color:#B87800;
  width: 100%;
  overflow:hidden;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  background-color: #0B004A;
  z-index: 999;
  flex-wrap: wrap;
}

/*.top-bar .contacts a {
  color: #B87800;
  margin-left: 15px;
  text-decoration: none;
}

.top-bar .contacts a:hover {
  font-size: 105%;
  color: #ffffff; /* nova cor da fonte ao passar o mouse
}

.instagram-icon i {
  font-size: 25px; /* ou 40px, 50px... como preferir 
  color: #B87800; /* opcional: cor do ícone 
}
.instagram-icon i:hover {
  font-size: 27px; /* ou 40px, 50px... como preferir 
  color: #ffffff; /* opcional: cor do ícone 
}

.envelope-icon i {
  font-size: 25px; /* ou 40px, 50px... como preferir 
  color: #B87800; /* opcional: cor do ícone 
}
.envelope-icon i:hover {
  font-size: 27px; /* ou 40px, 50px... como preferir 
  color: #ffffff; /* opcional: cor do ícone 
}*/

.logo {
  font-size: 1rem; /* ou 40px, 50px... como preferir */
  align-items: center;
  text-align: center;
  padding-right:4rem;
}
/* ======================= HEADER / NAVBAR ======================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-bottom:1rem;
}

.navbar {
  display: fixed;
  text-align: center;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  font-family: 'Inconsolata', sans-serif;
  font-size: 17px;
  color: #333;
}
.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .logo img {
  max-height: 30px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000000;
  font-family: 'Inconsolata', sans-serif;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #B87800;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #000;
  cursor: pointer;
}

.nav-link.active {
  color: #B87800; /* cor quando ativo */
  font-weight: bold;
  border-bottom: 2px solid #B87800; /* ou outro estilo */
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/*  
@keyframes subtleMove {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(-2deg);
  }
}*/

@keyframes pop {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(2);
  }
}

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #006c31;
}

.whatsapp-float i {
  z-index: 2;
}

.whatsapp-texto-hover {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  right: 70px; /* posiciona a aba à esquerda */
  transform: translateY(-50%);
  background-color: #006c31;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

.whatsapp-float:hover .whatsapp-texto-hover {
  visibility: visible;
  opacity: 1;
}

/* ======================= SLIDER ======================= */
.swiper-container {
 max-width: 100%;
  margin: 0 auto;
  height: 100vh; /* ou qualquer altura que desejar */
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* centraliza verticalmente */
  text-align: center;
  padding: 20px;
}
.slide-button {
  position: absolute;
  bottom: 50px;               /* &lt;--- Ajuste aqui */
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 25px;
  font-size: 18px;
  color: #fff;
  background-color:#0B004A;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 11;
}
.slide-button:hover {
  background-color: #B87800;
  color: #0B004A;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* escurece a imagem */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
}

.slide-text {
  color: white;
  max-width: 100%;
}

.slide-title {
display:inline-block;
  font-size: 5rem;
  font-weight: 800;
  color: white !important;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  text-align:left;
  z-index: 10;
  animation: bounce-text 5s ease-in-out infinite;
}

.slide-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-family: 'Inconsolata', sans-serif;
}
.swiper-pagination-bullet {
  background-color: #ffffff00 !important; /* ou qualquer cor desejada */
  opacity: none;
    width: 24px;
  height: 24px;
  margin: 0 12px; /* espaço entre eles */
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background-color: #B8780000 !important; /* cor da bolinha ativa */
  opacity: none;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important; /* ou qualquer cor que quiser */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #B87800 !important; /* cor ao passar o mouse */
}
/* =======================CONTAINERS E GRID ======================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.servico {
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.servico h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
}

.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top:30px;
}

.texto-final {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height:2rem;
  color:#4A4a4a;
  padding-top:20px;
  padding-bottom:20px;
}


/* ===== OVERLAY DE IMAGEM ===== */
.imagem-overlay {
  position: relative;
}

.imagem-overlay img {
  width: 100%;
  height: 100%;           /* Faz a imagem crescer junto com o bloco pai */
  object-fit: cover;      /* Cobre o espaço mantendo o recorte proporcional */
  display: block;
  aspect-ratio: 16 / 9;
}

.conteudo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.conteudo h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}
/* ===== BOTÕES ===== */
.botao,
.botao.grande {
  position: absolute;
  background-color: #B87800;      /* Dourado elegante */
  color: #0B004A;
  padding: 12px 30px;
  bottom: 30px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index:10;
}
.botao2 {
   background-color: #B87800;      /* Dourado elegante */
  color: #0B004A;
  padding: 12px 30px;
  bottom: 30px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index:10;
}
.botao:hover {
  background-color: #0B004A;
  color:#fff;
}

.botao2:hover {
  background-color: #0B004A;
  color:#fff;
}
.botao-central {
  margin-top: 40px;
  text-align: center;
  z-index:10;
}

.botao,
.botao2 {
  width: 100%;
  max-width: 300px;
}
/* ===== INTRO ===== */
.intro-servicos {
  padding: 60px 20px;
  background-color: #ffffff;
}

.intro-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-right:30px;
}

.intro-texto {
  font-size: 2.5rem; 
  flex: 1 1 50%;
  padding-right: 30px;
}

.intro-texto-left h2 {
  font-size: 4rem;
  flex: 1 1 50%;
  padding-left: 0px;
}
.linha-topo {
  width: 150px;
  height: 1px;
  background-color: #494949;
  margin-bottom: 20px;
}

.intro-texto h1 {
  margin-bottom: 20px;
  line-height: 1.2;
  color:#0B004A;
}

.intro-texto h2 {
  margin-bottom: 20px;
  line-height: 1.2;
  color:#0B004A;
}

.intro-texto p {
  font-family: 'Inconsolata', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
}

.intro-imagem {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
  text-align: right;
}

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

.intro-imagem-left {
  flex: 1 1 50%;
  text-align: left;
}

.intro-imagem-left img {
  width: 100%;
  height:auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* ===== SOBRE ===== */
.texto-geral-sobre {
  font-family: 'Inconsolata', sans-serif;
  color: #4a4a4a;
  padding-left: 30px;
}

.sobre-servicos {
  padding: 60px 20px;
  background-color: #ffffff;
}

.sobre-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-right:30px;
}

.sobre-texto {
  font-size: 2.5rem;
  flex: 1 1 50%;
  padding-left:30px;
}

.linha-topo-sobre {
  width: 150px;
  height: 1px;
  background-color: #494949;
  margin-bottom: 20px;
}

.sobre-texto h1 {
  margin-bottom: 20px;
  line-height: 1.2;
  color:#0B004A;
}

.sobre-texto h2 {
  margin-bottom: 20px;
  line-height: 1.2;
  color:#0B004A;
}

.sobre-imagem {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
  text-align: right;
}

.sobre-flex.invertido {
  flex-direction: row-reverse;
  padding-left: 30 px;
}

.sobre-imagem img {
  width: 100%;
  height:100%;
  object-fit: cover;
  display:block;
}
/* ===== PARCEIRO ===== */

.parceiro-bullet {
  font-family: 'Inconsolata', sans-serif;
  font-size:1.5rem;
  color: #4a4a4a;
  padding-left: 50px;
}

.parceiro {
  font-family: 'Inconsolata', sans-serif;
  font-size:1.5rem !important;
  color: #4a4a4a;
}

.parceiro-final {
  position: relative;
  overflow: hidden;
  text-align: center;   
}

/*WIDGET PARCEIRO*/
.parceiro-widget a {
  text-decoration: none !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
}

.parceiro-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #000cf6;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatIn 0.8s ease-out, subtleMove 2.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.parceiro-float:hover {
  transform: scale(1.2);
  background-color: #0c0064;
  text-decoration: none !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
}

.parceiro-widget i {
  font-size: 30px;  /* ou o tamanho desejado */
  display: block;
  line-height: 1;
  text-decoration: none !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
}
.parceiro-widget a,
.parceiro-widget a:hover,
.parceiro-widget a:focus,
.parceiro-widget a:visited {
  text-decoration: none !important;
  color: white;
  border: none !important;
  outline: none !important;
}

.parceiro-texto-hover {
  visibility: hidden;
  opacity: 0;
  white-space: nowrap;
  background-color: #0c0064;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  position: absolute;
  left: 70px;
  bottom: 15px;
  z-index: 998;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

.parceiro-float:hover .parceiro-texto-hover {
  visibility: visible;
  opacity: 1;
}

/* ===== SERVIÇOS ===== */
.linha-topo2 {
  width: 150px;
  height: 1px;
  background-color: #49494900;
  margin-bottom: 20px;
  margin-top: 30px;
}

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

.grid-perguntas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  text-align:center;
}

.faqbotao {
  position: absolute;
  background-color: rgba(200, 127, 0, 0.7);      /* Dourado elegante */
  color: #0B004A;
  
  padding: 12px 30px;
  bottom: 10px;
  border: none;
  font-size:0.7rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index:10;
}
.faqbotao:hover {
  background-color: #0B004A;
  color:#fff;
}

.faqbotao {
  width: 100%;
  max-width: 300px;
}

.faq {
  background-color: #ffffff;
  padding: 60px 20px;
}

.container-faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-titulo {
  font-size: 3.7rem;
  font-family: 'Poppins', sans-serif;
  color: #0B004A;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.faq-pergunta {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'Inconsolata', sans-serif;
  color: #0B004A;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  position: relative;
}

.faq-pergunta::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-pergunta::after {
  content: '−'; /* símbolo de menos */
}

.faq-resposta {
  display: none;
  padding: 0 15px 15px;
  font-family: 'Inconsolata', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.faq-item.open .faq-resposta {
  display: block;
}

/* ===== FOOTER =====
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}
.footer {
  background-color: #ededed;
  color: #0B004A;
  padding: 40px 20px;
}

.container-footer {
  display: flex;
  justify-content: space-between;
  align-items: center; /* centraliza verticalmente 
  width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 1;
  display:block;
  justify-content: center; /* centraliza horizontalmente 
}

.footer-logo img {
  max-width: 200px;
}

.footer-servicos {
  flex: 2;
  display: flex;
  justify-content:flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.coluna-servicos ul {
  list-style: none;
  padding: 0;
}

.coluna-servicos li {
  margin-bottom: 10px;
}

.coluna-servicos a {
  color: #0B004A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.coluna-servicos a:hover {
  color: #B87800;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.linha-footer {
  width: 150px;
  height: 1px;
  background-color: #494949;
  margin: 0 auto 20px auto; /* centraliza horizontalmente e mantém o espaço abaixo 
}

/*==========BLOG==========*/
.top-bar-blog {
  display: flex;
  color:#B87800;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  background-color: #b87800;
  z-index: 999;
}

.botao-blog {
  position: relative;
  background-color: #B87800;      /* Dourado elegante */
  color: #0B004A;
  padding: 12px 30px;
  bottom: 30px;
  border: none;

  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index:10;
}
.botao2-blog {
   background-color: #B87800;      /* Dourado elegante */
  color: #0B004A;
  padding: 12px 30px;
  bottom: 30px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index:10;
}
.botao-blog:hover {
  background-color: #0B004A;
  color:#fff;
}

.botao2-blog:hover {
  background-color: #0B004A;
  color:#fff;
}
.botao-central-blog {
  margin-top: 40px;
  text-align: center;
  z-index:10;
}

.conteudo-blog {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.blog-materias {
  padding: 60px 20px;
  background-color: #ffffff;
}

.blog-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-right:30px;
}

.blog-texto {
  font-size: 2.5rem;
  flex: 1 1 50%;
  padding-left:30px;
}

.blog-bullet {
  font-family: 'Inconsolata', sans-serif;
  font-size:1.5rem;
  color: #4a4a4a;
  padding-top: 30px;
  padding-left: 50px;
}

.blog1-icon i {
  font-size: 25px; /* ou 40px, 50px... como preferir */
  color: #0B004A; /* opcional: cor do ícone */
}
.blog1-icon i:hover {
  font-size: 27px; /* ou 40px, 50px... como preferir */
  color: #ffffff; /* opcional: cor do ícone */
}

.blog2-icon i {
  font-size: 25px; /* ou 40px, 50px... como preferir */
  color: #0B004A; /* opcional: cor do ícone */
}
.blog2-icon i:hover {
  font-size: 27px; /* ou 40px, 50px... como preferir */
  color: #ffffff; /* opcional: cor do ícone */
}
.especialblog {
  font-size: 2rem;
  color: black !important;
}
.especialh1 {
  font-size: 2.5rem !important;
}
.especialh2 {
  font-size: 2rem !important;
}
.especial17 {
  font-size: 1.7rem !important;
}
.textobullet{
padding-top:20px;
font-size:1.4rem;
}

/* ======================= FOOTER ======================= */
/* Footer Container */
.site-footer {
  background: #d3d3d3;
  color: #00000000;
  margin-top: 60px;
}

/* Grid 4 colunas */
.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;/*repeat(4, 1fr);*/
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0px  40px; /* top: 60px | sides: 20px | bottom: 40px */
  width: 100%;
}

/* Colunas */
.footer-col h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  color: #383838;
  margin-bottom: 8px;
}
.footer-col a {
  color: #383838;
  text-decoration: none;
}
.footer-col a:hover {
  text-decoration: underline;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Serviços */
.services-title {
  grid-column: span 2;
  margin-bottom: 20px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: center;
}
.services-grid ul li {
  margin-bottom: 10px;
}

/* Logo */
.logo-col h2 {
 flex: 1;
  display:block;
  justify-content: center; /* centraliza horizontalmente */
}

.logo-col img {
  max-width: 200px;
}


/* Mapa */
.map-col iframe {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

/* Créditos */
.footer-bottom {
  border-top: 1px solid rgb(57, 57, 57);
  justify-content: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #383838;
}
.footer-links {
  margin-top: 5px;
  margin-bottom: 10px;

}
.footer-links a {
  color: #383838;
  font-size: 0.8rem;
  text-decoration: none;
  margin: 0 8px;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-links span {
  color: #555;
}

/* Tablet */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .services-col {
    grid-column: span 2;
  }
 *{
  box-sizing: border-box;
}
}

/* Mobile */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 10px 20px; /* top: 30px | sides: 10px | bottom: 20px */
  }
  .services-grid {
    display:block;
  }
  .map-col iframe {
    height: 250px;
  }
   *{
  box-sizing: border-box;
}

}

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

/* Menu mobile toggle */
@media (max-width: 768px) {
  section:first-of-type {
    margin-top: 80px; /* altura exata do menu*/ 
  }
}
   @media (max-width: 768px) {
    .top-bar {
      padding: 4px 10px;  /*Ajuste o padding para telas menores */
      top: 0;
      left: 0;
      right: 0;
      width: auto;
      height: auto;
      display:flex;
      object-fit:contain;
      z-index: 1000;
      text-align:center;
      align-items:center;
    }
  }
@media (max-width: 1024px) {
  .navbar-content {
    flex-direction:row;
    align-items: flex-start;
    width: 100%;
  }

  nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #fff;
    position:relative;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }

  .slide-title {
    font-size: 2.5rem;
    text-align: center;
  }

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

  .swiper-container {
    height: 60vh;
  }

  .grid-servicos {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-perguntas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

  .intro-flex {
    flex-direction: column;
  }

  .intro-texto {
    padding-right: 0;
    text-align: center;
    font-size: 2rem;
  }

  .intro-imagem {
    text-align: center;
    margin-top: 20px;
  }

  .sobre-flex,
  .sobre-flex.invertido {
    flex-direction: column;
    text-align: center;
  }

  .sobre-texto {
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
  }

  .sobre-imagem {
    text-align: center;
  }

  .container-footer {
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    gap: 30px;
  }

  .footer-servicos {
    justify-content: center;
    flex-direction: column;
    gap: 0px;
  }

  .footer-logo img {
    max-width: 200px;
  }

  .botao,
  .botao2 {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

   .faqbotao {
    padding: 10px 20px;
    font-size: 0.5rem;
  }

  .slide-button {
    bottom: 20px;
    font-size: 1rem;
  }

  .slide-text {
    padding: 0 10px;
  }

  .navbar .logo img {
    height: 40px;
  }

  .container {
    padding: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .intro-texto h2 {
    font-size: 1.8rem;
  }

  .faq-titulo {
    font-size: 2rem;
  }

  .faq-pergunta {
    font-size: 1.1rem;
  }
}

/* Telas médias (tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-servicos {
    grid-template-columns: 1fr;
  }

   *{
  box-sizing: border-box;
}

  .intro-flex {
    flex-direction: column;
  }

  .intro-texto,
  .intro-imagem,
  .sobre-imagem {
    width: 100%;
    text-align: center;
  }

  .intro-texto {
    padding: 0;
  }

  .footer-servicos {
    gap: 60px;
  }

  .slide-title {
    font-size: 3rem;
  }

  .slide-subtitle {
    font-size: 1.2rem;
  }

  .swiper-container {
    height: 70vh;
  }
}

/*script completo para o beadcumbs, para quando tiver um blog
&lt;script type="application/ld+json"&gt;
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "name": "Home",
      "item": "https://momentvmopvs.com"
    },
    {
      "@type": "ListItem",
      "position": 2,
      "name": "Blog",
      "item": "https://momentvmopvs.com/blog"
    }
  ]
}
&lt;/script&gt;
&lt;script type="application/ld+json"&gt;
{
  "@context": "https://schema.org",
  "@type": "BlogPosting",
  "headline": "Título do Post",
  "author": {
    "@type": "Person",
    "name": "Seu Nome"
  },
  "publisher": {
    "@type": "Organization",
    "name": "Momentvm Opvs",
    "logo": {
      "@type": "ImageObject",
      "url": "https://momentvmopvs.com/logo.png"
    }
  },
  "datePublished": "2024-11-15",
  "image": "https://momentvmopvs.com/imagens/post.jpg",
  "mainEntityOfPage": {
    "@type": "WebPage",
    "@id": "https://momentvmopvs.com/blog/titulo-do-post"
  }
}
&lt;/script&gt;
breadcumb completo para serviços e produtos
&lt;script type="application/ld+json"&gt;
{
  "@context": "https://schema.org/",
  "@type": "Product",
  "name": "Nome do Produto",
  "image": "https://momentvmopvs.com/imagens/produto.jpg",
  "description": "Descrição breve do produto",
  "brand": {
    "@type": "Brand",
    "name": "Momentvm Opvs"
  },
  "offers": {
    "@type": "Offer",
    "url": "https://momentvmopvs.com/produto",
    "priceCurrency": "BRL",
    "price": "149.90",
    "availability": "https://schema.org/InStock"
  }
}
&lt;/script&gt;

*/</pre></body></html>