:root {
  --azul-escuro: #002a52;
  --bordo: #b30527;
  --branco: #ffffff;
  --cinza-escuro: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Montserrat', Arial, sans-serif;
  scroll-behavior: smooth;
}

/* MENU FIXO */
.menu-topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 80px;
  background: #001a33;
  backdrop-filter: blur(15px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.container-nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu-direita {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-topo .logo-nome {
  display: none;
}

.header-scrolled {
  background: #001a33;
  /* Mantém a mesma cor ao rolar */
}

.btn-menu-mobile {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-menu-mobile:hover {
  color: #b30527;
}

.logo-nome img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-nome img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
  transition: all 0.3s ease;
  align-items: center;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

/* Link Hover Effect (Animated Underline) */
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--bordo);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu li a:hover {
  color: var(--bordo);
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Botão Área do Colaborador */
.btn-colaborador {
  background: var(--bordo);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-colaborador:hover {
  background: var(--branco);
  color: var(--azul-escuro);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #001220 0%, #002a52 50%, #001a33 100%);
  isolation: isolate;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


.moldura-hero {
  width: 45%;
  height: 100%;
  background-color: var(--bordo);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
  position: relative;
  z-index: 2;
}

.faixa-triangulo {
  width: calc(100% - 5px);
  height: 100%;
  background:
    linear-gradient(rgba(0, 42, 82, 0.85), rgba(0, 42, 82, 0.85)),
    url("imagens/mapajp.jpg") no-repeat center center;
  background-size: 300%;
  clip-path: polygon(0 0, 99.5% 0, 69.5% 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  padding-right: 20%;
}

.sos-link {
  text-decoration: none;
  display: block;
  z-index: 100;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.sos-badge-premium {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 15px 30px 15px 15px; /* Reduzida a margem lateral direita de 45px para 30px */
  border: 1px solid rgba(179, 5, 39, 0.4);
  width: max-content;
  gap: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(179, 5, 39, 0.2);
  animation: soshash-pulse 2s infinite;
}

@keyframes soshash-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(179, 5, 39, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(179, 5, 39, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(179, 5, 39, 0);
  }
}

.sos-badge-premium:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--bordo);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(179, 5, 39, 0.5);
}

.tel-icon {
  color: white;
  font-size: 20px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

/* TEXTO SOS */
.sos-texto {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px; /* Adicionado espaço para não "colar" o SOS com o texto abaixo */
}

.sos-titulo {
  color: white;
  font-size: 55px;
  /* Aumentado de 45px */
  font-weight: 900;
  letter-spacing: -3px;
  margin-right: 0; /* Removida margem antiga para melhor alinhamento */
}

.sos-sub {
  color: #ff4d4d;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* O PULSO DE ALERTA NA BOLA */
.icone-telefone {
  width: 60px;
  /* Aumentado de 50px */
  height: 60px;
  /* Aumentado de 50px */
  background: radial-gradient(circle at 30% 30%, #ff4d4d, #b30527);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--bordo);
}


.tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tel-icon img {
  width: 60px; /* Restaurado como estava para preencher a badge */
  height: auto;
  object-fit: contain;
}


@keyframes pulse-red {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.logo-topo {
  margin-bottom: -60px;
}

.logo-topo img {
  height: 450px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  margin-bottom: 50px;
  margin-top: 50px;
}

.texto-banner {
  color: var(--branco);
  max-width: 550px;
  font-family: 'Montserrat', sans-serif;
}

.texto-banner h4 {
  font-size: 16px;
  /* Letra com bom tamanho de leitura sem ofuscar o H1 */
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--branco);
  /* Solicitado para branco */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.texto-banner h1 {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 25px;
  /* Reduzido de 30px */
  line-height: 1;
  /* Apertar as linhas */
  text-transform: uppercase;
  color: #fff;
  display: flex;
  /* Flex ajuda a quebrar os blocos */
  flex-direction: column;
  align-items: flex-start;
  /* Impede que a caixa ocupe 100% da largura disponível à toa */
  gap: 0px;
  /* REMOVIDO PARA COLAR AS CAIXAS AZUIS */
}

.texto-banner h1 span {
  color: var(--branco);
  background-color: var(--azul-escuro);
  padding: 5px 20px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.texto-banner h1 span.highlight {
  background-color: var(--bordo);
}

.btn-banner {
  display: inline-block;
  padding: 15px 35px;
  background: var(--bordo);
  /* Fundo vermelho bordô */
  color: var(--branco);
  /* Texto branco */
  text-decoration: none;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px rgba(179, 5, 39, 0.3);
  /* Sombra com tom bordô */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  /* Empurra os elementos debaixo para baixo, garantindo margem no celular */
}

.btn-banner:hover {
  background: var(--branco);
  /* Fica branco ao passar o mouse */
  color: var(--azul-escuro);
  /* Texto azul-marinho */
  transform: translateY(-3px);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.sobre {
  background: #fff;
  padding: 80px 20px;
}

.container-sobre {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.sobre-img {
  position: relative;
  flex: 1 1 500px;
  padding-right: 18px;
  padding-bottom: 18px;
}

.sobre-img img {
  width: 100%;
  display: block;
  border-radius: 10px;
  box-shadow:
    18px 18px 0 0 var(--bordo),
    0 12px 40px rgba(0, 0, 0, 0.14);
}

.bg-img {
  display: none;
}

.conteiner-adm {
  max-width: 1100px;
  margin: 80px auto 0;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.carla-container {
  position: relative;
  flex: 1 1 400px;
  padding-left: 18px;
  padding-bottom: 18px;
}

.carla-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow:
    -18px 18px 0 0 var(--bordo),
    0 12px 40px rgba(0, 0, 0, 0.14);
}

.carla-bg {
  display: none;
}

.conteiner-heitor {
  max-width: 1100px;
  margin: 80px auto 0;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.heitor-container {
  position: relative;
  flex: 1 1 400px;
  padding-right: 18px;
  padding-bottom: 18px;
}

.heitor-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow:
    18px 18px 0 0 var(--bordo),
    0 12px 40px rgba(0, 0, 0, 0.14);
}

.conteiner-heitor .sobre-texto {
  flex: 1 1 500px;
}

.cargo-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 18px;
  background: var(--azul-escuro);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
}

.conteiner-adm .sobre-texto {
  flex: 1 1 500px;
}

.sobre-texto {
  flex: 1 1 500px;
}

.sobre-texto h2 {
  font-size: 2.2rem;
  color: var(--azul-escuro);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 900;
  letter-spacing: -1px;
}

.sobre-texto .barra {
  width: 5px;
  height: 40px;
  background: var(--bordo);
  display: inline-block;
}

.sobre-texto p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

/* ANIMAÇÕES AO ROLAR (SCROLL) */
.hidden-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hidden-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hidden-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show-element {
  opacity: 1;
  transform: translate(0, 0);
}

/* Seção de Serviços */
.servicos {
  background-color: #fff;
  padding: 80px 20px;
}

.container-servicos {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.container-servicos h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #002C3E;
  text-align: left;
}

.barra {
  display: inline-block;
  width: 5px;
  height: 30px;
  background-color: var(--bordo);
  /* Mudado de #00A1B0 para bordô */
  margin-right: 10px;
  vertical-align: middle;
}

.cards-servicos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: white;
  border: none;
  padding: 40px 30px;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--bordo);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleY(1);
}

/* Efeito Cascata na entrada dos serviços */
.cards-servicos .card:nth-child(1)  { transition-delay: 0s; }
.cards-servicos .card:nth-child(2)  { transition-delay: 0.08s; }
.cards-servicos .card:nth-child(3)  { transition-delay: 0.16s; }
.cards-servicos .card:nth-child(4)  { transition-delay: 0.24s; }
.cards-servicos .card:nth-child(5)  { transition-delay: 0.32s; }
.cards-servicos .card:nth-child(6)  { transition-delay: 0.40s; }
.cards-servicos .card:nth-child(7)  { transition-delay: 0.48s; }
.cards-servicos .card:nth-child(8)  { transition-delay: 0.56s; }
.cards-servicos .card:nth-child(9)  { transition-delay: 0.64s; }

.card:hover {
  transform: translateY(-5px);
}

.card .icone {
  margin-bottom: 15px;
  color: #b30527;
}

.card .icone i {
  font-size: 45px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.card:hover .icone i {
  transform: scale(1.1);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #002C3E;
}

.card p {
  font-size: 15px;
  color: #555;
}

.contato {
  background: #fff;
  padding: 80px 20px;
}

.container-contato {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contato-form,
.contato-mapa {
  flex: 1 1 450px;
}

.contato-form h2,
.contato-mapa h2 {
  font-size: 1.8rem;
  color: var(--azul-escuro);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contato-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-form input,
.contato-form textarea {
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #b30527;
  box-shadow: 0 0 10px rgba(179, 5, 39, 0.2);
  outline: none;
}

.contato-form button {
  background: var(--bordo);
  color: var(--branco);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(179, 5, 39, 0.3);
}

.contato-form button:hover {
  background: var(--azul-escuro);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 42, 82, 0.4);
}

.contato-mapa iframe {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.rodape {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 20px 20px 0;
  border-top: 5px solid var(--bordo);
  /* Barra bordô de destaque */
}

.container-rodape {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.rodape-brand,
.rodape-contato,
.rodape-social {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rodape-contato,
.rodape-social {
  padding-top: 50px;
}

.rodape-contato ul {
  list-style: none;
  text-align: left;
  /* Mantém a lista alinhada à esquerda mas o bloco centralizado */
}

.rodape-col h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.rodape-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--bordo);
}

.rodape-contato h3::after,
.rodape-social h3::after {
  left: 50%;
  transform: translateX(-50%);
}

.rodape-brand img {
  height: 250px;
  /* Um pouco maior conforme pedido */
  display: block;
  margin-left: -20px;
  /* Puxa um pouco mais para a esquerda */
}

.rodape-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.rodape-contato ul {
  list-style: none;
}

.rodape-contato ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.rodape-contato ul li i {
  color: var(--bordo);
  width: 20px;
  text-align: center;
}

.rodape-social .social-links {
  display: flex;
  gap: 15px;
}

.rodape-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--branco);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rodape-social .social-links a:hover {
  background: var(--bordo);
  transform: translateY(-5px);
  border-color: var(--bordo);
}

.rodape-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  background: rgba(0, 0, 0, 0.2);
}

.container-bottom {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.container-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}

.container-bottom a {
  color: var(--branco);
  text-decoration: none;
  font-weight: bold;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.container-bottom a:hover {
  opacity: 1;
  color: var(--bordo);
}

/* STATS SECTION */
.stats {
  background: #e8e8e8;
  padding: 80px 20px;
  color: #333;
}

.container-stats {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.container-stats .stat-item:nth-child(1) { transition-delay: 0s; }
.container-stats .stat-item:nth-child(2) { transition-delay: 0.12s; }
.container-stats .stat-item:nth-child(3) { transition-delay: 0.24s; }
.container-stats .stat-item:nth-child(4) { transition-delay: 0.36s; }

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--bordo);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.stat-text {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.9;
}

/* DIFERENCIAIS */
.container-diferenciais {
  max-width: 860px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  padding: 40px 20px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.diferencial-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.container-diferenciais .diferencial-item:nth-child(1) { transition-delay: 0s; }
.container-diferenciais .diferencial-item:nth-child(2) { transition-delay: 0.1s; }
.container-diferenciais .diferencial-item:nth-child(3) { transition-delay: 0.2s; }
.container-diferenciais .diferencial-item:nth-child(4) { transition-delay: 0.3s; }

.dif-icone {
  font-size: 48px;
  color: var(--bordo);
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  transition: transform 0.3s ease;
}

.diferencial-item:hover .dif-icone {
  transform: scale(1.12);
}

.dif-texto h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.45;
}

/* MARCAS REVOLVING AREA */
.marcas {
  background: #fff;
  padding: 25px 0;
  overflow: hidden;
}

.marcas-topo {
  border-top: 5px solid var(--bordo);
}

.carousel-marcas {
  display: flex;
  width: 100%;
}

.track-marcas {
  display: flex;
  gap: 60px;
  animation: scroll-marcas 30s linear infinite;
  align-items: center;
}

.marca-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 90px;
  flex-shrink: 0;
}

.marca-item img {
  max-width: 185px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  mix-blend-mode: multiply;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.marca-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.marca-item img[alt="Scania"] {
  max-height: 150px;
  max-width: 150px;
}

.marca-item img[alt="MAN"] {
  max-height: 115px;
  max-width: 115px;
}

@keyframes scroll-marcas {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 30px));
  }
}

/* DEPOIMENTOS */
.depoimentos {
  background: #e8e8e8;
  padding: 80px 20px;
}

.container-depoimentos {
  max-width: 860px;
  margin: 0 auto;
}

.container-depoimentos h2 {
  font-size: 2rem;
  color: var(--azul-escuro);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dep {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dep-viewport {
  overflow: hidden;
  flex: 1;
}

.dep-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-card {
  min-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  border-left: 4px solid var(--bordo);
  border-radius: 16px;
  padding: 48px 52px 44px;
}

.dep-quote-icon {
  color: var(--bordo);
  font-size: 2.8rem;
  margin-bottom: 22px;
  opacity: 0.75;
}

.dep-texto {
  font-size: 1.13rem;
  line-height: 1.85;
  color: #555;
  font-style: italic;
  margin-bottom: 28px;
}

.dep-estrelas {
  color: #ffc107;
  font-size: 1.15rem;
  display: flex;
  gap: 5px;
  margin-bottom: 30px;
}

.dep-autor {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dep-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bordo);
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.dep-autor-info strong {
  display: block;
  color: var(--azul-escuro);
  font-size: 1rem;
  margin-bottom: 3px;
}

.dep-autor-info span {
  color: #999;
  font-size: 0.85rem;
}

.dep-btn {
  background: rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--azul-escuro);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.dep-btn:hover {
  background: var(--bordo);
  border-color: var(--bordo);
}

.dep-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dep-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.dep-dot.active {
  background: var(--bordo);
  transform: scale(1.35);
}

.whatsapp-fixo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.whatsapp-fixo:hover {
  transform: scale(1.1);
}

.whatsapp-fixo img {
  width: 60px;
  height: 60px;
}

/* ================================================
   RESPONSIVIDADE — TABLET (até 900px)
   ================================================ */
@media (max-width: 900px) {

  /* NAV */
  .menu-topo {
    padding: 0;
  }

  .container-nav {
    padding: 12px 20px;
  }

  .header-scrolled {
    padding: 0;
  }

  .menu-topo .logo-nome {
    display: flex;
    align-items: center;
  }

  .logo-nome img {
    height: 40px;
  }

  .btn-menu-mobile {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 26, 51, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-menu.show {
    max-height: 400px;
  }

  .nav-menu li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  .menu-direita {
    gap: 12px;
  }

  .btn-colaborador {
    padding: 8px 14px;
    font-size: 11px;
  }

  /* HERO */
  .moldura-hero {
    width: 100%;
    clip-path: none;
    background: linear-gradient(rgba(0, 42, 82, 0.78), rgba(0, 26, 51, 0.92));
    justify-content: center;
  }

  .faixa-triangulo {
    clip-path: none;
    padding: 80px 24px 30px;
    align-items: center;
    background: transparent;
    justify-content: center;
  }

  .texto-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .texto-banner h4 {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .texto-banner h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .texto-banner h1 span {
    align-self: center;
  }

  .logo-topo {
    margin-bottom: -15px;
  }

  .logo-topo img {
    height: 130px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .btn-banner {
    font-size: 1rem;
    padding: 13px 28px;
    margin-bottom: 20px;
  }

  .sos-link {
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .sos-badge-premium {
    padding: 12px 24px 12px 12px;
    border-radius: 60px;
    gap: 14px;
  }

  .sos-texto {
    display: flex;
  }

  .sos-titulo {
    font-size: 36px;
  }

  .sos-sub {
    font-size: 9px;
  }

  .icone-telefone {
    width: 46px;
    height: 46px;
  }

  /* SOBRE */
  .sobre {
    padding: 60px 20px;
  }

  .container-sobre,
  .conteiner-adm {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  /* Padrão mobile: texto sempre antes da imagem */
  .container-sobre .sobre-img {
    order: 2;
    flex: 1 1 auto;
    width: 100%;
  }

  .container-sobre .sobre-texto {
    order: 1;
    flex: 1 1 auto;
    width: 100%;
  }

  .conteiner-adm .sobre-texto {
    order: 1;
    flex: 1 1 auto;
    width: 100%;
  }

  .carla-container {
    order: 2;
    flex: 1 1 auto;
    width: 100%;
  }

  .conteiner-adm {
    margin-top: 40px;
  }

  .conteiner-heitor {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    margin-top: 40px;
  }

  .conteiner-heitor .sobre-texto {
    order: 1;
    flex: 1 1 auto;
    width: 100%;
  }

  .heitor-container {
    order: 2;
    flex: 1 1 auto;
    width: 100%;
    padding-right: 14px;
    padding-bottom: 14px;
  }

  .heitor-container img {
    box-shadow:
      14px 14px 0 0 var(--bordo),
      0 8px 30px rgba(0, 0, 0, 0.14);
  }

  .sobre-texto h2 {
    font-size: 1.8rem;
    justify-content: center;
  }

  .sobre-texto p {
    font-size: 1rem;
  }

  .carla-container {
    justify-content: center;
  }

  .sobre-img {
    padding-right: 14px;
    padding-bottom: 14px;
    padding-top: 0;
    padding-left: 0;
  }

  .sobre-img img {
    box-shadow:
      14px 14px 0 0 var(--bordo),
      0 8px 30px rgba(0, 0, 0, 0.14);
  }

  .carla-container {
    padding-left: 14px;
    padding-bottom: 14px;
    padding-top: 0;
    padding-right: 0;
  }

  .carla-container img {
    box-shadow:
      -14px 14px 0 0 var(--bordo),
      0 8px 30px rgba(0, 0, 0, 0.14);
  }

  /* STATS */
  .stats {
    padding: 60px 20px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-text {
    font-size: 0.95rem;
  }

  /* DIFERENCIAIS */
  .container-diferenciais {
    gap: 30px 40px;
    margin: 40px auto;
  }

  .dif-icone {
    font-size: 40px;
    width: 50px;
  }

  /* SERVIÇOS */
  .servicos {
    padding: 60px 20px;
  }

  .container-servicos h2 {
    font-size: 1.7rem;
  }

  .cards-servicos {
    gap: 16px;
  }

  .card {
    width: calc(50% - 8px);
    padding: 30px 20px;
    flex-shrink: 0;
  }

  /* DEPOIMENTOS */
  .depoimentos {
    padding: 60px 20px;
  }

  .depoimento-card {
    padding: 36px 36px 32px;
  }

  .dep-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .container-depoimentos h2 {
    font-size: 1.7rem;
  }

  /* CONTATO */
  .contato {
    padding: 60px 20px;
  }

  .contato-form h2,
  .contato-mapa h2 {
    font-size: 1.5rem;
  }

  .contato-mapa iframe {
    height: 300px;
    min-height: 300px;
  }

  /* MARCAS */
  .marca-item {
    width: 170px;
    height: 68px;
  }

  .marca-item img {
    max-width: 135px;
    max-height: 58px;
  }

  /* RODAPÉ */
  .rodape-brand img {
    height: 180px;
    margin-left: 0;
  }

  .rodape-contato,
  .rodape-social {
    padding-top: 0;
  }

  .container-rodape {
    justify-content: center;
    gap: 30px;
  }

  .container-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ================================================
   RESPONSIVIDADE — CELULAR (até 600px)
   ================================================ */
@media (max-width: 600px) {

  /* HERO / SOS */
  .sos-titulo {
    font-size: 30px;
  }

  .sos-sub {
    font-size: 8px;
  }

  .sos-badge-premium {
    padding: 10px 18px 10px 10px;
    gap: 12px;
  }

  .icone-telefone {
    width: 40px;
    height: 40px;
  }

  .logo-topo img {
    height: 105px;
  }

  .logo-topo {
    margin-bottom: -10px;
  }

  .texto-banner h4 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .texto-banner h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .btn-banner {
    font-size: 0.9rem;
    padding: 12px 22px;
  }

  /* SOBRE */
  .sobre {
    padding: 50px 16px;
  }

  .conteiner-adm {
    margin-top: 28px;
  }

  .sobre-texto h2 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
  }

  .sobre-texto p {
    font-size: 0.95rem;
  }

  /* STATS */
  .stats {
    padding: 50px 16px;
  }

  .container-stats {
    gap: 20px;
  }

  /* DIFERENCIAIS */
  .container-diferenciais {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 32px auto;
  }

  .dif-icone {
    font-size: 38px;
    width: 46px;
  }

  .stat-item {
    flex: 1 1 130px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .stat-text {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  /* SERVIÇOS */
  .servicos {
    padding: 50px 16px;
  }

  .container-servicos h2 {
    font-size: 1.4rem;
  }

  .cards-servicos {
    gap: 12px;
  }

  .card {
    width: 100%;
    padding: 28px 20px;
  }

  .card .icone i {
    font-size: 36px;
  }

  .card h3 {
    font-size: 17px;
  }

  .card p {
    font-size: 14px;
  }

  /* DEPOIMENTOS */
  .depoimentos {
    padding: 50px 16px;
  }

  .container-depoimentos h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .carousel-dep {
    gap: 10px;
  }

  .dep-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .depoimento-card {
    padding: 28px 22px 26px;
  }

  .dep-texto {
    font-size: 1rem;
  }

  /* CONTATO */
  .contato {
    padding: 50px 16px;
  }

  .contato-form h2,
  .contato-mapa h2 {
    font-size: 1.3rem;
  }

  /* MARCAS */
  .marcas {
    padding: 28px 0;
  }

  .marca-item {
    width: 140px;
    height: 58px;
  }

  .marca-item img {
    max-width: 110px;
    max-height: 48px;
  }

  .track-marcas {
    gap: 30px;
  }

  /* RODAPÉ */
  .rodape {
    padding: 30px 16px 0;
  }

  .rodape-brand img {
    height: 140px;
  }

  .rodape-col h3 {
    font-size: 1rem;
  }

  .rodape-contato ul li {
    font-size: 0.88rem;
  }

  .container-bottom p {
    font-size: 0.78rem;
  }

  /* WHATSAPP */
  .whatsapp-fixo {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-fixo img {
    width: 52px;
    height: 52px;
  }
}

/* ================================================
   RESPONSIVIDADE — TELA PEQUENA (até 380px)
   ================================================ */
@media (max-width: 380px) {

  .logo-nome img {
    height: 34px;
  }

  .logo-topo img {
    height: 85px;
  }

  .texto-banner h1 {
    font-size: 1.6rem;
  }

  .texto-banner h4 {
    font-size: 10px;
  }

  .btn-banner {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .sobre-texto h2 {
    font-size: 1.3rem;
  }

  .container-servicos h2,
  .container-depoimentos h2,
  .contato-form h2,
  .contato-mapa h2 {
    font-size: 1.2rem;
  }
}