/* --- Resets e Variáveis --- */
:root {
  /* Cores Oficiais */
  --azul-lm: #222e5a;
  --laranja-lm: #ff5900;

  /* Cores Auxiliares e Modernas */
  --azul-escuro: #1a2242;
  --branco: #ffffff;
  --cinza-fundo: #f8fafc;
  --cinza-texto: #64748b;
  --preto-titulo: #1e293b;
  --whatsapp: #25d366;

  /* Espaçamento e Tipografia */
  --font-main: "Poppins", sans-serif;
  --container-width: 1200px;
  --spacing-xs: 1rem;
  --spacing-md: 3rem;
  --spacing-lg: 5rem;
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-md: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--cinza-texto);
  background-color: var(--branco);
  line-height: 1.6;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Títulos e Badgets --- */
h1,
h2,
h3,
h4 {
  color: var(--preto-titulo);
  font-weight: 700;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-top: 10px;
}

.badget {
  background-color: rgba(255, 89, 0, 0.1);
  color: var(--laranja-lm);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 15px;
}

.badget-azul {
  background-color: rgba(34, 46, 90, 0.1);
  color: var(--azul-lm);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
}

/* --- Botões --- */
.btn-principal,
.btn-principal-lg,
.btn-submit {
  background-color: var(--laranja-lm);
  color: var(--branco);
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  border: 2px solid var(--laranja-lm);
}

.btn-principal:hover,
.btn-submit:hover {
  background-color: #e65000;
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-principal-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
  display: inline-block;
  border-radius: 8px;
}

.btn-secundario {
  color: var(--azul-lm);
  font-weight: 600;
  border: 2px solid var(--azul-lm);
  padding: 12px 25px;
  border-radius: 5px;
}

.btn-secundario:hover {
  background-color: var(--azul-lm);
  color: var(--branco);
}

.btn-link {
  color: var(--branco);
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: 20px;
  display: inline-block;
}

.btn-link i {
  margin-left: 5px;
  transition: 0.3s;
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* --- Microinterações --- */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 89, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 89, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 89, 0, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* ========================================= */
.top-bar {
  display: flex;
  align-items: center;

  position: relative;
  background-color: #ff6600;
  /* Laranja da marca */
  color: #ffffff;
  padding: 0;

  width: 100%;
  height: 30px;

  line-height: 30px;
  font-size: 13px;
  font-weight: 500;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
}

.top-bar-item {
  flex: 1;
  /* Faz com que cada item ocupe o mesmo espaço base */
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
}

.top-bar-item span {
  margin: 0 10px;
}

/* Alinhamentos específicos para cada posição */
.top-bar-item:nth-child(1) {
  justify-content: flex-start;
}

.top-bar-item:nth-child(2) {
  justify-content: center;
}

.top-bar-item:nth-child(3) {
  justify-content: flex-end;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 4px;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 0.8;
}

/* --- Main Header --- */
.main-header {
  padding: var(--spacing-xs) 0;
  background: var(--branco);
  position: sticky;
  top: 0;
  width: 100% !important;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  /* Mesma largura da sua top-bar para manter o alinhamento vertical */
  margin: 0 auto !important;
  /* Centraliza o container do nav na tela */
  padding: 0 15px;
}

.logo-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Garante que a logo "cole" na esquerda */
}

.logo {
  height: 50px;
  width: auto;
}

.header-actions {
  flex: 1;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

/* --- Parceria Lm + STAR */
.parceria-section {
  padding: 30px 0;
  background: #f4f4f4;
  border-top: 3px solid #ff6600;
  border-bottom: 3px solid #ff6600;
  text-align: center;
}

.logos-parceria {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 15px 0;
  width: 100%;
}

.logo-parc {
  height: 60px;
  filter: grayscale(100%);
  /* Deixa cinza para um visual elegante */
  opacity: 0.7;
  transition: 0.3s;
}

.logo-parc:hover {
  filter: grayscale(0%);
  /* Ganha cor no hover */
  opacity: 1;
}

.plus {
  font-size: 24px;
  color: #ff6600;
  font-weight: bold;
}

.badge-autorizado {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222e5a;
  display: block;
  font-weight: bold;
}

/* --- Hero Section --- */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--branco);
  position: relative;
  padding-top: 80px;
  /* Compensar o header fixo */
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(34, 46, 90, 0.95) 0%,
    rgba(34, 46, 90, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  z-index: 2;
  text-align: left;
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  align-items: center;
}

/* --- Consultor Section --- */
.consultor {
  padding-block: var(--spacing-lg);
}

.consultor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.consultor-img img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.consultor-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.consultor-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--cinza-texto);
}

/* --- Benefícios Section --- */
.beneficios {
  padding-block: var(--spacing-lg);
  background-color: var(--cinza-fundo);
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card-beneficio {
  background: var(--branco);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: 0.3s;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-beneficio .icon-box {
  font-size: 2.5rem;
  color: var(--azul-lm);
  background-color: rgba(34, 46, 90, 0.05);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.card-beneficio h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.card-beneficio .icon-box i.fa-certificate {
  position: relative;
  display: inline-block;
  color: var(--azul-lm);
}

.card-beneficio .icon-box i.fa-certificate::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5em;
  color: white;
}

.card-beneficio:hover {
  transform: translateY(-5px);
  border-color: var(--laranja-lm);
}

.card-beneficio .icon-box:hover,
.card-beneficio .icon-box i.fa-certificate:hover {
  transform: translateY(-5px);
  color: var(--laranja-lm);
}

/* --- Formulário Section --- */
#cotacao {
  scroll-margin-top: 50px;
}

.formulario {
  padding-block: var(--spacing-lg);
  color: var(--branco);
}

.bg-azul {
  background-color: var(--azul-lm);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.form-info h2 {
  color: var(--branco);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.form-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.form-beneficios-lista p {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-beneficios-lista i {
  color: var(--laranja-lm);
}

.form-box {
  background: var(--branco);
  padding: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--preto-titulo);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--azul-lm);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
}

.input-group input:focus {
  border-color: var(--laranja-lm);
  outline: none;
}

.btn-submit {
  width: 100%;
  padding-block: 18px;
  font-size: 1.1rem;
  border-radius: 8px;
  margin-top: 10px;
}

/* --- Section de Video Oficial STAR --- */
.video-section {
  padding: 60px 15px;
  background-color: #ffffff;
}

.video-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-container {
  flex: 1.2;
  /* Dá um pouco mais de destaque para o vídeo */
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
  /* Sombra leve em laranja */
  border-radius: 15px;
  overflow: hidden;
}

.video-text {
  flex: 0.8;
}

.video-text h2 {
  color: #222e5a;
  /* Azul marinho da marca */
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.video-text .text-orange {
  color: #ff6600;
  /* Laranja da marca */
  font-size: 1.2rem;
  font-weight: 500;
}

.text-description {
  font-size: 1.2rem;
  color: #555;
  margin: 20px 0;
  line-height: 1.5;
}

.cta-suporte {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.cta-suporte p {
  font-weight: bold;
  color: #222e5a;
  margin-bottom: 10px;
}

.btn-suporte-video {
  display: inline-block;
  background-color: #25d366;
  /* Verde WhatsApp para conversão */
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-suporte-video:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
  color: #fff;
}

.btn-suporte-video i {
  margin-right: 8px;
}

/* Padrão LuCI Serviços */
.btn-acao {
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  cursor: pointer;
}

.btn-edit {
  background-color: #3498db;
  color: white;
} /* Azul para Editar */
.btn-wpp {
  background-color: #25d366;
  color: white;
} /* Verde para WhatsApp */
.btn-del {
  background-color: #e74c3c;
  color: white;
} /* Vermelho para Excluir */
.btn-frota {
  background-color: #4a5568;
  color: white;
} /* Cinza para Histórico */

/* --- Section de Depoimentos --- */
/* Container que envolve o script do Trustindex */
.trustindex-widget-container {
  max-width: 1000px;
  /* Limita a largura para não espalhar na tela toda */
  margin: 0 auto;
  /* Centraliza o widget horizontalmente */
  padding: 20px;
  /* Dá um respiro interno */
  transform: scale(0.9);
  /* Opcional: Diminui levemente o tamanho de tudo em 10% */
  transform-origin: top center;
}

/* Ajuste para o título da seção de depoimentos */
/* ==========================================================================
   SEÇÃO DE AVALIAÇÕES GOOGLE (ESTÁTICA)
   ========================================================================== */
.avaliacoes-google-section {
  padding: 60px 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.avaliacoes-header {
  text-align: center;
  margin-bottom: 40px;
}

.avaliacoes-header h2 {
  color: #222e5a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.avaliacoes-header p {
  color: #64748b;
  font-size: 16px;
}

.google-badge-topo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  font-size: 14px;
  color: #334155;
}

/* Garante o tamanho correto da logo sem achatar ou distorcer */
.google-badge-topo img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Alinhamento fino para o texto ao lado do G */
.google-badge-topo span {
  display: inline-block;
  line-height: 1;
}

/* GRID RESPONSIVO */
.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

/* CARD ESTILO GOOGLE MAPS */
.avaliacao-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.avaliacao-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.google-icon-card {
  width: 16px;
  height: 16px;
  object-fit: contain;
  position: absolute;
  right: 0;
  top: 4px;
  display: block;
}

.card-header-av {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 12px;
}

.avatar-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.cliente-info-av {
  display: flex;
  flex-direction: column;
}

.cliente-info-av h4 {
  margin: 0;
  font-size: 15px;
  color: #1e293b;
  font-weight: 600;
}

.cliente-info-av span {
  font-size: 12px;
  color: #94a3b8;
}

.google-icon-card {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 4px;
}

.estrelas-av {
  color: #ffc107; /* Amarelo Google */
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}

.texto-av {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 15px 0;
  flex-grow: 1;
  font-style: italic;
}

.data-av {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 500;
}
/* ==========================================================================
   CARROSSEL DE AVALIAÇÕES GOOGLE (MÁSCARA CORRIGIDA DE 3 CARDS)
   ========================================================================== */
.avaliacoes-carrossel-container {
  position: relative;
  width: 100%;
  /* Adicionamos uma margem externa para as setas não baterem nas bordas da seção */
  padding: 15px 0;
  box-sizing: border-box;
}

/* Nova camada criada para isolar e esconder com precisão cirúrgica o 4º card */
.avaliacoes-carrossel-mask {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 5px 0;
}

.avaliacoes-track {
  display: flex;
  gap: 24px; /* Espaçamento sutil e limpo entre cards */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  will-change: transform;
}

/* Garante exatamente 3 colunas perfeitas dividindo o espaço visível */
.avaliacoes-track .avaliacao-card {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  box-sizing: border-box;
  min-height: 220px;
}

/* SETAS DO CARROSSEL (FLUTUANDO NAS EXTREMIDADES EXTERNAS) */
.nav-carrossel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #222e5a;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: all 0.2s;
}

.nav-carrossel:hover {
  background: #222e5a;
  color: #ffffff;
  border-color: #222e5a;
}

/* Posicionados ligeiramente para fora do grid para não sobrepor o texto */
.nav-carrossel.prev {
  left: -25px;
}
.nav-carrossel.next {
  right: -25px;
}

/* INDICADORES (DOTS) */
.carrossel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.dot-item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s;
}

.dot-item.active {
  background: #222e5a;
  transform: scale(1.2);
}

/* RESPONSIVIDADE DO CARROSSEL */
@media (max-width: 1200px) {
  /* Traz as setas um pouquinho para dentro em telas médias para não sumirem */
  .nav-carrossel.prev {
    left: -10px;
  }
  .nav-carrossel.next {
    right: -10px;
  }
}

@media (max-width: 1024px) {
  .avaliacoes-track .avaliacao-card {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
  }
  .nav-carrossel.prev {
    left: -5px;
  }
  .nav-carrossel.next {
    right: -5px;
  }
}

@media (max-width: 768px) {
  .avaliacoes-carrossel-mask {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 5px 0;
  }
  .avaliacoes-track {
    gap: 15px;
  }
  .avaliacoes-track .avaliacao-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
  }
  .nav-carrossel {
    display: none;
  }
}

/* BOTÃO INFERIOR */
.avaliacoes-footer-action {
  text-align: center;
}

.btn-ver-todas-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #475569;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  transition: all 0.2s;
}

.btn-ver-todas-maps:hover {
  background: #f1f5f9;
  color: #1e293b;
  border-color: #94a3b8;
}

/* --- Seção de FAQ --- */
.faq-section {
  background-color: #f9f9f9;
}

.faq-header h2 {
  color: #222e5a;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  border: none;
  background: #fff;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222e5a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  color: #ff6600;
  font-size: 1.5rem;
}

.faq-item.active {
  border-color: #ff6600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fdfdfd;
}

.faq-answer p,
.faq-answer a,
.faq-answer small {
  padding: 0 25px 25px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.faq-answer a {
  color: var(--laranja-lm);
  font-weight: bold;
  text-decoration: none;
}

.faq-answer a:hover {
  color: var(--azul-lm);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* Espaço suficiente para o texto */
}

/* --- Main Footer --- */
.main-footer,
.main-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.main-footer a:hover {
  color: var(--laranja-lm);
}

.bg-azul-escuro {
  background-color: var(--azul-escuro);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-block: var(--spacing-md);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-footer {
  height: 100px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-logo p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 250px;
  /* Evita que o texto fique largo demais */
  line-height: 1.4;
}

/* Inverte cor da logo para branco */
.footer-links h4,
.footer-social h4 {
  color: var(--branco);
  margin-bottom: 20px;
}

.footer-links p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  margin-right: 15px;
}

.footer-social a:hover {
  color: var(--laranja-lm);
  transform: scale(1.1);
}

.footer-social .btn-principal {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
  padding: 5px;
  height: 40px;
  width: 200px;
  text-align: center;
}

.footer-social .btn-principal:hover {
  color: var(--azul-escuro);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* Espaço entre a linha da cliente e a sua assinatura */
}

.client-copy {
  color: rgba(255, 255, 255, 0.8);
}

.dev-signature {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  /* Mais sutil que o copyright principal */
  font-weight: 300;
}

.dev-signature strong {
  color: rgba(255, 255, 255, 0.7);
  /* Dá um leve destaque ao seu nome */
  font-weight: 600;
}

/* --- STAR Proteção Veicular Total --- */
.footer-app-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  /* Divisória delicada */
}

.logo-star-footer {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer-star-info p {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.4;
}

.download-apps p {
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.app-buttons {
  display: flex;
  gap: 10px;
}

.btn-download img {
  height: 40px;
  /* Tamanho proporcional para os badges das lojas */
  width: auto;
  transition: transform 0.2s ease;
}

.btn-download:hover img {
  transform: scale(1.05);
  /* Efeito suave ao passar o mouse */
}

/* --- WhatsApp Flutuante --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  width: 65px;
  height: 65px;
  line-height: 65px;
  z-index: 100;
  box-shadow: var(--shadow-md);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.selo-susep {
  display: flex;
  align-items: center;
  background: #fff;
  border-left: 5px solid #25d366;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  margin: 15px;
}

.selo-icon {
  font-size: 2rem;
  color: #25d366;
  margin-right: 15px;
}

.selo-info .status {
  display: block;
  font-size: 0.7rem;
  font-weight: bold;
  color: #888;
  letter-spacing: 1px;
}

.selo-info strong {
  color: #222e5a;
  font-size: 0.95rem;
}

.selo-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #555;
}

/* --- Responsividade --- */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hero-btns a {
    margin-left: 0;
  }

  .consultor-grid,
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .consultor-text {
    text-align: center;
  }

  .form-info {
    text-align: center;
    margin-bottom: 30px;
  }

  .form-box {
    padding: 30px;
  }
}

/* Esconder o item do meio no celular para não amontoar */
@media (max-width: 768px) {
  .top-bar {
    font-size: 10px;
  }

  .hide-mobile {
    display: none;
  }

  .top-bar-container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .main-header .btn-secundario {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .footer-app-section {
    border-right: none;
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .app-buttons {
    justify-content: center;
  }

  .video-grid {
    flex-direction: column;
    text-align: center;
  }

  .video-text h2 {
    font-size: 1.8rem;
  }
}
