* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Segoe UI', Arial, Helvetica, sans-serif;
  list-style: none;
}

/* Ajuste de Cor Global para combinar com sua logo */
:root {
  --azul-store: #004aad;
  --apple-gray: #1d1d1f;
  --primary-blue: #004aad;
}

.text-primary {
  color: var(--azul-store) !important;
}

.btn-primary {
  background-color: var(--azul-store) !important;
  border: none;
}

/* Garante que o footer não suba se a página tiver pouco conteúdo */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  /* IMPORTANTE: Compensar a altura do header fixo */
  padding-top: 85px;
}

main {
  flex: 1;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 9999;
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img-logo {
  height: 100px;
  /* Ajustado para não quebrar o header */
  transition: transform 0.3s ease;
}

.img-logo:hover {
  transform: scale(1.05);
}

/* Navegação e Links */
.nav-wrapper {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #1d1d1f;
  /* Cor padrão Apple */
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
  position: relative;
  transition: color 0.3s ease;
}

/* Linha animada sob o link */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #004aad;
  /* Sua cor azul */
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #004aad;
}

.nav-link:hover::after {
  width: 100%;
}

/* Botão de Destaque no Menu (CTA) */
.nav-cta {
  text-decoration: none;
  background-color: #004aad;
  /* Sua cor azul */
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 74, 173, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
  filter: brightness(1.1);
}

/* Hamburguer Customizado */
.hamburguer {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10000;
}

.hamburguer span {
  width: 28px;
  height: 2px;
  background: #1d1d1f;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Ajuste de Respiro para Header de 150px */
main {
  padding-top: 0;
  background-color: #ffffff;
}

/* Título com Estilo de Grife */
.contact-hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at top right, rgba(0, 74, 173, 0.05), transparent);
}

.contact-hero h1 {
  font-size: 3.5rem;
  letter-spacing: -2px;
  color: #1d1d1f;
}

/* Card de Formulário Premium */
.glass-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 24px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
}

/* Inputs Minimalistas */
.form-control-premium {
  border: 1px solid #e5e5e7;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.form-control-premium:focus {
  background: #fff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
}

/* Botão de Alta Performance */
.btn-send {
  background: var(--primary-blue);
  border: none;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-send:hover {
  filter: brightness(1.2);
  transform: scale(1.02);
}

/* Ícones de Contato Laterais */
.contact-item-icon {
  width: 56px;
  height: 56px;
  background: #f5f5f7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  transition: 0.3s;
}

.contact-card-sidebar:hover .contact-item-icon {
  background: var(--primary-blue);
  color: white;
}


.menu li a {
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.menu li a:hover {
  color: #004aad;
  transform: scale(1.15);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2d2d2d;
  padding-top: 60px;
  margin-bottom: 50px;
  position: relative;
}

/* linha azul */
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #2f6df6;
  margin: 12px auto 0;
  border-radius: 2px;
}

.carousel-caption {
  top: 55%;
  left: 15%;
  transform: translateY(-50%);
  text-align: left;
  right: auto;

}



.carousel-caption h2 {
  color: rgb(255, 255, 255);
}

.carousel-item img {
  height: 600px;
  /* altura no desktop */
  object-fit: cover;
  /* mantém proporção e corta excesso */
}



p {
  font-size: 1.2rem;
}

/* Estilo Base do Botão Premium */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 45px;
  background-color: #004aad;
  /* Azul Store Web */
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 17px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Ícone do Botão */
.btn-premium i {
  margin-left: 35px;
  font-size: 1rem;
  transition: transform 0.5s ease;
}

/* Efeito de Brilho Interno (Overlay) */
.btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

/* Hover: A Mágica Acontece */
.btn-premium:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 74, 173, 0.4);
  background-color: #0056c7;
  /* Azul levemente mais claro */
}

.btn-premium:hover::before {
  left: 100%;
  /* O brilho atravessa o botão */
}

.btn-premium:hover i {
  transform: translateX(5px);
  /* Seta dá um "pulo" para a direita */
}

/* Efeito de Clique (Active) */
.btn-premium:active {
  transform: translateY(0) scale(0.98);
}



.button-banner {
  background-color: #004aad;
  color: white;
  padding: 6px 42px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.button-banner:hover {
  background-color: #616161;
  transform: scale(1.05);
}

.section-serviços {
  display: grid;
  /* O auto-fit evita que os cards esmaguem, criando novas linhas quando necessário */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 30px;
  /* Reduzi um pouco para dar mais respiro */
  row-gap: 30px;
  padding: 60px 20px;
  /* Aumentei o respiro vertical */
  max-width: 1300px;
  /* Limita a largura máxima para não esticar demais em monitores ultra-wide */
  margin: 0 auto;
}



.section-serviços .card {
  width: 100%;
  border: none;
  border-radius: 12px;
  background-color: rgb(233, 233, 233);
  overflow: hidden;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* 🔥 Efeito ao passar o mouse */
.section-serviços .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}


/* Corpo do card */
.section-serviços .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Empurra o botão para o final e mantém o título no topo */
  height: 80%;

}

/* BOTÃO DOS CARDS - ESTADO NORMAL */
.section-serviços .btn-primary {
  background-color: #004aad !important;
  /* Cor sólida Azul Store */
  color: #ffffff !important;
  /* Texto sempre branco */
  border: none !important;
  opacity: 1 !important;
  /* Garante que não haja transparência */
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* BOTÃO DOS CARDS - QUANDO PASSA O MOUSE (HOVER) */
.section-serviços .btn-primary:hover {
  background-color: #10294d !important;
  /* Azul levemente mais escuro */
  transform: translateY(-2px);
  /* Pequeno levante para efeito premium */
  box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

.section-serviços .card-text {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  /* FAZ A MÁGICA: preenche o espaço vazio e empurra o botão */
  margin-bottom: 20px;
  /* Espaço entre o texto e o botão */
}

/* Título */
.section-serviços .card-title {
  font-weight: 600;
  margin-bottom: 12px;
}

/* Texto */
.section-serviços .card-text {
  font-size: 14px;
  color: #555;
}

/* Botão personalizado */
.section-serviços .btn {
  background: #004aad;
  border: none;
  border-radius: 5px;
  padding: 7px 55px;
  margin-top: auto;
  /* Empurra o botão para o final do card */
  margin-right: auto;
  /* Garante que o espaço extra fique à direita */
  margin-left: 0;
  /* Alinha totalmente à esquerda */
  border-radius: 8px;
  width: fit-content;
  /* Impede que o botão estique */
  display: inline-block;
  /* Mantém o comportamento de bloco em linha */
  transition: 0.3s;
}


/* NAV */
nav {
  display: flex;
  align-items: center;
}


.footer-premium {
  background-color: #ffffff;
  /* Ajuste para a cor do seu fundo */
  padding: 80px 0 30px;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  /* Força a mesma fonte em tudo */
}

/* Títulos das colunas (Navegação, Soluções, Contato) */
.footer-links h5,
.footer-contact h5 {
  color: #000000;
  font-size: 1.1rem;
  /* Tamanho fixo para o título */
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lista de links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(0, 0, 0, 0.7);
  /* Cor preta */
  text-decoration: none;
  font-size: 0.95rem;
  /* TAMANHO PADRÃO DOS LINKS */
  transition: 0.3s ease;
}

.footer-links ul li a:hover {
  color: #4595ff;
  /* Cor de destaque ao passar o mouse */
  padding-left: 5px;
}

/* Texto da marca e descrição */
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 20px;
}

/* Botão do WhatsApp no Footer */
.footer-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 15px;
  transition: transform 0.3s ease;
}

.footer-whatsapp:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Créditos finais */
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
}

.hamburguer {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburguer span {
  width: 28px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

.hamburguer.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburguer.active span:nth-child(2) {
  opacity: 0;
}

.hamburguer.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Seção de Impacto de Marketing */
.marketing-impact {
  padding: 120px 0;
  background: linear-gradient(to bottom, #ffffff, #f9f9fb);
  overflow: hidden;
}

.marketing-impact .dot-check {
  width: 10px;
  height: 10px;
  background-color: #004aad;
  border-radius: 50%;
  margin-right: 15px;
  display: inline-block;
}

.image-wrapper-sophisticated {
  position: relative;
  padding: 20px;
}

.image-wrapper-sophisticated img {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  filter: grayscale(20%);
}

.image-wrapper-sophisticated:hover img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #004aad;
  color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 74, 173, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 5px;
}



/* =========================================
   PAGINA DE NOTÍCIAS - STORE WEB
   ========================================= */

/* --- PAGINA DE NOTÍCIAS --- */

.news-hero {
  padding: 100px 0 60px;
  background-color: #ffffff;
}

.text-gradient {
  background: linear-gradient(90deg, #004aad, #2f6df6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grade Bento */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* minmax garante um tamanho mínimo ideal, mas permite que a linha cresça se houver muito texto */
  grid-auto-rows: minmax(300px, auto); 
  gap: 25px;
  padding-bottom: 80px;
}

/* Card Base */
.news-card {
  background: #fdfdfd;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px; /* Garante consistência visual mínima */
  height: 100%;      /* Preenche a célula do grid proporcionalmente */
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 74, 173, 0.1);
  border-color: rgba(0, 74, 173, 0.1);
}

/* Notícia em Destaque (Ocupa 2 colunas e 2 linhas) */
.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.news-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

/* Overlay de conteúdo sobre a imagem */
.news-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  color: white;
}

/* Estilo para cards sem imagem de fundo (Alt-Style) */
.alt-style {
  background: #f5f5f7;
}

.alt-style .news-content {
  background: transparent;
  color: #1d1d1f;
  justify-content: center;
}

/* Elementos Internos */
.category {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #c7d3ff;
}

.alt-style .category {
  color: #004aad;
}

.news-title {
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.featured .news-title {
  font-size: 2.2rem;
}

.news-excerpt {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.alt-style .news-footer {
  border-top-color: rgba(0, 0, 0, 0.05);
}

.date {
  font-size: 0.8rem;
  opacity: 0.7;
}

.read-more {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.alt-style .read-more {
  color: #004aad;
}

/* =========================================
   PARTE DE PERGUNTAS E RESPOSTAS
   ========================================= */

/* Customização do FAQ */
.faq-marketing {
  background-color: #fcfcfc;
  padding: 80px 0;
  margin-bottom: 80px;
}

.faq-marketing h2 {
  color: #1d1d1f;
}

.faq-marketing .accordion-item {
  border: 1px solid #eee !important;
  overflow: hidden;
}

/* Estilo do Botão do Acordeão */
.faq-marketing .accordion-button {
  background-color: white;
  color: #1d1d1f;
  padding: 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

/* Alteração para o Azul da Identidade */
.faq-marketing .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #004aad;
  /* Azul do seu projeto */
}

/* Ajuste do ícone para tom azulado */
.faq-marketing .accordion-button::after {
  filter: invert(18%) sepia(88%) saturate(3015%) hue-rotate(212deg) brightness(95%) contrast(105%);
}

.faq-marketing .accordion-button:focus {
  border-color: rgba(0, 74, 173, 0.1);
}

.faq-marketing .accordion-body {
  background-color: #fff;
  /* Aumentamos o primeiro valor (topo) de 0 para 20px */
  padding: 20px 25px 30px 25px;
  line-height: 1.8;
  /* Aumenta o espaço entre as linhas do texto */
  color: #4a4a4e;
  /* Um cinza levemente mais suave que o preto para elegância */
  font-size: 0.95rem;
}

/* =========================================
   PARTE DE MARKETING SOBRE E-COMMERCE
   ========================================= */

/* Estilo da Seção Feature Store Web */
.store-feature {
  overflow: hidden;
}

.feature-image-container {
  position: relative;
  padding: 40px;
  display: inline-block;
}

.shadow-main-img {
  box-shadow: 0 30px 60px rgba(0, 74, 173, 0.15);
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: 30px;
}

.floating-badge {
  position: absolute;
  width: 220px;
  z-index: 2;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 74, 173, 0.05);
}

.floating-badge:hover {
  transform: translateY(-5px);
}

.bg-light-primary {
  background-color: rgba(0, 74, 173, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.extra-small {
  font-size: 0.75rem;
}

/* Posicionamento dos Cards */
.badge-1 {
  top: 15%;
  left: -20px;
}

.badge-2 {
  top: 45%;
  left: -50px;
}

.badge-3 {
  bottom: 15%;
  left: -20px;
}




/* =========================================
   MOBILE SEM ALTERAR TAMANHO DOS CARDS
   ========================================= */

@media (max-width: 991px) {

  .feature-image-container {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding: 40px 20px;
  }

  /* IMAGEM */
  .shadow-main-img {
    width: 100%;
    max-width: 650px;
    border-radius: 30px;
    display: block;
  }

  /* CARDS BASE */
  .floating-badge {
    position: absolute;
    width: 220px;
    z-index: 10;
    border-radius: 20px;
  }

  /* 1º Card: Em cima, deslocado para a direita */
  .badge-1 {
    top: 5% !important;
    left: auto !important;
    right: -15px !important;
  }

  /* FORÇAR SUMIR NO TABLET/CELULAR */
  div.badge-2, .badge-2 {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* 3º Card: Em baixo, mantido na esquerda */
  .badge-3 {
    bottom: 5% !important;
    left: -15px !important;
    right: auto !important;
  }

}





@media (max-width: 768px) {
  .news-grid {
    display: grid;
    grid-template-columns: 1fr; /* Força uma coluna única perfeita */
    
    /* 1. MUDE ESTE VALOR ABAIXO PARA CONTROLAR O ESPAÇAMENTO */
    gap: 24px; 
    
    padding-bottom: 60px;
  }

  /* 2. MUDE ESTE VALOR PARA CONTROLAR A ALTURA IGUAL DOS CARDS */
  .featured, 
  .news-card,
  .news-card.featured {
    grid-column: auto !important; /* Desfaz o bento grid no celular */
    grid-row: auto !important;    /* Desfaz o bento grid no celular */
    height: 420px !important;     /* Altura idêntica e controlada para todos */
    min-height: 420px !important;
  }
  
  /* Garante que o conteúdo interno ocupe 100% da altura fixada */
  .news-content {
    height: 100% !important;
    justify-content: flex-end !important;
  }
}



/* =========================================
   RESPONSIVO DEFINITIVO - STORE WEB
   ========================================= */
@media screen and (max-width: 768px) {

  /* --- FORÇAR SUMIR NO CELULAR (BLOQUEIO TOTAL) --- */
  div.badge-2, .badge-2, [class*="badge-2"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  /* Garante o primeiro em cima à direita */
  .badge-1 {
    top: 5% !important;
    left: auto !important;
    right: -10px !important;
  }

  /* Garante o último embaixo à esquerda */
  .badge-3 {
    bottom: 5% !important;
    left: -10px !important;
    right: auto !important;
  }

  /* ------------------------------------- */

  /* 1. Ajuste do Header e Body */
  body {
    padding-top: 80px !important;
  }

  .header-main {
    height: 80px !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .img-logo {
    height: 55px !important;
  }

  /* 2. O MENU MOBILE */
  .menu {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .menu.active {
    right: 0 !important;
  }

  .menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: 1.5rem !important;
    display: block;
    padding: 10px;
  }

  /* 3. Ajuste dos Cards */
  .section-serviços {
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
    gap: 20px !important;
  }

  .section-serviços .card {
    width: 100% !important;
    margin: 0 auto !important;
  }

  /* 4. Banner/Carrossel Mobile */
  .carousel-item img {
    height: 300px !important;
    object-fit: cover;
  }

  .carousel-caption {
    width: 90% !important;
    left: 15% !important;
    top: 45% !important;
    transform: translateY(-50%) !important;
  }

  .carousel-caption h2 {
    font-size: 1.2rem !important;
    line-height: 1.2;
  }

  .carousel-caption p {
    font-size: 0.9rem !important;
    margin-bottom: 15px;
  }

  /* 5. Título da Seção */
  .section-title {
    font-size: 22px !important;
    margin-bottom: 30px !important;
    padding-top: 40px !important;
  }

  /* 6. Botão Hambúrguer */
  .hamburguer {
    display: flex !important;
    z-index: 9999;
    position: relative;
  }

  .marketing-impact {
    padding: 60px 20px;
  }

  .experience-badge {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -40px;
    width: fit-content;
    padding: 20px;
  }
 
}