/* ===== CooperVans do Pantanal — Estilo Ultra-Premium e Humano ===== */
:root {
  --verde: #7dc247;
  --verde-esc: #5a9e2e;
  --verde-claro: #f8fcf6;   /* Verde super leve do Nomadfy */
  --verde-borda: #e1f2d5;   /* Borda verde leve */
  --escuro: #22252c;       /* Cinza chumbo/preto do Nomadfy (#2A2E37 / #22252c) */
  --escuro-2: #33363e;     /* Cinza chumbo médio (#33363E) */
  --cinza-bg: #f8faf8;     /* Off-white premium do Nomadfy (#F8FAF8) */
  --cinza-borda: #ebebeb;  /* Borda cinza clara neutra do Nomadfy (#EBEBEB) */
  --cinza-txt: #6d7078;    /* Texto de descrição neutro (#6D7078) */
  --branco: #ffffff;
  --wpp: #25D366;
  --ambar: #d97706;        /* Amber 600 */
  --ambar-bg: #fffbeb;     /* Amber 50 */
  --ambar-borda: #fde68a;  /* Amber 200 */
  --vermelho: #ef4444;     /* Red 500 */
  --cinza-off: #9ba0aa;    /* Cinza neutro intermediário */
  --radius: 24px;
  --radius-lg: 32px;
  --sombra: 0 4px 16px rgba(34, 37, 44, 0.03), 0 1px 3px rgba(34, 37, 44, 0.02);
  --sombra-card: 0 20px 40px -10px rgba(34, 37, 44, 0.04), 0 0 0 1px rgba(34, 37, 44, 0.02);
  --sombra-hover: 0 32px 64px -16px rgba(34, 37, 44, 0.1), 0 0 0 1px rgba(90, 158, 46, 0.15);
  --fonte: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --fonte-titulo: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
::selection {
  background: var(--verde);
  color: var(--branco);
}
::-moz-selection {
  background: var(--verde);
  color: var(--branco);
}
body { font-family: var(--fonte); background: var(--cinza-bg); color: var(--escuro); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* Animações premium */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

h1, h2, h3, h4, .topo .marca b, .card-cidade, .login-box h1 {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

/* ===== Tag de seção universal ===== */
.tag-secao {
  font-size: 11px;
  font-weight: 700;
  color: var(--verde-esc);
  background: var(--verde-claro);
  border: 1px solid var(--verde-borda);
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 16px;
}

/* ===== Seção Títulos ===== */
.secao-titulo-centro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px;
}
.secao-titulo-centro h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--escuro);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.secao-titulo-centro p {
  font-size: 16px;
  color: var(--cinza-txt);
  line-height: 1.6;
}

/* ===== Header (Glassmorphism Inteligente e Dinâmico) ===== */
.topo {
  background: transparent;
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.topo.rolado {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}
.topo .container { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  min-height: 92px; 
  transition: min-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.topo.rolado .container {
  min-height: 72px;
}
.topo .logo { 
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  flex-shrink: 0; 
  border: 2px solid var(--verde-claro); 
  box-shadow: var(--sombra); 
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.topo.rolado .logo {
  width: 42px;
  height: 42px;
}
.topo .marca { line-height: 1.25; }
.topo .marca b { font-size: 19px; color: var(--escuro); }
.topo .marca span { font-size: 12px; color: var(--cinza-txt); font-weight: 500; }
.topo .nav { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.topo .nav a { 
  font-size: 14.5px; 
  font-weight: 700; 
  padding: 10px 16px; 
  border-radius: 12px; 
  color: var(--escuro-2); 
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.topo .nav a:not(.botao)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--verde);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(-50%);
}
.topo .nav a:not(.botao):hover::after,
.topo .nav a:not(.botao).ativo::after {
  width: 20px;
}
.topo .nav a:hover:not(.botao), 
.topo .nav a.ativo:not(.botao) { 
  color: var(--verde-esc); 
  background: transparent;
}
.topo .nav a.botao { 
  background: var(--verde); 
  color: var(--branco); 
  box-shadow: 0 6px 14px rgba(125, 194, 71, 0.25); 
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topo .nav a.botao::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmerEffect 4s infinite linear;
}
.topo .nav a.botao:hover { 
  background: var(--verde-esc); 
  color: var(--branco); 
  transform: translateY(-2px) scale(1.025); 
  box-shadow: 0 10px 20px rgba(90, 158, 46, 0.35); 
}


@media (max-width: 768px) {
  .topo .nav-publico { display: none; }
}

/* ===== Hero Home (Portal Dual-Column) ===== */
.hero-home {
  background: radial-gradient(circle at 80% 30%, rgba(125, 194, 71, 0.08) 0%, transparent 60%), #ffffff;
  padding: 120px 0;
  border-bottom: 1px solid var(--cinza-borda);
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(125, 194, 71, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}
.hero-home-texto {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-home-texto h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--escuro);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.hero-home-texto p {
  font-size: 17.5px;
  color: var(--cinza-txt);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

/* Diferenciais mini */
.diferenciais-lista-mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.diferencial-item-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--escuro-2);
}
.diferencial-item-mini i {
  color: var(--verde-esc);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Placeholder de Imagem do Hero (estilo Nomadfy) */
.hero-home-imagem {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-home-imagem::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(125, 194, 71, 0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero-van-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.14));
}

.hero-home-imagem .img-placeholder {
  width: 100%;
  max-width: 440px;
  height: 380px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(125, 194, 71, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--escuro);
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 2;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: flutuar 6s ease-in-out infinite;
}
.hero-home-imagem .img-placeholder:hover {
  transform: scale(1.03) rotate(1deg);
  border-color: var(--verde);
  box-shadow: 0 40px 80px -20px rgba(90, 158, 46, 0.18);
}
.hero-home-imagem .img-placeholder i {
  color: var(--verde-esc);
  animation: flutuarIcone 4s ease-in-out infinite alternate;
}

@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes flutuarIcone {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.15) rotate(8deg); }
}

/* ===== Painel de Busca Lateral Premium ===== */
.busca-card-premium {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}
.busca-card-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), #98d865);
  border-radius: 0 0 4px 4px;
}
.busca-card-cabecalho {
  display: flex;
  align-items: center;
  gap: 12px;
}
.busca-card-cabecalho h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--escuro);
  letter-spacing: -0.025em;
}
.busca-wrap-sidebar {
  position: relative;
}
.busca-wrap-sidebar .lupa {
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  color: var(--cinza-txt); pointer-events: none; z-index: 2;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.busca-wrap-sidebar input[type=text] {
  width: 100%; height: 58px; padding: 0 24px 0 56px; font-size: 15.5px; border: 1.5px solid var(--cinza-borda);
  border-radius: 16px;
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.01);
  color: var(--escuro); font-family: var(--fonte); font-weight: 500;
  transition: all .25s ease;
  background: var(--branco);
}
.busca-wrap-sidebar input[type=text]::placeholder { color: #94a3b8; }
.busca-wrap-sidebar input[type=text]:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 4px rgba(125, 194, 71, 0.12);
}
.busca-wrap-sidebar input[type=text]:focus + .lupa {
  color: var(--verde-esc);
}

/* ===== Hero da Página de Agências (estilo Home) ===== */
.hero {
  background: radial-gradient(circle at 70% 20%, rgba(125, 194, 71, 0.07) 0%, transparent 60%), #ffffff;
  padding: 72px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--cinza-borda);
}

.conteudo {
  padding-top: 48px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--fonte-titulo);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: var(--escuro);
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero p {
  font-size: 16.5px;
  color: var(--cinza-txt);
  margin: 0 0 36px;
  line-height: 1.65;
}

.busca-wrap {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--branco);
  border: 1.5px solid var(--cinza-borda);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.busca-wrap:focus-within {
  border-color: var(--verde);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 0 0 4px rgba(125, 194, 71, 0.12);
}

.busca-wrap .lupa {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cinza-txt);
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.busca-wrap:focus-within .lupa {
  color: var(--verde-esc);
}

.busca-wrap input[type=text] {
  width: 100%;
  height: 56px;
  padding: 0 20px 0 50px;
  font-size: 15.5px;
  font-family: var(--fonte);
  font-weight: 500;
  color: var(--escuro);
  background: transparent;
  border: none;
  border-radius: 14px;
  outline: none;
}

.busca-wrap input[type=text]::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.busca-resultados-wrapper {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 6px;
  margin-top: 4px;
}
/* Estilizando a barra de rolagem */
.busca-resultados-wrapper::-webkit-scrollbar {
  width: 6px;
}
.busca-resultados-wrapper::-webkit-scrollbar-track {
  background: var(--cinza-bg);
  border-radius: 99px;
}
.busca-resultados-wrapper::-webkit-scrollbar-thumb {
  background: var(--cinza-off);
  border-radius: 99px;
}
.busca-resultados-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--cinza-txt);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  width: 100%;
  margin-bottom: 30px;
}

.grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grid-destaques-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .grid-destaques-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-destaques-home {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== Cartão Rota Individual (Diferenciado no Painel Lateral) ===== */
.card {
  background: var(--branco);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--sombra-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--verde);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}
.card-topo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 18px;
  width: 100%;
}
.card-logo {
  width: 100%; max-width: 220px; height: 110px; border-radius: 16px; object-fit: contain; flex-shrink: 0;
  background: transparent; display: flex; align-items: center; justify-content: center;
}
.card:hover .card-logo {
  /* Mantém a logo estática e limpa no hover do cartão */
}
.card-info { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.card-cidade {
  font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--escuro);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px;
}
.card-cidade .seta {
  color: var(--verde-esc); display: inline-flex; align-items: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-cidade .seta { transform: translateX(4px); }
.card-dias {
  display: inline-block; margin-top: 6px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--verde-esc);
  background: var(--verde-claro); border: 1.5px solid var(--verde-borda);
  padding: 3px 10px; border-radius: 6px;
}

.horarios-titulo {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cinza-txt);
  margin-bottom: 8px;
  text-align: left;
  width: 100%;
}

.horarios-lista-inline {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  width: 100%;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 12px;
  overflow: hidden;
}

/* Cada linha de horário */
.horario-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  background: #ffffff;
  text-decoration: none;
  transition: background 0.15s ease;
  border-bottom: 1px solid var(--cinza-borda);
  gap: 10px;
}
.horario-badge:last-child {
  border-bottom: none;
}
.horario-badge:hover {
  background: #f8fafc;
}

/* Lado esquerdo: ícone + texto */
.horario-badge .badge-hora {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--escuro);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.horario-badge .badge-hora i {
  color: var(--cinza-txt);
  flex-shrink: 0;
}

/* Lado direito: botão de ação */
.horario-badge .badge-btn {
  background: #25D366;
  color: var(--branco);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.horario-badge .badge-btn::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm5.52 11.99c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.17.25-.64.81-.79.97-.14.17-.29.19-.54.06-.25-.12-1.05-.39-1.99-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.01-.38.11-.5.11-.11.25-.29.37-.43.12-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.34-.76-1.84-.2-.48-.4-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.23.25-.86.85-.86 2.07 0 1.22.89 2.4 1.01 2.56.12.17 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.07.14-1.18-.06-.1-.22-.16-.47-.28z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.horario-badge:hover .badge-btn {
  background: #1ebe58;
}

/* Modificador: botão amarelo (Em andamento) — sem ícone WhatsApp */
.badge-btn--amarelo {
  background: #f59e0b !important;
  color: #ffffff;
}
.badge-btn--amarelo::before {
  display: none !important;
}
.horario-badge:hover .badge-btn--amarelo {
  background: #d97706 !important;
}

/* Estado Disponível */
.horario-badge.disponivel .badge-hora i {
  color: var(--verde-esc);
}

/* Estado Em Andamento */
.horario-badge.andamento {
  background: #fffdf8;
}
.horario-badge.andamento .badge-hora i {
  color: var(--ambar);
}

/* Estado Amanhã */
.horario-badge.amanha {
  background: #fafbff;
}
.horario-badge.amanha .badge-hora i {
  color: #1d4ed8;
}
.horario-badge.amanha .badge-hora {
  color: #475569;
}

/* Estado Sem WhatsApp / Desabilitado */
.horario-badge.esgotado {
  background: #f8fafc;
  cursor: not-allowed;
  opacity: 0.75;
}
.horario-badge.esgotado .badge-hora {
  color: var(--cinza-txt);
  text-decoration: line-through;
  text-decoration-color: var(--cinza-off);
}
.horario-badge.esgotado .badge-hora i {
  color: var(--cinza-off);
}
.horario-badge.esgotado .badge-btn {
  background: #cbd5e1;
  color: #64748b;
}
.horario-badge.esgotado .badge-btn::before {
  display: none;
}

.horarios-vazio {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--cinza-bg);
  border: 1.5px dashed var(--cinza-borda);
  border-radius: 12px;
  padding: 18px 16px;
  gap: 12px;
  width: 100%;
}
.horarios-vazio .vazio-texto {
  font-size: 13px;
  font-weight: 500;
  color: var(--cinza-txt);
  line-height: 1.5;
}
.horarios-vazio .badge-btn {
  background: #25D366;
  color: var(--branco);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
}
.horarios-vazio .badge-btn::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm5.52 11.99c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.17.25-.64.81-.79.97-.14.17-.29.19-.54.06-.25-.12-1.05-.39-1.99-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.01-.38.11-.5.11-.11.25-.29.37-.43.12-.14.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.34-.76-1.84-.2-.48-.4-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.23.25-.86.85-.86 2.07 0 1.22.89 2.4 1.01 2.56.12.17 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.07.14-1.18-.06-.1-.22-.16-.47-.28z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.horarios-vazio .badge-btn:hover {
  background: #1ebe58;
}

.card .btn-wpp { margin-top: auto; }
.btn-wpp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--wpp); color: var(--branco); font-weight: 700; font-size: 14.5px;
  padding: 15px; border-radius: 14px; width: 100%; border: none; cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-wpp:hover {
  filter: brightness(1.02);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px) scale(1.025);
}
.btn-wpp:active { transform: translateY(0) scale(.98); }

/* Estilo do separador "&" no título de cards bidirecionais */
.seta-amp {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--verde);
  margin: 0 8px;
  font-size: 15px;
}

/* Seções de direção dentro do card bidirecional */
.card-direcao {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px dashed var(--cinza-borda);
}
.card-direcao:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* Botão WhatsApp compacto para cards bidirecionais */
.btn-wpp-mini {
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 10px;
  margin-top: 12px;
}

.banner-promo {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  box-shadow: var(--sombra-card);
  display: block;
  overflow: hidden;
  border: 1px solid var(--cinza-borda);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.banner-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--verde-borda);
}

/* Novo Container de Banner na Home */
.banner-promo-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  border: 1px solid var(--cinza-borda);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.banner-promo-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--verde-borda);
}
.banner-promo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== Seção Sobre Nós ===== */
.secao-sobre {
  padding: 120px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--cinza-borda);
  overflow: hidden;
}
.secao-sobre-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}
.sobre-imagem {
  display: flex;
  justify-content: center;
}
/* ===== Carrossel Sobre Nós (Abas Temporizadas) ===== */
.carrossel-imagem-container {
  width: 100%;
  max-width: 580px;
  height: 360px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  border: 1px solid var(--cinza-borda);
  background: transparent;
}
.carrossel-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.carrossel-slide-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.carrossel-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-legenda {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(8, 12, 20, 0.85) 0%, transparent 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  z-index: 3;
}

/* Abas do Carrossel */
.carrossel-abas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.aba-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.aba-item:hover {
  border-color: var(--verde-borda);
  transform: translateY(-2px);
}
.aba-item.active {
  border-color: var(--verde);
  background: var(--verde-claro);
  box-shadow: 0 10px 25px -5px rgba(125, 194, 71, 0.08);
}
.aba-indicador {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cinza-bg);
  border: 1px solid var(--cinza-borda);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.aba-indicador i {
  width: 20px;
  height: 20px;
  color: var(--cinza-txt);
  transition: all 0.3s ease;
}
.aba-item.active .aba-indicador {
  background: var(--verde);
  border-color: var(--verde);
}
.aba-item.active .aba-indicador i {
  color: var(--branco);
}
.aba-conteudo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aba-conteudo b {
  font-size: 15px;
  font-weight: 700;
  color: var(--escuro);
  transition: color 0.3s ease;
}
.aba-item.active .aba-conteudo b {
  color: var(--verde-esc);
}
.aba-conteudo p {
  font-size: 13.5px;
  color: var(--cinza-txt);
  line-height: 1.5;
  margin: 0;
}

/* Barra de progresso temporizada */
.aba-progresso-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}
.aba-progresso-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--verde);
  transition: width 10s linear;
}
.aba-item.active .aba-progresso-fill {
  /* Controlado via JS */
}

/* Ajustes gerais de tipografia do sobre */
.sobre-texto h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--escuro);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.sobre-texto p {
  font-size: 16.5px;
  color: var(--cinza-txt);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ===== Banner Publicitário (Placeholder) ===== */
.banner-publicitario-wrapper {
  padding: 12px 0 24px;
  background: #ffffff;
}
.banner-publicitario-placeholder {
  width: 100%;
  padding: 24px;
  background: linear-gradient(90deg, var(--verde-claro) 0%, #ffffff 100%);
  border: 2px dashed var(--verde-borda);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sombra);
  transition: all 0.25s ease;
}
.banner-publicitario-placeholder:hover {
  border-color: var(--verde);
  transform: translateY(-1px);
}
.banner-conteudo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--escuro-2);
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.banner-conteudo b {
  color: var(--verde-esc);
}

/* ===== Seção de Destaques (Home) ===== */
.secao-destaques {
  padding: 120px 0;
  background: var(--cinza-bg);
  border-bottom: 1px solid var(--cinza-borda);
}

/* Estilo Destaque Brilhoso */
.card.destaque {
  border-color: var(--verde);
  box-shadow: 0 20px 40px -10px rgba(125, 194, 71, 0.12), 0 0 0 2px var(--verde);
  background: linear-gradient(180deg, #ffffff 0%, #fcfef8 100%);
  position: relative;
  overflow: hidden;
}
.card.destaque::before {
  content: "★ Destaque";
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--verde);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(125, 194, 71, 0.25);
  z-index: 5;
}

/* ===== Seção Serviços (Estilo Nomadfy Flow) ===== */
.secao-servicos {
  padding: 120px 0;
  background: var(--cinza-bg);
  border-bottom: 1px solid var(--cinza-borda);
}

.servico-card-acoplado {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: 54px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  box-shadow: var(--sombra-card);
  margin-bottom: 48px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.servico-card-acoplado:last-child {
  margin-bottom: 0;
}
.servico-card-acoplado:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
  border-color: var(--verde-borda);
}
.servico-card-acoplado.inverter {
  grid-template-columns: 0.85fr 1.15fr;
}

.servico-texto-detalhe {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.servico-texto-detalhe h3 {
  font-size: 38px;
  font-weight: 800;
  color: var(--escuro);
  margin-bottom: 24px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.servico-texto-detalhe p {
  font-size: 16px;
  color: var(--cinza-txt);
  line-height: 1.7;
  margin-bottom: 20px;
}
.servico-texto-detalhe p.destaque-negrito {
  font-weight: 500;
  color: var(--escuro-2);
}
.servico-texto-detalhe p.destaque-negrito strong {
  font-weight: 800;
  color: var(--escuro);
}

/* Painel visual de fluxo */
.servico-fluxo-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Estrutura de caixas conectadas estilo Nomadfy */
.fluxo-container {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 3;
  width: 100%;
  justify-content: center;
}
.fluxo-coluna {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 380px;
  width: 100%;
  position: relative;
}
.fluxo-coluna::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background-image: linear-gradient(to bottom, var(--cinza-off) 50%, transparent 50%);
  background-size: 2px 12px;
  z-index: 1;
  animation: tracejadoVertical 25s linear infinite;
}
@keyframes tracejadoVertical {
  to {
    background-position-y: -1000px;
  }
}
.fluxo-box {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  box-shadow: 0 10px 25px -5px rgba(34, 37, 44, 0.03), 0 0 0 1px rgba(34, 37, 44, 0.01);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}
.fluxo-box:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(34, 37, 44, 0.06);
  border-color: var(--verde-borda);
}
.fluxo-box b {
  font-size: 15px;
  font-weight: 700;
  color: var(--escuro);
}
.fluxo-box span {
  font-size: 12.5px;
  color: var(--cinza-txt);
}
.fluxo-box.ativo {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--branco);
  box-shadow: 0 10px 20px -5px rgba(125, 194, 71, 0.3);
}
.fluxo-box.ativo b, .fluxo-box.ativo span {
  color: var(--branco);
}
.fluxo-box.andamento {
  background: #f59e0b;
  border-color: #f59e0b;
  color: var(--branco);
  box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.3);
}
.fluxo-box.andamento b, .fluxo-box.andamento span {
  color: var(--branco);
}

/* Tag flutuante em cima do fluxo */
.fluxo-tag-info {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #f59e0b;
  color: var(--branco);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}
.fluxo-tag-info.verde {
  background: var(--verde-esc);
  box-shadow: 0 4px 10px rgba(90, 158, 46, 0.2);
}

/* Ocultar SVG antigo de conexão */
.fluxo-conexao {
  display: none;
}

/* Efeitos de Scroll Reveal Direcionais (Estilo Elementor / Nomadfy) */
.reveal, .reveal-left, .reveal-right, .reveal-top, .reveal-bottom {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1), transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal {
  transform: translateY(20px);
}
.reveal-left {
  transform: translateX(-24px);
}
.reveal-right {
  transform: translateX(24px);
}
.reveal-top {
  transform: translateY(-24px);
}
.reveal-bottom {
  transform: translateY(24px);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-top.active, .reveal-bottom.active {
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 900px) {
  .servico-linha-fluxo, .servico-linha-fluxo.inverter {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
    margin-bottom: 80px;
  }
  .servico-linha-fluxo.inverter .servico-texto-detalhe {
    direction: ltr;
  }
}

/* ===== Seção Mapa ===== */
.secao-mapa {
  padding: 90px 0;
  background: #ffffff;
}
.secao-mapa-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
}
.mapa-texto h2 {
  font-size: 34px;
  color: var(--escuro);
  margin-bottom: 18px;
}
.mapa-texto p {
  font-size: 16px;
  color: var(--cinza-txt);
  line-height: 1.6;
  margin-bottom: 28px;
}
.contatos-rapidos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contatos-rapidos li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--escuro-2);
}
.mapa-wrapper {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cinza-borda);
  box-shadow: var(--sombra);
}
.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Animações ===== */
@keyframes surgir { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes descer { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulsar { 0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,6,.0); } 50% { box-shadow: 0 0 0 4px rgba(217,119,6,.15); } }

.hero-home h1, .hero-home p, .diferenciais-lista-mini, .hero-home-busca-container { animation: descer .6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-home p { animation-delay: .08s; }
.diferenciais-lista-mini { animation-delay: .16s; }
.hero-home-busca-container { animation-delay: .24s; }

.card { animation: surgir .5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.h-linha.andamento { animation: pulsar 2s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ===== Estado vazio ===== */
.vazio { text-align: center; color: var(--cinza-txt); padding: 50px 20px; grid-column: 1 / -1; }
.vazio i { font-size: 40px; opacity: .5; color: var(--verde); display: block; margin-bottom: 12px; }
.vazio p { font-size: 15px; font-weight: 500; }

/* ===== Rodapé ===== */
.rodape { background: #080c14; color: #94a3b8; padding: 64px 0 36px; border-top: 1px solid rgba(255,255,255,.05); }
.rodape-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { .rodape-grid { grid-template-columns: 1fr; gap: 36px; } }
.rodape .col-marca { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.rodape .col-marca img { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 2px solid rgba(255,255,255,.1); }
.rodape .col-marca b { color: #fff; font-size: 19px; }
.rodape p.slogan { font-size: 14px; line-height: 1.6; max-width: 320px; color: #64748b; }
.rodape h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.rodape ul { list-style: none; }
.rodape li { margin-bottom: 14px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.rodape a { transition: color .2s; }
.rodape a:hover { color: var(--verde); }
.rodape .social { display: flex; gap: 12px; margin-top: 10px; }
.rodape .social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .2s; }
.rodape .social a:hover { background: var(--verde); transform: translateY(-2px); }
.rodape .social a svg {
  width: 20px;
  height: 20px;
}
.rodape .credito { text-align: center; border-top: 1px solid rgba(255,255,255,.04); margin-top: 56px; padding-top: 24px; font-size: 13px; color: #334155; }

/* ================= FORM / INPUTS ================= */
label { font-size: 13px; color: var(--cinza-txt); font-weight: 600; display: block; margin-bottom: 6px; }
select, input[type=text], input[type=password], input[type=tel], input[type=time] {
  width: 100%; height: 48px; padding: 0 14px; font-size: 15px; font-family: inherit; color: var(--escuro);
  background: var(--branco); border: 1.5px solid var(--cinza-borda); border-radius: 12px; transition: all .2s;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}
select:focus, input:focus {
  outline: none; border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(125, 194, 71, 0.15);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 14.5px; font-weight: 700; cursor: pointer;
  padding: 13.5px 24px; border-radius: 14px; border: 1.5px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn i { display: flex; align-items: center; }
.btn-verde { 
  background: var(--verde); 
  color: var(--branco); 
  box-shadow: 0 8px 20px -6px rgba(125,194,71,0.4); 
}
.btn-verde:hover { 
  background: var(--verde-esc); 
  transform: translateY(-2px) scale(1.03); 
  box-shadow: 0 12px 24px -6px rgba(90,158,46,0.5); 
}
.btn-escuro { 
  background: var(--escuro); 
  color: var(--branco); 
  box-shadow: 0 8px 20px -6px rgba(15,23,42,0.3);
}
.btn-escuro:hover { 
  background: #000; 
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 24px -6px rgba(0,0,0,0.4);
}
.btn-claro { 
  background: var(--branco); 
  color: var(--escuro); 
  border-color: var(--cinza-borda); 
  box-shadow: 0 4px 12px rgba(15,23,42,0.02);
}
.btn-claro:hover { 
  border-color: var(--escuro); 
  background: var(--cinza-bg); 
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 16px rgba(15,23,42,0.06);
}
.btn-perigo { background: var(--branco); color: var(--vermelho); border-color: #fca5a5; }
.btn-perigo:hover { background: #fee2e2; transform: translateY(-1px); }
.btn-bloco { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ================= ADMIN PANEL ================= */
.conteudo-admin { padding: 36px 0 90px; }
.admin-topo { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.admin-topo h1 { font-size: 28px; }
.lista-item {
  background: var(--branco); border: 1px solid var(--cinza-borda); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 14px; display: flex; align-items: center; gap: 16px;
  transition: all 0.2s ease;
}
.lista-item:hover { border-color: var(--verde-borda); box-shadow: var(--sombra); }
.lista-item .info { flex: 1; min-width: 0; }
.lista-item .info b { font-size: 16px; color: var(--escuro); }
.lista-item .info small { display: block; font-size: 13px; color: var(--cinza-txt); margin-top: 6px; }
.lista-item .acoes { display: flex; gap: 8px; flex-shrink: 0; }

.badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-ativo { background: var(--verde-claro); color: var(--verde-esc); }
.badge-inativo { background: #f1f5f9; color: var(--cinza-txt); }

.icon-btn {
  width: 40px; height: 40px; border-radius: 12px; border: 1.5px solid var(--cinza-borda);
  background: var(--branco); cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 16px; color: var(--escuro-2); transition: all 0.2s;
}
.icon-btn:hover { border-color: var(--escuro); background: var(--cinza-bg); }
.icon-btn.perigo:hover { border-color: var(--vermelho); color: var(--vermelho); background: #fee2e2; }

.overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 100; display: flex; align-items: flex-start; justify-content: center;
  padding: 32px 16px; overflow-y: auto;
}
.modal {
  background: var(--branco); border-radius: var(--radius); width: 100%; max-width: 560px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25); margin: auto;
  border: 1px solid var(--cinza-borda); overflow: hidden;
  animation: surgir .35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-topo { padding: 22px 26px; border-bottom: 1px solid var(--cinza-borda); display: flex; align-items: center; justify-content: space-between; }
.modal-topo h2 { font-size: 19px; }
.modal-corpo { padding: 26px; }
.modal-rodape { padding: 20px 26px; border-top: 1px solid var(--cinza-borda); display: flex; gap: 10px; justify-content: flex-end; }
.campo { margin-bottom: 22px; }
.campo-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .campo-2 { grid-template-columns: 1fr; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip {
  background: var(--verde-claro); border: 1px solid var(--verde-borda); color: var(--verde-esc);
  padding: 6px 10px 6px 12px; border-radius: 8px; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.chip button { background: none; border: none; cursor: pointer; color: var(--verde-esc); font-size: 14px; line-height: 1; display: flex; align-items: center; }
.chip button:hover { opacity: 1; }
.add-hora { display: flex; gap: 8px; margin-top: 10px; }
.add-hora input { width: 140px; }
.logo-upload { display: flex; align-items: center; gap: 16px; }
.logo-preview {
  width: 64px; height: 64px; border-radius: 12px; object-fit: cover; border: 1.5px solid var(--cinza-borda);
  background: var(--verde-claro); display: flex; align-items: center; justify-content: center;
  color: var(--verde-esc); font-weight: 700;
}
.login-box {
  max-width: 400px; margin: 90px auto; background: var(--branco); border: 1px solid var(--cinza-borda);
  border-radius: var(--radius); box-shadow: var(--sombra-card); padding: 40px;
}
.login-box .logo-c { width: 64px; height: 64px; margin: 0 auto 24px; border-radius: 50%; border: 2px solid var(--verde-claro); box-shadow: var(--sombra); }
.login-box h1 { font-size: 24px; text-align: center; margin-bottom: 8px; }
.login-box p { font-size: 14px; color: var(--cinza-txt); text-align: center; margin-bottom: 28px; font-weight: 500; }

.banner { padding: 14px 18px; border-radius: 12px; font-size: 14px; display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-weight: 500; }
.banner-aviso { background: var(--ambar-bg); border: 1px solid var(--ambar-borda); color: var(--ambar); }
.banner-ok { background: var(--verde-claro); border: 1px solid var(--verde-borda); color: var(--verde-esc); }
.banner-erro { background: #fee2e2; border: 1px solid #fca5a5; color: var(--vermelho); }

.muted { color: var(--cinza-txt); font-size: 13px; font-weight: 500; }
.center { text-align: center; }
.mt-16 { margin-top: 16px; }
.spin { animation: girar 1s linear infinite; display: inline-block; }
@keyframes girar { to { transform: rotate(360deg); } }

/* ===== Responsividade Geral do Portal ===== */
@media (max-width: 900px) {
  .hero-home-grid, .secao-sobre-grid, .secao-mapa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-home-texto, .sobre-texto, .mapa-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-home-texto {
    order: 2;
  }
  .hero-home-imagem {
    order: 1;
  }
  .diferenciais-lista-mini {
    align-items: center;
  }
  .diferenciais-lista {
    align-items: center;
    text-align: left;
  }
  .contatos-rapidos {
    align-items: center;
  }
  .secao-busca, .secao-sobre, .secao-servicos, .secao-mapa {
    padding: 60px 0;
  }

  /* Ajuste responsivo dos cards acoplados de serviços (Nomadfy Flow) */
  .servico-card-acoplado {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 32px 20px !important;
    gap: 32px !important;
  }
  .servico-card-acoplado.inverter {
    flex-direction: column-reverse !important; /* Força o Texto em cima, Fluxograma embaixo no mobile */
  }
  .servico-texto-detalhe {
    align-items: center !important;
    text-align: center !important;
  }
  .servico-texto-detalhe h3 {
    font-size: 26px !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }
  .servico-texto-detalhe p {
    text-align: center !important;
    font-size: 15px !important;
  }
  .servico-texto-detalhe .btn {
    align-self: center !important;
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }
}

/* Etiqueta de dias no badge de horario (dia da semana) */
.horario-badge .badge-dias { display:block; font-size:10.5px; font-weight:600; opacity:.72; margin-top:1px; line-height:1.2; }
