/* sessão 1 */

#secao-1 .slider,
#secao-1 .slides {
  height: calc(100vh - 50px) !important;
}

#secao-1 .slider .slides h1 {
  font-weight: 700;
}

#secao-1 .slider .slides h6 {
  font-size: 18px;
}

#secao-1 .slider .slides .box {
  background-color: rgba(0, 0, 0, 0.745);
  background-color: rgba(0, 6, 43, 0.85);
/*
  background: #000;
  background: linear-gradient(52deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.95) 100%); */
  position: absolute;
  height: 100vh;
  width: 100%;
}

.slider .slides li .caption {
  margin-top: 40px;
}

.slider .slides li .caption.left-align {
  max-width: 500px;
}

#secao-1 .slider-botao-container {
  margin-top: 30px;
}

#secao-1 .slider-botao {
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #f15a25;
  color: white;
  margin-top: 50px;
}

#secao-1 .slider-botao:hover {
  background-color: #ff7340;
}

#secao-1 .slider-slim {
  padding: 10px 20px;
  color: white;
  margin-top: 50px;
  background-color: #197cfe;
  border-radius: 20px;
  margin-left: 10px;

  &:hover {
    background-color: #529af9;
  }
}

#secao-1 .box-social {
  position: absolute;
  right: 100px;
  top: calc(50vh - 30px);
  z-index: 3;
  width: 30px;
}

#secao-1 .box-social .social-botao {
  padding-top: 14px;
  border-radius: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.30154068463322825) 0%, rgba(255, 255, 255, 1) 53%);
}

#secao-1 .custom-shape-divider-bottom-1725648297 {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

#secao-1 .custom-shape-divider-bottom-1725648297 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 74px;
}

#secao-1 .custom-shape-divider-bottom-1725648297 .shape-fill {
  fill: #1d1d1d;
}

#secao-1 .box-shine {
  position: absolute;
  display: flex;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 20%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

#secao-1 .box-shine .box-shine-content-left {
  background: radial-gradient(
    ellipse 70% 70% at 35% 80%,
    rgba(241, 90, 37, 0.85) 0%,
    rgba(241, 90, 37, 0.45) 30%,
    rgba(241, 90, 37, 0.15) 55%,
    transparent 75%
  );
  width: 50%;
  height: 100%;
}

#secao-1 .box-shine .box-shine-content-right {
  background: radial-gradient(
    ellipse 70% 70% at 75% 90%,
    rgba(25, 124, 254, 0.85) 0%,
    rgba(25, 124, 254, 0.45) 30%,
    rgba(25, 124, 254, 0.15) 55%,
    transparent 75%
  );
  width: 50%;
  height: 100%;
}

/* sessão 2 */

#secao-2 {
  background-color: #1d1d1d;
  padding: 50px;
}

#secao-2 h4 {
  color: white;
}

#secao-2 h3,
#secao-2 h2 {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 10px;
}

#secao-2 h5,
#secao-2 h4 {
  font-weight: 600;
}

#secao-2 h2 {
  margin-top: 20px;
}

#secao-2 .cards-grid {
  padding: 0 8px;
}

#secao-2 .cards-servico {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #1a1a2e 0%, #12121f 100%);
  border-radius: 16px;
  padding: 28px 24px 24px;
  border-top: 3px solid #f15a25;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 -1px 20px rgba(241, 90, 37, 0.12);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* card de imagem — completa a fileira quando faltam cards de texto pra
   fechar as 16 colunas do grid */
#secao-2 .cards-imagem {
  border-radius: 16px;
  border-top: 3px solid #f15a25;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 -1px 20px rgba(241, 90, 37, 0.12);
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

#secao-2 .cards-imagem img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#secao-2 .cards-servico::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f15a25, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#secao-2 .cards-servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 32px rgba(241, 90, 37, 0.2);
}

#secao-2 .cards-servico:hover::before {
  opacity: 1;
}

#secao-2 .card-icone {
  margin-bottom: 18px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 90, 37, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(241, 90, 37, 0.25);
}

#secao-2 .cards-servico h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

#secao-2 .cards-servico p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
  flex: 1;
}

#secao-2 .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

#secao-2 .card-btn-primary {
  display: block;
  text-align: center;
  padding: 9px 16px;
  background: #f15a25;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s ease;
}

#secao-2 .card-btn-primary:hover {
  background: #ff7340;
  color: #fff;
}

#secao-2 .card-btn-ghost {
  display: block;
  text-align: center;
  padding: 9px 16px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s ease, color 0.2s ease;
}

#secao-2 .card-btn-ghost:hover {
  border-color: rgba(241, 90, 37, 0.5);
  color: #f15a25;
}

#secao-2 .cards-cta {
  background: linear-gradient(135deg, #f15a25 0%, #c94010 100%);
  border-top: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(241, 90, 37, 0.35);
}

#secao-2 .cards-cta::before {
  display: none;
}

#secao-2 .cards-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(241, 90, 37, 0.45);
}

#secao-2 .cards-cta .card-icone {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

#secao-2 .cards-cta h4 {
  font-size: 20px;
}

#secao-2 .cards-cta p {
  color: rgba(255, 255, 255, 0.85);
}

#secao-2 .card-cta-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: #fff;
  color: #f15a25;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  margin-top: auto;
  transition: background 0.2s ease, color 0.2s ease;
}

#secao-2 .card-cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #c94010;
}

#secao-2 .texto-dinamico {
  margin-top: 0;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  /* Reserva altura para 2 linhas: a frase que gira ("SEO" até "Consultoria
     Estratégica") muda de tamanho o tempo todo. Sem isso, a seção "Agência
     Global" logo abaixo fica pulando de posição a cada troca de frase. */
  min-height: 2.6em;
}

#secao-2 #ag-global {
  margin-top: 100px;
}

/* Selo "Reconhecimento de Excelência" (DesignRush): selo à esquerda, texto
   à direita, lado a lado. A coluna desta seção tem ~380px no desktop — o
   selo original quebrava linha porque o texto tinha "min-width: 200px"
   fixo (180px do selo + 15px de gap + 200px não cabiam nos ~380px). Aqui
   o texto usa "min-width: 0" (o truque padrão de flexbox) para poder
   encolher e quebrar em várias linhas curtas em vez de forçar tudo para
   a linha de baixo. */
#secao-2 .selo-reconhecimento {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

#secao-2 .selo-reconhecimento-badge {
  flex-shrink: 0;
}

#secao-2 .selo-reconhecimento-badge img {
  width: 180px;
  height: auto;
}

#secao-2 .selo-reconhecimento-texto {
  flex: 1 1 auto;
  min-width: 0;
}

#secao-2 .selo-reconhecimento-texto strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
}

#secao-2 .selo-reconhecimento-texto p {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* sessão 3 */

#secao-3  {
  padding: 0;
  background: #fff;
  background-color: #fff !important;
}

#secao-3 h2 {
  margin-top: 50px;
  font-weight: 800;
}

/* sessão 3 */

#secao-3 .cases {
  background-color: white;
  padding: 0 20px;
}

#secao-3 .swiper {
  width: 100%;
  height: 100%;
}

#secao-3 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#secao-3 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 20px 0 20px;
  border-radius: 10px;
  /* filter: grayscale(); */
  transition: all 0.3s;
}

#secao-3 .swiper-slide:hover img {
  filter: none;
}

#secao-3 .swiper-slide .box-cont {
  position: absolute;
  bottom: 20px;
  text-align: left;
  width: 100%;
  padding: 40px 10px 30px 10px;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 1) 100%);
  border-radius: 0 0 10px 10px;
  box-sizing: border-box;
  text-shadow: 0px 0px 5px rgba(0,0,0,.9);
}

#secao-3 .swiper-slide .box-cont h5 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 0 0;
}

#secao-3 .swiper-slide .box-cont p {
  margin: 5px 0 10px;
  font-weight: 500;
}

#secao-3 .swiper-slide .box-cont a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 12px;
  padding: 5px 10px;
  display: block;
}

#secao-3 .swiper-slide .box-cont a:hover {
  border: 2px solid #f15a25;
}

#secao-3 element {
  transform: translate3d(186.543px, 0px, 0px);
  width: 386.564px;
  transition-duration: 0ms;
}

#secao-3 .custom-shape-divider-bottom-1725648297 {
  position: relative;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

#secao-3 .custom-shape-divider-bottom-1725648297 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 74px;
}

#secao-3 .custom-shape-divider-bottom-1725648297 .shape-fill {
  fill: #333333;
}

#secao-3 .box-shine {
  position: relative;
  display: flex;
  bottom: -72px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 115px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

#secao-3 .box-shine .box-shine-content-left {
  background: radial-gradient(
    ellipse 70% 70% at 35% 80%,
    rgba(241, 90, 37, 0.85) 0%,
    rgba(241, 90, 37, 0.45) 30%,
    rgba(241, 90, 37, 0.15) 55%,
    transparent 75%
  );
  width: 50%;
  height: 100%;
}

#secao-3 .box-shine .box-shine-content-right {
  background: radial-gradient(
    ellipse 70% 70% at 75% 90%,
    rgba(25, 124, 254, 0.85) 0%,
    rgba(25, 124, 254, 0.45) 30%,
    rgba(25, 124, 254, 0.15) 55%,
    transparent 75%
  );
  width: 50%;
  height: 100%;
}

.swiper-scrollbar-drag {
  background-color: #f15a25;
}

@media only screen and (max-width: 992px) {
  #secao-2 .cards-servico {
    min-width: 0;
  }
}

#secao-1 {
  position: relative;
  top: -32px;
}

.th5 {
  color: #ffffff;
}

.titulob4 {
  color: #197cfe;
  font-weight: 600;
}

#secao-5 {
  padding: 0 0 60px 0;
  background-color: #fff;
}

#secao-5 #processo-header {
  text-align: center;
  padding: 50px 0 40px;
}

#secao-5 #processo-header h2 {
  color: #1a1a2e;
  margin-bottom: 12px;
}

#secao-5 #processo-header p {
  font-size: 16px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}

#secao-5 #processo-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  gap: 16px !important;
  padding: 0 8px 40px !important;
}

#secao-5 .processo-passo {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  flex: 1 1 220px !important;
  min-width: 0 !important;
  padding: 32px 20px;
  background: #f9f9fb;
  border-radius: 16px;
  border-top: 3px solid #f15a25;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#secao-5 .processo-passo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

#secao-5 .passo-numero {
  font-size: 48px;
  font-weight: 900;
  color: rgba(241, 90, 37, 0.12);
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Oswald', sans-serif;
}

#secao-5 .passo-icone {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 90, 37, 0.08);
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(241, 90, 37, 0.2);
}

#secao-5 .processo-passo h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

#secao-5 .processo-passo p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

#secao-5 #processo-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 8px;
}

#secao-5 .badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f3f3f3;
  border-radius: 50px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#secao-5 .badge-trust:hover {
  border-color: #f15a25;
  color: #f15a25;
}

@media (max-width: 600px) {
  #secao-5 .processo-passo {
    flex: 1 1 100% !important;
  }
}

.tabs .tab a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 12px !important;
  overflow: hidden;
  -webkit-transition: color 0.28s ease, background-color 0.28s ease;
  transition: color 0.28s ease, background-color 0.28s ease;
}

.tabs .tab a:hover {
  color: #f15a25;
  background-color: #000000;
}

.tabs .tab a i {
  margin-right: 10px;
  font-size: 20px;
}

.tabs .indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #fff;
  will-change: left, right;
}

#secao-6 {
  padding: 0;
  /* cinza-escuro da marca (mesmo tom de #secao-2), em vez de preto puro */
  background-color: #1d1d1d;
}

#secao-6 #box-brand {
  background-color: #1d1d1d;
  padding-bottom: 50px;
}

#secao-6 #clientes-header {
  text-align: center;
  padding: 50px 16px 20px;
}

#secao-6 #clientes-header h2 {
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

#secao-6 #clientes-header p {
  color: #f15a25;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* mosaico de clientes: duas faixas rolando em sentidos opostos, contínuas via CSS */
#secao-6 #clientes-mosaico {
  margin-top: 8px;
}

#secao-6 .clientes-faixa {
  overflow: hidden;
  /* esmaece as bordas da faixa pra a entrada/saída dos logos não cortar seco.
     Importante: o trecho "totalmente visível" tem que ser BRANCO, não preto.
     O modo padrão de mask-image é por luminância — preto tem luminância 0,
     igual a transparent, então "transparent...#000...#000...transparent"
     mascarava a faixa INTEIRA (não só as bordas). Branco tem luminância 1
     (visível) e também alpha 1, então funciona nos dois modelos de máscara.
     mask-repeat/mask-size explícitos: alguns navegadores (Firefox) não
     assumem o mesmo tamanho/posição padrão pro gradiente que o Chrome. */
  mask-image: linear-gradient(90deg, transparent, #fff 14%, #fff 86%, transparent);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 14%, #fff 86%, transparent);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
}

#secao-6 .clientes-faixa + .clientes-faixa {
  margin-top: 16px;
}

#secao-6 .clientes-trilha {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: clientes-rolar 34s linear infinite;
  animation-play-state: running;
}

#secao-6 .clientes-faixa.reversa .clientes-trilha {
  animation-direction: reverse;
  animation-duration: 40s;
}

#secao-6 .clientes-faixa:hover .clientes-trilha {
  animation-play-state: paused;
}

/* respeita "reduzir movimento" por padrão — a rolagem fica parada (mas o
   botão "Ativar rolagem automática" abaixo do mosaico força a rodar mesmo
   assim, com animation-play-state !important, pra quem quer ver o efeito
   mesmo tendo essa preferência ligada no sistema) */
@media (prefers-reduced-motion: reduce) {
  #secao-6 .clientes-trilha { animation-play-state: paused; }
}

#clientes-mosaico.forcar-movimento .clientes-trilha {
  animation-play-state: running !important;
}

#clientes-toggle-movimento {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#clientes-toggle-movimento button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

#clientes-toggle-movimento button:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(241, 90, 37, .5);
}

#secao-6 .clientes-tile {
  flex: none;
  position: relative;
  width: 180px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* vidro fosco: fundo quase transparente + blur, em vez da caixa branca sólida
     de antes — combina com o fundo preto da seção sem virar um retângulo branco */
  background: linear-gradient(160deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: transform 200ms ease;
  margin-bottom: 5px;
}

/* reflexo de vidro no hover — feixe diagonal que atravessa o tile */
#secao-6 .clientes-tile::before {
  content: "";
  position: absolute;
  top: -20%;
  height: 140%;
  width: 36px;
  transform: rotate(25deg);
  background: linear-gradient(90deg,rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
  left: -80px;
  pointer-events: none;
}

#secao-6 .clientes-tile:hover::before {
  transition: left 550ms ease;
  left: 210px;
}

#secao-6 .clientes-tile img {
  width: 100%;
  height: 100%;
  /* object-fit: contain preserva a proporção de cada logo dentro do tile.
     Sem isso, logos com proporção bem diferente do tile (como as da Lexobras
     e da Barufi, bem mais largas que altas) ficam esticadas/distorcidas. */
  object-fit: contain;
  padding: 16px;
  border-style: none;
  /* os arquivos de logo têm fundo branco sólido (não são PNGs transparentes).
     mix-blend-mode: multiply "derrete" esse branco no vidro fosco do tile,
     deixando só a marca visível — sem isso o fundo branco do arquivo cobriria
     o efeito de vidro por baixo. */
  mix-blend-mode: multiply;
}

#secao-6 .clientes-tile-destaque {
  position: relative;
  border-color: rgba(241, 90, 37, .55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .12), 0 0 0 1px rgba(241, 90, 37, .4);
  /* tiles em destaque viram link (Lexobras/Barufi) — reset de estilo de âncora */
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

#secao-6 .clientes-tile-destaque:hover,
#secao-6 .clientes-tile-destaque:focus-visible {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .15), 0 0 0 1px rgba(241, 90, 37, .6);
}

@keyframes clientes-rolar {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  #secao-6 .clientes-tile { width: 130px; height: 84px; }
  #secao-6 .clientes-tile img { padding: 10px; }
}

#secao-6 .custom-shape-divider-top-1737658137 {
  position: relative;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

#secao-6 .custom-shape-divider-top-1737658137 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 25px;
}

#secao-6 .custom-shape-divider-top-1737658137 .shape-fill {
  fill: #fff;
}

#secao-6 .custom-shape-divider-bottom-1737658247 {
  position: relative;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

#secao-6 .custom-shape-divider-bottom-1737658247 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 25px;
}

#secao-6 .custom-shape-divider-bottom-1737658247 .shape-fill {
  fill: #f1f1f1;
}

/* BLOG */
.h1-blog,
.marks h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 50px;
  margin-bottom: 50px;
}


.h3-blog,
.marks h3,
#blog .marks h2 {
  font-family: 'Manrope', sans-serif;
  color: #ffffffff;
  margin-bottom: 30px;
  margin-top: 26px !important;
  font-size: 30px;
  font-weight: 600 !important;
  color: #ffffff;
}


.h4-blog,
.marks h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  font-weight: 200;
  color: #000000;
}

.h5-blog,
.marks h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 200;
  color: #000000;
}

.p-blog,
.marks p {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: #000000;
  margin-bottom: 30px;
  margin-top: 30px;
}

.p-blog,
.marks p {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #ffffffff;
  margin-bottom: 30px;
  display: block;
}


.ultimas-btn {
  padding: 5px 20px;
  background: transparent;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
  color: #fff;
  font-size: 13px;
  transition: all 0.5s ease-in;
  border: 2px solid #f15a25;
  margin-top: 30px;
}

.flex {
  display: flex;
  justify-content: space-between;
}

#secao-2 {
  background-size: cover;
  background-position: center;
}


.cc {
  background-color: #fff;
}

#secao-1 .slider .indicators {
  top: 200px;
  right: 50px !important;
  left: auto !important;
  z-index: 4;
  width: 2px !important;
}

#secao-1 .slider .indicators .indicator-item {
  display: inline-block;
  position: relative;
  cursor: pointer;
  height: 10px;
  width: 10px;
  border: 2px solid white;
  margin-top: 3px;
  margin-bottom: 3px;
  opacity: 0.5;
}

#secao-1 .slider .indicators .indicator-item:hover {
  opacity: 1;
}

#secao-1 .slider .indicators .indicator-item.active {
  background-color: #f15a25;
  height: 20px;
  border-radius: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  opacity: 1;
}

#secao-1 .slider video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.custom-shape-divider-top-1695910736 svg {
  fill: #f1f1f1;
}

@media only screen and (max-width: 700px) {
  .tabs .tab a span {
    display: none;
  }
}

@media only screen and (max-width: 450px) {
  #secao-1 .slider .slides h1 {
    font-size: 30px;
  }
  .slider .slides li .caption {
    margin-top: 20px;
    left: 8%;
    width: 75%;
  }
  #secao-2 {
    padding: 50px 0;
  }
  #secao-2 .texto-dinamico{
    font-size: 20px !important;
    min-height: 56px;
  }

  #secao-2 #ag-global {
    margin-top: 0;
  }

  #secao-2 #agencia {
    font-size: 2rem;
  }
  #secao-2 .cards-servico {
    width: 100%;
  }

  #secao-3 h1 {
    font-size: 30px;
  }
}

/* ─── Blog Section ─────────────────────────────────────── */

#blog {
  background-color: #f1f1f1;
}

/* YR34 — #blog é a última seção antes de #pre-footer (layout compartilhado);
   o fill do divisor precisa bater com essa cor, não com o --cor-fundo padrão. */
:root {
  --pre-footer-fill: #f1f1f1;
}

#blog #blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

#blog #blog-header-left h2 {
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
}

#blog #blog-header-left p {
  font-size: 15px;
  color: #666;
  margin: 0;
  max-width: 480px;
  line-height: 1.6;
}

#blog #blog-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

#blog .blog-ver-todos {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f15a25;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

#blog .blog-ver-todos:hover {
  color: #ff7a45;
}

#blog .blog-ver-todos svg {
  transition: transform 0.2s ease;
}

#blog .blog-ver-todos:hover svg {
  transform: translateX(3px);
}

/* ─── Blog Card Grid ────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 90, 37, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-card-imagem-link {
  display: block;
  overflow: hidden;
}

.blog-card-imagem {
  overflow: hidden;
  height: 200px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.blog-tag {
  display: inline-block;
  background: rgba(241, 90, 37, 0.15);
  color: #f15a25;
  border: 1px solid rgba(241, 90, 37, 0.25);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease;
}

.blog-tag:hover {
  background: #f15a25;
  color: #fff;
}

.blog-card-titulo {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.45;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-titulo a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-titulo a:hover {
  color: #f15a25;
}

.blog-card-resumo {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card-autor {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(241, 90, 37, 0.4);
  flex-shrink: 0;
}

.blog-card-autor-info {
  display: flex;
  flex-direction: column;
}

.blog-card-autor-nome {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.blog-card-autor-data {
  font-size: 11px;
  color: #aaa;
}

.blog-card-ler {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #f15a25;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.blog-card-ler svg {
  transition: transform 0.2s ease;
}

.blog-card-ler:hover {
  color: #ff7a45;
}

.blog-card-ler:hover svg {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  #blog #blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ─── Depoimento Section ────────────────────────────────────── */
#depoimento {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(241, 90, 37, 0.08), transparent 60%),
    radial-gradient(900px 500px at 110% 110%, rgba(25, 124, 254, 0.07), transparent 60%),
    linear-gradient(180deg, #f6f7fb 0%, #eef0f6 100%);
  overflow: hidden;
}

#depoimento .depoimento-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 16px;
}

#depoimento .depoimento-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f15a25;
  background: rgba(241, 90, 37, 0.1);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

#depoimento .depoimento-header .titulo-secao {
  color: #0f172a;
  margin: 0 0 14px;
}

#depoimento .depoimento-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

#depoimento .depoimento-carrossel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

#depoimento .depoimentos-swiper {
  overflow: hidden;
  border-radius: 24px;
}

#depoimento .swiper-slide {
  height: auto;
  display: flex;
}

#depoimento .depoimento-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 24px 60px -20px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

#depoimento .depoimento-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  color: #f15a25;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.08),
    0 12px 28px -8px rgba(15, 23, 42, 0.18);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

#depoimento .depoimento-nav:hover {
  background: #f15a25;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
  box-shadow:
    0 6px 14px rgba(241, 90, 37, 0.25),
    0 16px 32px -8px rgba(241, 90, 37, 0.35);
}

#depoimento .depoimento-nav:focus-visible {
  outline: 3px solid rgba(241, 90, 37, 0.4);
  outline-offset: 2px;
}

#depoimento .depoimento-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

#depoimento .depoimento-nav-prev {
  left: -10px;
}

#depoimento .depoimento-nav-next {
  right: -10px;
}

#depoimento .depoimento-carrossel.is-single .depoimento-nav {
  display: none;
}

#depoimento .depoimento-conteudo {
  position: relative;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#depoimento .depoimento-aspas {
  width: 56px;
  height: 56px;
  fill: #f15a25;
  opacity: 0.18;
  margin-bottom: 8px;
}

#depoimento .depoimento-texto {
  font-size: 19px;
  line-height: 1.65;
  color: #1e293b;
  font-weight: 500;
  font-style: normal;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
  quotes: none;
}

#depoimento .depoimento-autor {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

#depoimento .depoimento-autor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  /* fallback pra quando não há foto ainda (usa iniciais) — some assim que
     vira <img>, já que a foto real cobre 100% do círculo */
  background: linear-gradient(135deg, #f15a25 0%, #ff7340 100%);
  object-fit: cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px -4px rgba(241, 90, 37, 0.45);
  flex-shrink: 0;
}

#depoimento .depoimento-autor-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

#depoimento .depoimento-autor-info strong {
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
}

#depoimento .depoimento-autor-info span {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

#depoimento .depoimento-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

#depoimento .depoimento-botao {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.5);
}

#depoimento .depoimento-botao:hover {
  background: #1fb955;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.6);
  color: #fff;
}

#depoimento .depoimento-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #197cfe;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

#depoimento .depoimento-link:hover {
  color: #0f5fd1;
  gap: 8px;
}

#depoimento .depoimento-video-wrapper {
  position: relative;
  background: #0f172a;
  min-height: 460px;
  overflow: hidden;
  cursor: pointer;
}

#depoimento .depoimento-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

#depoimento .depoimento-video-cover {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(241, 90, 37, 0.55) 100%),
    linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

#depoimento .depoimento-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#depoimento .depoimento-play-icone {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  position: relative;
}

#depoimento .depoimento-play-icone::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: depoimentoPulse 2.4s ease-out infinite;
}

#depoimento .depoimento-play-icone svg {
  margin-left: 4px;
}

#depoimento .depoimento-play-texto {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#depoimento .depoimento-video-wrapper:hover .depoimento-play-icone {
  background: #f15a25;
  border-color: #f15a25;
  transform: scale(1.08);
}

#depoimento .depoimento-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  animation: depoimentoSpin 0.9s linear infinite;
  transition: opacity 0.2s ease;
}

#depoimento .depoimento-video-wrapper.is-loading .depoimento-loading {
  opacity: 1;
}

#depoimento .depoimento-video-wrapper.is-loading .depoimento-play {
  opacity: 0;
  pointer-events: none;
}

#depoimento .depoimento-video-wrapper.is-playing .depoimento-play,
#depoimento .depoimento-video-wrapper.is-playing .depoimento-video-cover {
  opacity: 0;
  pointer-events: none;
}

#depoimento .depoimento-video-wrapper.is-playing {
  cursor: default;
}

@keyframes depoimentoPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes depoimentoSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  #depoimento .depoimento-conteudo {
    padding: 48px 36px;
  }
  #depoimento .depoimento-texto {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  #depoimento {
    padding: 64px 0 72px;
  }
  #depoimento .depoimento-header {
    margin-bottom: 36px;
  }
  #depoimento .depoimento-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  #depoimento .depoimento-conteudo {
    padding: 36px 24px 32px;
    order: 2;
  }
  #depoimento .depoimento-video-wrapper {
    order: 1;
    min-height: 280px;
  }
  #depoimento .depoimento-texto {
    font-size: 16px;
    margin-bottom: 24px;
  }
  #depoimento .depoimento-aspas {
    width: 44px;
    height: 44px;
  }
  #depoimento .depoimento-autor {
    margin-bottom: 24px;
  }
  #depoimento .depoimento-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  #depoimento .depoimento-botao {
    justify-content: center;
  }
  #depoimento .depoimento-link {
    justify-content: center;
  }
  #depoimento .depoimento-play-icone {
    width: 68px;
    height: 68px;
  }
  #depoimento .depoimento-nav {
    width: 44px;
    height: 44px;
  }
  #depoimento .depoimento-nav-prev {
    left: 4px;
  }
  #depoimento .depoimento-nav-next {
    right: 4px;
  }
}

@media (max-width: 480px) {
  #depoimento .depoimento-carrossel {
    padding: 0 8px;
  }
  #depoimento .depoimento-nav {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
  }
}

@media (prefers-reduced-motion: reduce) {
  #depoimento .depoimento-play-icone::before {
    animation: none;
  }
  #depoimento .depoimento-botao,
  #depoimento .depoimento-link,
  #depoimento .depoimento-play-icone,
  #depoimento .depoimento-video-cover {
    transition: none;
  }
}
