/* =========================================
   VARIÁVEIS DE TEMA — Estética Marketing (Verde & Dourado)
========================================= */
:root {
  --brand-forest: #1C423F;
  --brand-forest-mid: #0D2927;
  --brand-forest-dark: #0A2323;
  --brand-gold: #B28040;
  --brand-gold-light: #C9A55F;
  --text-main: #2B3B38;
  --text-muted: #5C6B67;
  --bg-light: #F7F4EF;
  --font-main: 'Plus Jakarta Sans', sans-serif;

  /* aliases mantidos por compatibilidade com regras existentes */
  --ag-green: var(--brand-forest);
  --ag-green-light: var(--brand-gold);
  --ag-yellow: var(--brand-gold-light);
  --ag-dark: var(--brand-forest-dark);
}

html {
  overflow-x: hidden;
  max-width: 100%;
}
/* Widget de WhatsApp flutuante (whats_footer.php) é position:fixed — elementos fixed
   escapam do overflow-x:hidden do body/html, então travamos a largura direto aqui. */
#wa, #wa .wa__btn_popup, #wa .wa__popup_chat_box { max-width: calc(100vw - 20px); }
body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: #ffffff;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Utilitários gerais */
.text-green { color: var(--brand-forest) !important; }
.bg-dark .text-green,
footer .text-green { color: var(--brand-gold-light) !important; }

.text-gradient-green {
  background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-red {
  background: linear-gradient(90deg, #a3492f 0%, #7a3220 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-dark { color: #16211F !important; }
.text-muted { color: var(--text-muted) !important;  }
.bg-dark { background-color: var(--brand-forest-dark) !important; }

.bg-light-gray { background-color: var(--bg-light); }
.bg-light-green { background-color: rgba(28, 66, 63, 0.08); }
.bg-light-warning { background-color: rgba(178, 128, 64, 0.12); }
.bg-light-dark { background-color: rgba(10, 35, 35, 0.06); }
.bg-green-light { background-color: rgba(28, 66, 63, 0.08); }
.bg-green-soft { background-color: rgba(28, 66, 63, 0.08); }
.bg-green-gradient { background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-forest-dark) 100%); }

.icon-circle .text-warning { color: var(--brand-gold) !important; }
.icon-circle .text-dark { color: var(--brand-forest-dark) !important; }
.floating-card .text-warning { color: var(--brand-gold) !important; }

.relative-z { position: relative; z-index: 10; }

/* ESPAÇAMENTO — ritmo generoso entre dobras */
.py-100 { padding: 140px 0; }
@media (max-width: 991.98px) { .py-100 { padding: 96px 0; } }
@media (max-width: 575.98px) { .py-100 { padding: 72px 0; } }

.pt-6 { padding-top: 4.5rem !important; }
.pb-6 { padding-bottom: 4.5rem !important; }
.mt-6 { margin-top: 4.5rem !important; }
.mb-6 { margin-bottom: 4.5rem !important; }
@media (min-width: 992px) {
  .p-lg-6 { padding: 4.5rem !important; }
}
@media (max-width: 767.98px) {
  .pt-6 { padding-top: 3rem !important; }
  .pb-6 { padding-bottom: 3rem !important; }
  .mt-6 { margin-top: 3rem !important; }
  .mb-6 { margin-bottom: 3rem !important; }
}

/* TIPOGRAFIA — hierarquia mais editorial */
.display-4, .display-5, .display-6 { letter-spacing: -0.02em; }
.lead { line-height: 1.65; }

.eyebrow-text {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brand-forest);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow-text::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--brand-gold);
  display: inline-block; flex-shrink: 0;
}
.eyebrow-text + h1,
.eyebrow-text + h2,
.eyebrow-text + h3 { margin-top: 1.15rem !important; }

/* TRUST STRIP */
.trust-strip { padding: 44px 0; }
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 0.92rem; color: var(--brand-forest); padding: 10px 8px;
}
.trust-item i { font-size: 1.15rem; color: var(--brand-gold); flex-shrink: 0; }
@media (min-width: 768px) {
  .trust-item:not(:last-child) { border-right: 1px solid rgba(10, 35, 35, 0.08); }
}

/* NÚMEROS DE DESTAQUE (cases/resultados) */
.stat-number { font-size: 2.75rem; letter-spacing: -0.02em; line-height: 1; }

/* Elementos decorativos */
.bg-blob {
  position: absolute; filter: blur(90px); z-index: -1; opacity: 0.3; border-radius: 50%;
  animation: floatBlob 10s infinite alternate ease-in-out;
}
.blob-1 { top: -10%; right: -5%; width: 500px; height: 500px; background: rgba(178, 128, 64, 0.2); }
.blob-2 { top: 40%; left: -10%; width: 400px; height: 400px; background: rgba(28, 66, 63, 0.15); animation-delay: -5s; }

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 50px) scale(1.1); }
}

/* NAVBAR (fundo escuro) */
.glass-navbar {
  background: linear-gradient(135deg, rgba(13, 41, 39, 0.94) 0%, rgba(10, 35, 35, 0.97) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(178, 128, 64, 0.2);
  padding: 15px 0;
  transition: all 0.3s ease;
}
.navbar-toggler { border: none; box-shadow: none !important; }
.navbar-toggler i { color: #fff !important; }
.custom-link {
  color: rgba(255, 255, 255, 0.85) !important; font-weight: 600; padding: 8px 16px !important;
  border-radius: 8px; transition: 0.3s;
}
.custom-link:hover, .custom-link.active {
  background: rgba(178, 128, 64, 0.15); color: var(--brand-gold-light) !important;
}
.dropdown-premium, .dropdown-menu { border-radius: 14px; border: 1px solid rgba(178, 128, 64, 0.15); }
.item-drop-nav { border: 1px solid #f5f2ec; padding: 10px; transition: 0.25s; }
.item-drop-nav:hover { background-color: rgba(178, 128, 64, 0.1); color: var(--brand-forest); }
.item-drop-nav:active { background-color: var(--brand-forest); color: #fff; }

/* BOTÕES PREMIUM */
.btn-premium-green {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
  color: #0A2323 !important;
  font-weight: 700;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-premium-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(178, 128, 64, 0.35) !important;
  color: #0A2323 !important;
}
.btn-premium-outline {
  background: transparent;
  color: var(--brand-forest);
  font-weight: 700;
  border: 2px solid #e5e0d6;
  transition: 0.3s;
  font-size: 17px;
}
.btn-premium-outline:hover { border-color: var(--brand-forest); background: var(--brand-forest); color: white; }
.btn-outline-dark { color: var(--brand-forest); border-color: var(--brand-forest); }
.btn-outline-dark:hover { background: var(--brand-forest); border-color: var(--brand-forest); color: #fff; }

/* HERO PREMIUM */
.hero-empresario {
  min-height: 100vh; position: relative; padding: 160px 0 100px;
  background: url('../../imagens/recepcao.jpg') center center / cover no-repeat;
}
.hero-empresario h2, .hero-empresario p { overflow-wrap: break-word; }
@media (max-width: 575.98px) {
  .hero-empresario h2 { font-size: 2rem; }
  .hero-empresario {
      background: url(../../imagens/recepcao.jpg) -200px 110px / cover no-repeat !important;
  }
}
.hero-empresario-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,35,35,0.88) 0%, rgba(10,35,35,0.78) 35%, rgba(10,35,35,0.5) 70%, rgba(10,35,35,0.28) 100%);
  z-index: 1;
}
.hero-empresario h2, .hero-empresario p { text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.hero-empresario-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: #fff; opacity: 0.75; font-size: 1.6rem;
  animation: heroScrollBounce 2s ease-in-out infinite;
}
.hero-empresario-scroll:hover { color: var(--brand-gold-light); opacity: 1; }
@keyframes heroScrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}
@media (max-width: 991.98px) {
  .hero-empresario { padding: 140px 0 90px; }
}

.hero-premium { min-height: 80vh; padding-top: 100px !important; position: relative; overflow: unset !important; }
@media (max-width: 1099.98px) {
  .hero-premium, .page-hero { padding-top: 140px !important; }
}
.hero-premium::before {
  content: '';
  position: absolute; top: -15%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(178, 128, 64, 0.18) 0%, rgba(178, 128, 64, 0) 70%);
  z-index: 0; pointer-events: none;
}
.hero-premium::after {
  content: '';
  position: absolute; bottom: -15%; left: -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(28, 66, 63, 0.12) 0%, rgba(28, 66, 63, 0) 70%);
  z-index: 0; pointer-events: none;
}
.badge-premium {
  display: inline-flex; align-items: center; gap: 10px; background: white; padding: 8px 20px;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem; max-width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03);
}
@media (max-width: 575.98px) {
  .badge-premium { white-space: normal; text-align: left; }
}
.pulse-dot {
  width: 10px; height: 10px; background: var(--brand-gold); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(178, 128, 64, 0.7); animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(178, 128, 64, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(178, 128, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(178, 128, 64, 0); }
}
.hero-image-wrapper { position: relative; perspective: 1000px; z-index: 1; }
.main-img { border-radius: 2rem; box-shadow: 0 25px 50px -12px rgba(10,35,35,0.25); transform: rotateY(-5deg); transition: 0.5s; }
.hero-image-wrapper:hover .main-img { transform: rotateY(0deg); }
.floating-card {
  position: absolute; background: white; padding: 15px 25px; border-radius: 16px;
  animation: floatCard 6s ease-in-out infinite; border: 1px solid rgba(0,0,0,0.05);
}
.stat-1 { bottom: -10%; left: -5%; animation-delay: 0s; }
.stat-2 { top: -10%; right: -7%; animation-delay: 3s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.icon-box { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }

/* CARDS PREMIUM (Processo, Serviços, Diferenciais) */
.card-premium, .card-service-grid, .card-process {
  background: white; border-radius: 24px; border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: all 0.4s ease; position: relative;
}
.card-premium:hover, .card-service-grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10,35,35,0.10);
  border-color: rgba(178, 128, 64, 0.35);
}
.icon-circle { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-link-custom { color: var(--brand-forest); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: 0.3s; }
.btn-link-custom:hover { gap: 10px; color: var(--brand-gold); }

/* CARROSSEL DE PARCEIROS (marquee CSS puro, sem dependencia de lib externa) */
.parceiros-secao { overflow: hidden; }
.parceiros-carrossel { overflow: hidden; position: relative; }
.parceiros-carrossel::before, .parceiros-carrossel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.parceiros-carrossel::before { left: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%); }
.parceiros-carrossel::after { right: 0; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%); }
.parceiros-track {
  display: flex; gap: 24px; width: max-content;
  animation-name: parceirosMarquee; animation-timing-function: linear; animation-iteration-count: infinite;
}
.parceiros-carrossel:hover .parceiros-track { animation-play-state: paused; }
.parceiros-track.sentido-inverso { animation-direction: reverse; }
@keyframes parceirosMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.parceiro-card {
  flex: 0 0 auto; width: 190px; background: #fff; border-radius: 20px; padding: 28px 20px;
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 8px 24px rgba(10,35,35,0.04);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.parceiro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(10,35,35,0.1);
  border-color: rgba(178, 128, 64, 0.3);
}
.parceiro-card-logo-wrap {
  width: 100%; height: 84px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.parceiro-card-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }
.parceiro-card-logo-wrap img.empresa-placeholder-logo { max-width: 44px !important; max-height: 44px !important; opacity: .35; }
.parceiro-card-logo-fallback {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-forest-mid) 0%, var(--brand-forest-dark) 100%);
  color: var(--brand-gold-light); font-weight: 800; font-size: 1.35rem; line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.parceiro-card-nome {
  font-weight: 800; font-size: 0.92rem; color: var(--brand-forest-dark); text-decoration: none; display: block; line-height: 1.35;
}
.parceiro-card-nome:hover { color: var(--brand-gold); }
.parceiro-card-local { font-size: 0.66rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 6px; }
@media (max-width: 575.98px) {
  .parceiros-carrossel::before, .parceiros-carrossel::after { width: 40px; }
  .parceiro-card { width: 150px; padding: 20px 14px; }
  .parceiro-card-logo-wrap { height: 64px; }
  .parceiro-card-logo-fallback { width: 46px; height: 46px; font-size: 1.1rem; border-radius: 12px; }
}

/* CARROSSEL DE NOTICIAS/PUBLICACOES (home) — mesmo mecanismo de marquee dos parceiros */
.noticia-card {
  flex: 0 0 auto; width: 300px; background: #fff; border-radius: 20px; padding: 26px;
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 8px 24px rgba(10,35,35,0.04);
  display: flex; flex-direction: column; text-align: left; text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.noticia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(10,35,35,0.1);
  border-color: rgba(178, 128, 64, 0.3);
}
.post-icone-badge {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-forest-dark) 100%);
}
.post-icone-badge i { color: var(--brand-gold-light); font-size: 1.5rem; }
.noticia-card-fonte { font-size: 0.66rem; color: var(--brand-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.noticia-card-titulo { font-weight: 800; font-size: 1rem; color: var(--brand-forest-dark); line-height: 1.4; margin-bottom: 10px; }
.noticia-card:hover .noticia-card-titulo { color: var(--brand-gold); }
.noticia-card-resumo { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0; }
@media (max-width: 575.98px) {
  .noticia-card { width: 250px; padding: 20px; }
}

/* PAGINA DE LEITURA DA PUBLICACAO (noticia.php) */
.noticia-hero { background: var(--bg-light); }
.noticia-hero-icone {
  width: 84px; height: 84px; border-radius: 22px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-forest-dark) 100%);
  box-shadow: 0 15px 35px rgba(10,35,35,0.15);
}
.noticia-hero-icone i { color: var(--brand-gold-light); font-size: 2.4rem; }
.noticia-conteudo { font-size: 1.08rem; line-height: 1.85; color: var(--text-main); }
.noticia-conteudo p { margin-bottom: 1.5rem; }
.noticia-conteudo p:last-child { margin-bottom: 0; }
.noticia-fonte-box {
  background: var(--bg-light); border: 1px solid rgba(0,0,0,0.05); border-radius: 14px;
  padding: 16px 22px; font-size: 0.9rem; color: var(--text-muted);
}
.noticia-fonte-box a { color: var(--brand-forest); font-weight: 700; text-decoration: none; }
.noticia-fonte-box a:hover { color: var(--brand-gold); }
.noticia-card-icone {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light);
}
.noticia-card-icone i { color: var(--brand-gold); font-size: 1.3rem; }

/* BARRAS DE PROGRESSO (Processo) */
.progress-premium { height: 8px; background: rgba(0,0,0,0.05); border-radius: 10px; overflow: hidden; }
.progress-premium .progress-bar { background: linear-gradient(90deg, var(--brand-gold-light), var(--brand-gold)); }

/* ACCORDION (FAQ) */
.accordion-premium .accordion-item { border: 1px solid rgba(0,0,0,0.05); border-radius: 16px !important; margin-bottom: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.accordion-premium .accordion-button { font-weight: 700; padding: 20px; color: var(--brand-forest-dark); }
.accordion-premium .accordion-button:not(.collapsed) { background: var(--bg-light); color: var(--brand-forest); box-shadow: none; }
.accordion-premium .accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-button:not(.collapsed) { color: var(--brand-forest); background-color: rgba(178, 128, 64, 0.06); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: rgba(178, 128, 64, 0.25); }

/* FORMS */
.custom-input { border-radius: 12px; border: 1px solid #e2e8f0; background-color: var(--bg-light); }
.custom-input:focus { border-color: var(--brand-gold); box-shadow: 0 0 0 4px rgba(178, 128, 64, 0.12); background-color: white; }
.shadow-xl { box-shadow: 0 25px 50px -12px rgba(10,35,35,0.15); }

/* Elementos de apoio (cards de destaque / seção problema) */
.glass-card { backdrop-filter: blur(6px); }
.bg-brand-light { background-color: rgba(178, 128, 64, 0.08) !important; }
.bg-brand-primary { background-color: var(--brand-forest) !important; }
.border-brand-primary { border-color: var(--brand-gold) !important; }
.text-brand-dark { color: var(--brand-forest-dark) !important; }
.icon-shape { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* FOOTER & GERAIS */
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; display: block; margin-bottom: 10px; transition: 0.3s; }
.footer-links a:hover { color: var(--brand-gold-light); padding-left: 5px; }
.filter-white { filter: brightness(0) invert(1); }

/* LÓGICA DAS PÁGINAS (SPA) */
.page { display: none; opacity: 0; transition: opacity 0.4s ease; }
.page.active { display: block; opacity: 1; animation: fadeIn 0.4s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Garante que o header esteja acima de qualquer conteúdo */
header {
    position: relative;
    z-index: 9999 !important;
}

.navbar-area {
    z-index: 10000 !important;
}

/* Garante que o dropdown especificamente não seja cortado */
.dropdown-menu {
    z-index: 10001 !important;
    position: absolute !important;
}

/* Evita que seções com 'overflow: hidden' escondam o menu */
main, section {
    z-index: 1;
}

@media only screen and (max-width: 991px) {
	.navbar-brand {
		display: none;
	}
	.stat-2  {
		right: -6px;
	}
	.stat-1  {
		left:0;
	}

}
@media only screen and (max-width: 768px) {
	main {
    overflow: hidden;
  }
  .text-sd-center {
    text-align: center;
  }
  .flex-foot {
    flex-direction: column;
  }

}

.page-hero {
  padding-top: 100px !important;
}
.btn-slide {
  font-size: 17px;
}
.bg-linear {
  background: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-forest-dark) 100%);
}
.icon-tex {
  line-height: 30px;
}

.num-tex {
  width: 40px !important; height: 40px !important; left: -45px !important; top: -5px !important; z-index: 2 !important;
}

.hover-up:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.step-num {
    width: 35px; height: 35px;
    background: var(--brand-forest); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; flex-shrink: 0;
}
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.rounded-bl-4 { border-bottom-left-radius: 1.5rem; }

.ls-wide { letter-spacing: 1px; }
.icon-sm {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-serv {
  max-width: 100px;
}
.tex-solucoes {
  min-height: 147px;
}

.footer-bg {
  background: linear-gradient(180deg, var(--brand-forest-mid) 0%, var(--brand-forest-dark) 100%);
}

.cliente-logo{
    max-height: 70px;
    width: auto !important;
    margin: 0 auto;
    opacity: .7;
    filter: grayscale(100%);
    transition: all .3s ease;
}

.cliente-logo:hover{
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.owl-clientes .item{
    display:flex;
    justify-content:center;
    align-items:center;
    height:90px;
}

.foot {
  padding-left: 5px;
  text-decoration: none;
  color: #fff;
}
.flex-foot {
  display: flex !important;
  justify-content: space-between;
}

.page-numbers {
    padding: 10px;
    color: var(--brand-forest-dark);
    font-weight: 700;
}

@media (min-width: 992px) {
  .border-start-lg { border-left: 1px solid rgba(0,0,0,0.08); }
}

/* =========================================
   WIDGET DE AVALIAÇÕES (estilo Google)
========================================= */
.google-reviews-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  background: #fff; border: 1px solid rgba(10, 35, 35, 0.1); border-radius: 16px;
  padding: 18px 26px; margin-bottom: 32px; box-shadow: 0 10px 30px rgba(10,35,35,0.03);
}
.google-wordmark { font-family: Arial, Helvetica, sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.5px; }
.google-reviews-bar .stars-row { color: #FBBC05; font-size: 1.05rem; letter-spacing: 2px; }
.google-reviews-bar .rating-label { font-weight: 700; color: #202124; }
.google-reviews-bar .rating-count { color: #5f6368; }

.owl-reviews { position: relative; padding: 0 6px; }
.owl-reviews .owl-stage-outer { padding: 6px 0 26px; }
.review-card {
  background: #fff; border: 1px solid rgba(10, 35, 35, 0.1); border-radius: 16px;
  padding: 24px; height: 100%; position: relative;
}
.review-card .review-google-icon { position: absolute; top: 22px; right: 20px; font-size: 1.1rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.05rem; flex-shrink: 0;
}
.review-stars { color: #FBBC05; font-size: 0.85rem; letter-spacing: 1px; }
.review-verified { color: #4285F4; font-size: 0.75rem; margin-left: 4px; vertical-align: 1px; }
.review-text { color: #3c4043; font-size: 0.95rem; line-height: 1.55; }
.review-text-clamp { display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.review-text-clamp.expanded { -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
.leia-mais { color: #5f6368; font-weight: 600; cursor: pointer; font-size: 0.9rem; display: inline-block; margin-top: 4px; }
.leia-mais:hover { color: var(--brand-forest); }

.owl-reviews .owl-nav button.owl-prev,
.owl-reviews .owl-nav button.owl-next {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff !important; border: 1px solid rgba(10,35,35,0.12) !important;
  color: var(--brand-forest) !important; font-size: 1rem;
  display: flex !important; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(10,35,35,0.1);
}
.owl-reviews .owl-nav button.owl-prev i,
.owl-reviews .owl-nav button.owl-next i { font-size: 1.1rem; line-height: 1; }
.owl-reviews .owl-nav button.owl-prev { left: -12px; }
.owl-reviews .owl-nav button.owl-next { right: -12px; }
@media (min-width: 992px) {
  .owl-reviews .owl-nav button.owl-prev { left: -19px; }
  .owl-reviews .owl-nav button.owl-next { right: -19px; }
}

/* =========================================
   ESTÉTICAS DO BRASIL — Logo em texto + Diretório
========================================= */
.text-logo {
  font-weight: 800; font-size: 1.25rem; line-height: 1; letter-spacing: -0.02em;
  color: #fff !important; text-decoration: none !important; white-space: nowrap;
}
.text-logo span { color: var(--brand-gold-light); display: block; font-size: 0.7em; font-weight: 600; letter-spacing: 0.02em; }
.text-logo-lg { font-size: 1.65rem; }
footer .text-logo, footer .text-logo span { color: #fff; }
footer .text-logo span { color: var(--brand-gold-light); }

.dropdown-menu-scroll { max-height: 340px; overflow-y: auto; }

/* Busca nacional (hero) */
.search-directory {
  background: #fff; border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(10,35,35,0.2);
  padding: 12px; display: flex; flex-wrap: wrap; gap: 10px;
}
.search-directory select, .search-directory input {
  border: 1px solid #e5e0d6; border-radius: 12px; padding: 12px 16px; background: var(--bg-light);
  font-family: var(--font-main);
}
.search-directory input { flex: 1 1 220px; min-width: 0; }
.search-directory select { flex: 0 1 260px; }

/* ═══════════════════════════════════════════════════════
   Busca moderna do hero (combobox Estado/Cidade + texto)
   ═══════════════════════════════════════════════════════ */
.search-directory-v2 { align-items: flex-end; }
.search-directory-v2 .combo-trigger,
.search-directory-v2 .search-text-field,
.search-directory-v2 > button {
  height: 52px;
  box-sizing: border-box;
}
.search-directory-v2 > button { display: inline-flex; align-items: center; }

.combo-field { position: relative; flex: 0 1 240px; text-align: left; }
.combo-field-label {
  display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted); padding: 0 4px 4px; opacity: 0.85;
}
.combo-trigger {
  width: 100%; display: flex; align-items: center; gap: 8px;
  border: 1px solid #e5e0d6; border-radius: 12px; padding: 12px 14px; background: var(--bg-light);
  font-family: var(--font-main); font-size: 0.95rem; color: var(--text-main); cursor: pointer;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.combo-trigger:hover { border-color: var(--brand-gold); }
.combo-field.combo-open .combo-trigger {
  background: #fff; border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(178,128,64,0.15);
}
.combo-icon { color: var(--brand-forest); opacity: 0.6; font-size: 1rem; flex-shrink: 0; }
.combo-value { flex: 1; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.combo-field:not(.combo-has-value) .combo-value { color: var(--text-muted); }
.combo-caret { font-size: 0.75rem; color: var(--text-muted); transition: transform .2s; flex-shrink: 0; }
.combo-field.combo-open .combo-caret { transform: rotate(180deg); color: var(--brand-gold); }

.combo-field-disabled .combo-trigger { cursor: not-allowed; opacity: 0.55; background: #f0ede6; }

.combo-panel {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40;
  background: #fff; border-radius: 14px; box-shadow: 0 20px 45px -10px rgba(10,35,35,0.28);
  border: 1px solid #eee6d8; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.combo-field.combo-open .combo-panel { opacity: 1; visibility: visible; transform: translateY(0); }

.combo-search-box {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-bottom: 1px solid #f2efe8; color: var(--text-muted); font-size: 0.9rem;
}
.combo-search-box input {
  border: 0; outline: 0; flex: 1; font-size: 0.9rem; font-family: var(--font-main); background: transparent;
}

.combo-list { list-style: none; margin: 0; padding: 6px; max-height: 260px; overflow-y: auto; }
.combo-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: 9px; font-size: 0.9rem; color: var(--text-main);
  cursor: pointer; transition: background .12s;
}
.combo-list li:hover { background: var(--bg-light); }
.combo-list li:hover .combo-item-tag { background: var(--brand-gold); color: #fff; }
.combo-item-tag {
  font-size: 0.7rem; font-weight: 700; color: var(--brand-forest); background: rgba(178,128,64,0.12);
  border-radius: 50px; padding: 2px 9px; flex-shrink: 0; transition: background .12s, color .12s;
}
.combo-empty { color: var(--text-muted); font-style: italic; cursor: default; justify-content: center; }
.combo-empty:hover { background: transparent; }

.search-text-field {
  flex: 1 1 220px; min-width: 0; display: flex; align-items: center; gap: 8px;
  border: 1px solid #e5e0d6; border-radius: 12px; padding: 0 14px; background: var(--bg-light);
  transition: border-color .18s;
}
.search-text-field:focus-within { border-color: var(--brand-gold); background: #fff; }
.search-text-field i { color: var(--brand-forest); opacity: 0.6; }
.search-text-field input {
  border: 0; outline: 0; background: transparent; padding: 0; width: 100%; height: 100%;
  font-family: var(--font-main); font-size: 0.95rem;
}

@media (max-width: 767.98px) {
  .combo-field, .search-text-field { flex-basis: 100%; }
}

/* Mapa do Brasil interativo (home) */
.mapa-brasil-section { background: var(--brand-forest-dark); position: relative; overflow: hidden; }
.mapa-brasil-section::before {
  content: ''; position: absolute; top: -20%; left: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(178,128,64,0.15) 0%, rgba(178,128,64,0) 70%); pointer-events: none;
}
.mapa-brasil-wrap { max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }
#svg-map-brasil { width: 100%; height: auto; overflow: visible; }
#svg-map-brasil .estado { cursor: pointer; text-decoration: none; outline: none; }
#svg-map-brasil .estado path {
  fill: url(#mapGradientBrand); stroke: rgba(247,244,239,0.35); stroke-width: 1.2;
  stroke-linecap: round; stroke-linejoin: round; transition: fill 0.25s ease, stroke 0.25s ease;
}
#svg-map-brasil .estado .circle { fill: rgba(255,255,255,0.18); transition: fill 0.25s ease; }
#svg-map-brasil .estado text {
  fill: rgba(255,255,255,0.85); font: 700 11px var(--font-main); pointer-events: none; transition: fill 0.25s ease;
}
#svg-map-brasil .estado:hover path,
#svg-map-brasil .estado:focus path { fill: var(--brand-gold); stroke: var(--brand-gold-light); stroke-width: 1.6; }
#svg-map-brasil .estado:hover .circle,
#svg-map-brasil .estado:focus .circle { fill: rgba(255,255,255,0.4); }
#svg-map-brasil .estado:hover text,
#svg-map-brasil .estado:focus text { fill: #0A2323; }
#svg-map-brasil .estado .contagem-estado {
  fill: var(--brand-gold-light); font: 800 10px var(--font-main);
}
#svg-map-brasil .estado:hover .contagem-estado,
#svg-map-brasil .estado:focus .contagem-estado { fill: #0A2323; }

.mapa-tooltip {
  position: absolute; top: 0; left: 0; opacity: 0; visibility: hidden;
  pointer-events: none; transform: translate(-50%, -130%); transition: opacity 0.15s ease;
  background: var(--brand-gold); color: #fff; font-weight: 700; font-size: 0.8rem;
  padding: 7px 16px; border-radius: 50px; white-space: nowrap; z-index: 20;
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}
.mapa-tooltip.visivel { opacity: 1; visibility: visible; }
@media (max-width: 767.98px) {
  .mapa-tooltip { font-size: 0.72rem; padding: 6px 12px; }
}

.uf-pill-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.uf-pill {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border-radius: 50px;
  padding: 6px 14px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: 0.25s;
}
.uf-pill:hover { background: var(--brand-gold); border-color: var(--brand-gold); color: #FFF; }
.uf-pill .uf-code { color: var(--brand-gold-light); font-weight: 800; }
.uf-pill:hover .uf-code { color: #0A2323; }

/* Chips de categoria */
.category-chip {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid rgba(10,35,35,0.1);
  border-radius: 50px; padding: 10px 18px; font-weight: 600; font-size: 0.9rem; color: var(--brand-forest);
  text-decoration: none; transition: 0.25s; white-space: nowrap;
}
.category-chip:hover, .category-chip.active {
  background: var(--brand-forest); color: #fff; border-color: var(--brand-forest);
}
.category-chip .count { opacity: 0.6; font-weight: 500; font-size: 0.8em; }

/* Filtro lateral (sidebar) */
.filter-sidebar { background: #fff; border: 1px solid rgba(10,35,35,0.08); border-radius: 20px; padding: 24px; }
.filter-sidebar .filter-title { font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--brand-forest); margin-bottom: 16px; }
.filter-sidebar a.filter-link {
  display: flex; justify-content: space-between; align-items: center; padding: 9px 0;
  color: var(--text-main); text-decoration: none; font-size: 0.95rem; border-bottom: 1px solid rgba(10,35,35,0.05);
}
.filter-sidebar a.filter-link:hover, .filter-sidebar a.filter-link.active { color: var(--brand-gold); font-weight: 700; }
.filter-sidebar a.filter-link .count { color: var(--text-muted); font-size: 0.85em; }

/* Card de empresa (grid de resultados) */
.empresa-card {
  background: #fff; border-radius: 20px; border: 1px solid rgba(10,35,35,0.06);
  box-shadow: 0 10px 30px rgba(10,35,35,0.03); overflow: hidden; transition: all 0.35s ease; height: 100%;
  display: flex; flex-direction: column;
}
.empresa-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(10,35,35,0.1); border-color: rgba(178,128,64,0.3); }
.empresa-card-img {
  height: 160px; background: var(--bg-light); display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.empresa-card-img img { max-width: 70%; max-height: 70%; object-fit: contain; }
.empresa-card-img .empresa-card-badge {
  position: absolute; top: 12px; left: 12px; background: var(--brand-forest); color: #fff;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 50px;
}
.empresa-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.empresa-card-name { font-weight: 700; color: var(--brand-forest-dark); text-decoration: none; font-size: 1.05rem; }

/* SELOS DE QUALIDADE DO CADASTRO (bronze/prata/ouro) */
.selo-badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 800;
  padding: 4px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.03em;
  white-space: nowrap; box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}
.selo-badge.selo-badge-sm { font-size: 0.62rem; padding: 3px 9px; }
.selo-badge i { font-size: 0.85em; }
.selo-badge.selo-ouro { background: linear-gradient(135deg, #F5D485 0%, #C9982F 100%); color: #4A3200; }
.selo-badge.selo-prata { background: linear-gradient(135deg, #E7E9EC 0%, #AEB2B9 100%); color: #33363B; }
.selo-badge.selo-bronze { background: linear-gradient(135deg, #D9A574 0%, #A0623A 100%); color: #3E2313; }
.empresa-card-img .selo-badge { position: absolute; top: 12px; right: 12px; z-index: 2; }

/* Realce visual de perfis Selo Ouro (empresa.php) */
.perfil-ouro-faixa {
  display: flex; align-items: center; gap: 10px; padding: 10px 20px; margin-bottom: 24px;
  border-radius: 12px; background: linear-gradient(90deg, #FFF7E6 0%, #FDECC4 100%);
  border: 1px solid #E9C87A; color: #6B4E12; font-weight: 700; font-size: 0.9rem;
}
.perfil-ouro-faixa i { color: #C9982F; font-size: 1.15rem; }
.perfil-logo-ouro { box-shadow: 0 0 0 4px #FDECC4, 0 0 0 6px #C9982F; }
.card-premium-ouro { border: 1px solid #E9C87A !important; box-shadow: 0 10px 40px rgba(201,152,47,0.18) !important; }
.card-premium-ouro::before {
  content: ''; display: block; height: 5px; margin: -1px -1px 20px -1px; border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #C9982F 0%, #F5D485 50%, #C9982F 100%);
}
.empresa-card-location { color: var(--text-muted); font-size: 0.85rem; margin: 6px 0 12px; display: flex; align-items: center; gap: 5px; }
.empresa-card-cta { margin-top: auto; font-weight: 700; color: var(--brand-gold); text-decoration: none; font-size: 0.9rem; }

/* Placeholder de logo (empresa sem imagem) */
.empresa-placeholder-icon { font-size: 2.5rem; color: var(--brand-forest); opacity: 0.25; }
.empresa-placeholder-logo { max-width: 42% !important; max-height: 42% !important; opacity: 0.5; }

/* Sidebar de estatísticas de cidade/estado */
.stats-sidebar { background: var(--brand-forest-dark); color: #fff; border-radius: 20px; padding: 28px; }
.stats-sidebar .stat-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
.stats-sidebar .stat-row:last-child { border-bottom: 0; }
.stats-sidebar .stat-row strong { color: var(--brand-gold-light); }

/* Contador nacional (home) */
.stat-block { text-align: center; }
.stat-block .num { font-size: 2.5rem; font-weight: 800; color: var(--brand-forest); letter-spacing: -0.02em; line-height: 1; }
.stat-block .label { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; line-height: 1.3; }
.trust-strip .col-4 { min-width: 0; }
@media (max-width: 575.98px) {
  .stat-block .num { font-size: 1.25rem; }
  .stat-block .label { font-size: 0.66rem; margin-top: 4px; }
  .trust-strip .col-4 { padding-left: 4px; padding-right: 4px; }
}
