/* ================================================
   DORNELIS ASSESSORIA E CONTABILIDADE
   style.css — Design Geométrico Preto/Branco/Amarelo
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── Variáveis ──────────────────────────────────── */
:root {
  --black:          #0a0a0a;
  --black-2:        #111111;
  --black-3:        #1a1a1a;
  --black-4:        #222222;
  --gray-dark:      #2e2e2e;
  --gray-mid:       #555555;
  --gray-light:     #999999;
  --gray-200:       #e0e0e0;
  --gray-100:       #f0f0f0;
  --white:          #ffffff;
  --white-off:      #f7f7f7;

  --yellow:         #f5c518;
  --yellow-hot:     #ffd700;
  --yellow-dark:    #c9a000;
  --yellow-pale:    #fff8d6;

  --radius-0:       0px;
  --radius-xs:      2px;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      0px;     /* quadrado — filosofia do design */

  --shadow-sm:      0 2px 8px rgba(0,0,0,.12);
  --shadow-md:      0 6px 24px rgba(0,0,0,.18);
  --shadow-lg:      0 16px 56px rgba(0,0,0,.28);
  --shadow-yellow:  0 6px 32px rgba(245,197,24,.35);

  --transition:     .28s cubic-bezier(.4,0,.2,1);
  --font-main:      'Space Grotesk', 'Inter', sans-serif;
}

/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

/* ── Utilitários ────────────────────────────────── */
.text-yellow       { color: var(--yellow) !important; }
.text-white-60     { color: rgba(255,255,255,.6) !important; }
.text-white-50     { color: rgba(255,255,255,.5) !important; }
.bg-black          { background: var(--black) !important; }
.bg-black-2        { background: var(--black-2) !important; }
.bg-off-white      { background: var(--white-off) !important; }
.section-padding   { padding: 96px 0; }

/* ── Tags de seção ──────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  background: transparent;
  border-left: 3px solid var(--yellow);
  padding: .15rem 0 .15rem .7rem;
}
.section-tag.light {
  color: var(--yellow-hot);
  border-color: var(--yellow-hot);
}

/* ── Títulos ────────────────────────────────────── */
.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.section-title .hl {
  color: var(--yellow);
  position: relative;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 520px;
  margin: .65rem auto 0;
}
.section-text { font-size: 1rem; color: var(--gray-dark); line-height: 1.7; }

/* ── Botões base ────────────────────────────────── */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--black) !important;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: .7rem 1.7rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
  background: var(--yellow-hot);
  border-color: var(--yellow-hot);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245,197,24,.50);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: var(--radius-sm);
  padding: .7rem 1.7rem;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-outline-black {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--black) !important;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  padding: .7rem 1.7rem;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-black:hover {
  background: var(--black);
  color: var(--white) !important;
}


/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
#mainNavbar {
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.1rem 0;
  z-index: 1050;
  border-bottom: 1px solid transparent;
}
#mainNavbar.scrolled {
  background: rgba(10,10,10,.97);
  border-bottom-color: rgba(245,197,24,.2);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
  padding: .55rem 0;
}

.navbar-logo {
  height: 50px;
  width: auto;
  transition: height var(--transition);
  /* Logo branca para fundos escuros — hero usa fundo escuro, navbar transparente */
}
#mainNavbar.scrolled .navbar-logo { height: 38px; }

.nav-link {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8) !important;
  transition: color var(--transition);
  padding: .4rem .75rem !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .75rem; right: .75rem;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--yellow) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--yellow) !important; }

.btn-whatsapp-nav {
  background: var(--yellow);
  color: var(--black) !important;
  border-radius: var(--radius-sm);
  padding: .45rem 1.15rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--yellow);
  text-decoration: none;
}
.btn-whatsapp-nav:hover {
  background: var(--yellow-hot);
  border-color: var(--yellow-hot);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

/* Mobile menu dark */
@media (max-width: 991.98px) {
  #navMenu {
    background: var(--black-2);
    padding: 1.2rem;
    margin-top: .5rem;
    border-top: 2px solid var(--yellow);
  }
}


/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('FUNDO1.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Overlay principal — escurece forte para matte effect */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(0,0,0,.93) 0%,
      rgba(10,10,10,.85) 50%,
      rgba(0,0,0,.78) 100%
    );
  z-index: 1;
}

/* Triângulo decorativo — canto inferior direito */
.hero-section::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 220px 220px;
  border-color: transparent transparent var(--yellow) transparent;
  z-index: 2;
  opacity: .18;
}

/* Triângulo menor — canto superior esquerdo */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 140px 140px 0 0;
  border-color: var(--yellow) transparent transparent transparent;
  z-index: 2;
  opacity: .10;
}

.hero-particles { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.hero-content   { position: relative; z-index: 3; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--yellow);
  color: var(--black);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 0;           /* quadrado */
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  padding-right: 1.4rem;
}

/* Título hero */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
}
.text-gradient {
  color: var(--yellow);
  position: relative;
}
/* Sublinhado decorativo no texto destaque */
.text-gradient::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(.7);
  transform-origin: left;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.75;
}

/* Hero — card de contato */
.glass-card {
  background: rgba(10,10,10,.75);
  border: 1px solid rgba(245,197,24,.25);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.whatsapp-contact-card {
  display: block;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: all var(--transition);
}
.whatsapp-contact-card:hover {
  background: rgba(245,197,24,.12);
  border-left-color: var(--yellow-hot);
  transform: translateX(4px);
}

.wa-icon-wrap {
  width: 46px; height: 46px;
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}
.wa-icon-wrap.pj  { background: var(--yellow); color: var(--black); }
.wa-icon-wrap.mei { background: #2e7d32; color: #ffffff; }
.wa-icon-wrap.pf  { background: var(--white); color: var(--black); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--yellow);
  font-size: 1.3rem;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* Partícula */
.particle {
  position: absolute;
  background: var(--yellow);
  border-radius: 0;           /* quadrado */
  animation: floatUp linear infinite;
  opacity: .25;
  transform: rotate(45deg);
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) rotate(0deg)  scale(0); opacity: 0; }
  10%  { opacity: .35; }
  90%  { opacity: .15; }
  100% { transform: translateY(-10vh) rotate(180deg) scale(1); opacity: 0; }
}


/* ══════════════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════════════ */
.stats-band {
  background: var(--white);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--black);
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Detalhe geométrico de fundo */
.stats-band::after {
  content: '';
  position: absolute;
  right: -60px; top: -40px;
  width: 200px; height: 200px;
  background: rgba(245,197,24,.06);
  transform: rotate(45deg);
}

.stat-item { padding: 1.6rem 1rem; position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(0,0,0,.1);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -.04em;
}
.stat-icon-item {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: .02em;
}
.stat-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .3rem;
}


/* ══════════════════════════════════════════════════
   SOBRE
══════════════════════════════════════════════════ */
/* Seção sobre usa fundo preto */
#sobre {
  background: var(--black-2);
  color: var(--white);
}
#sobre .section-title { color: var(--white); }
#sobre .section-text   { color: rgba(255,255,255,.7); }

.sobre-visual { position: relative; }

/* Quadrado decorativo de fundo */
.sobre-geo-bg {
  position: absolute;
  top: 10%; left: 5%;
  width: 320px; height: 320px;
  border: 2px solid rgba(245,197,24,.15);
  background: transparent;
  transform: rotate(8deg);
  z-index: 0;
}
.sobre-geo-bg::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  border: 2px solid rgba(245,197,24,.07);
}

.sobre-img-wrap {
  width: 320px; height: 320px;
  background: var(--black-3);
  border: 2px solid rgba(245,197,24,.3);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xs);

  /* Triângulo amarelo no canto inferior direito */
  overflow: hidden;
}
.sobre-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 64px 64px;
  border-color: transparent transparent var(--yellow) transparent;
}

.sobre-logo {
  max-width: 220px;
  max-height: 180px;
  object-fit: contain;
  position: relative; z-index: 1;
}

.sobre-badge-float {
  position: absolute;
  bottom: -1.4rem; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  border-radius: var(--radius-xs);
  padding: .45rem 1.1rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: var(--shadow-yellow);
  font-size: .78rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2;
}

/* Feature mini — Sobre */
.feature-mini {
  padding: .65rem .9rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--yellow);
  border-radius: 0;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
}
.feature-mini:hover {
  background: rgba(245,197,24,.08);
  border-left-color: var(--yellow-hot);
}
.feature-mini-icon { color: var(--yellow); font-size: 1rem; flex-shrink: 0; }


/* ══════════════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════════════ */
#servicos { background: var(--white-off); }

.servicos-tabs-wrap { overflow-x: auto; }

.servicos-tabs {
  display: inline-flex;
  background: var(--black);
  border-radius: var(--radius-xs);
  padding: .3rem;
  gap: .25rem;
}
.tab-btn {
  background: transparent;
  border: none;
  border-radius: var(--radius-xs);
  padding: .55rem 1.4rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn:hover  { color: var(--yellow); }
.tab-btn.active {
  background: var(--yellow);
  color: var(--black);
}
.tab-content-panel { display: none; }
.tab-content-panel.active { display: block; }

/* Card de serviço */
.servico-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: var(--radius-xs);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Triângulo no canto */
.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent var(--gray-100) transparent;
  transition: border-color var(--transition);
}
.servico-card:hover {
  border-top-color: var(--yellow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.servico-card:hover::after {
  border-color: transparent transparent var(--yellow-pale) transparent;
}

.servico-icon {
  width: 54px; height: 54px;
  background: var(--black);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  transition: all var(--transition);
}
.servico-card:hover .servico-icon {
  background: var(--yellow);
  color: var(--black);
}

.servico-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.servico-desc {
  font-size: .87rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.servico-link {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition), color var(--transition);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}
.servico-link:hover { color: var(--yellow-dark); gap: .7rem; }


/* ══════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════ */
.cta-band {
  background: var(--black);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

/* Triângulos decorativos */
.cta-band::before {
  content: '';
  position: absolute;
  left: -40px; top: -40px;
  width: 220px; height: 220px;
  background: rgba(245,197,24,.06);
  transform: rotate(45deg);
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -50px; bottom: -50px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent rgba(245,197,24,.08) transparent;
}

.cta-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.cta-subtitle { color: rgba(255,255,255,.55); font-size: .95rem; }

.btn-cta-pj {
  background: var(--yellow);
  color: var(--black) !important;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-xs);
  padding: .75rem 1.6rem;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-yellow);
}
.btn-cta-pj:hover {
  background: var(--yellow-hot);
  border-color: var(--yellow-hot);
  transform: translateY(-2px);
}

.btn-cta-pf {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius-xs);
  padding: .75rem 1.6rem;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}
.btn-cta-pf:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.07);
}


/* ══════════════════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════════════════ */
#diferenciais { background: var(--black-2); }
#diferenciais .section-title { color: var(--white); }

.diferencial-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-xs);
  padding: 2.4rem 1.75rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Triângulo canto */
.diferencial-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 44px 44px;
  border-color: transparent transparent rgba(245,197,24,.12) transparent;
  transition: border-color var(--transition);
}

.diferencial-card:hover {
  background: var(--black-4);
  border-top-color: var(--yellow-hot);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.diferencial-card:hover::after {
  border-color: transparent transparent rgba(245,197,24,.25) transparent;
}

.diferencial-icon {
  width: 64px; height: 64px;
  background: var(--yellow);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: var(--black);
  margin: 0 auto 1.4rem;
  transition: all var(--transition);
}
.diferencial-card:hover .diferencial-icon {
  transform: scale(1.06) rotate(-6deg);
  box-shadow: var(--shadow-yellow);
}

.diferencial-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .55rem;
}
.diferencial-desc { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.7; margin: 0; }


/* ══════════════════════════════════════════════════
   CLIENTES — Carrossel de Logos
══════════════════════════════════════════════════ */
.clientes-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.clientes-section .section-title  { color: var(--white); }
.clientes-section .section-subtitle { color: rgba(255,255,255,.45); }
.clientes-section .text-muted      { color: rgba(255,255,255,.35) !important; }

/* Triângulos decorativos de fundo */
.clientes-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(245,197,24,.04);
  transform: rotate(45deg);
  pointer-events: none;
}
.clientes-section::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 180px 180px;
  border-color: transparent transparent rgba(245,197,24,.06) transparent;
  pointer-events: none;
}

/* Wrap do carrossel */
.clientes-carousel-wrap {
  position: relative;
  padding: 0 3.5rem;         /* espaço para as setas */
}

/* Slot de logo do cliente */
.cliente-logo-slot {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-xs);
  padding: 1.4rem 1rem;
  height: 160px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: all var(--transition);
  overflow: hidden;
}
.cliente-logo-slot:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
  border-top-color: var(--yellow-hot);
}

/* Link dentro do slot — herda o flex */
.cliente-logo-slot > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

/* Imagem da logo */
.cliente-logo-slot img {
  max-width: 90%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .85;
  transition: opacity var(--transition);
  display: block;
}
.cliente-logo-slot:hover img {
  opacity: 1;
}

/* Nome/legenda abaixo da logo */
.cliente-nome {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-align: center;
  text-decoration: none;
  letter-spacing: .03em;
  line-height: 1.3;
  display: block;
}
.cliente-logo-slot:hover .cliente-nome {
  color: var(--black);
}

/* Logo quadrada — aumenta a altura para equilibrar com logos retangulares */
.cliente-logo-slot img.logo-sq {
  max-height: 110px;
  max-width: 70%;
}
/* Placeholder (enquanto não há logo) */
.cliente-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.25);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}
.cliente-logo-placeholder i {
  font-size: 2rem;
  color: rgba(245,197,24,.25);
}
.cliente-logo-slot:hover .cliente-logo-placeholder {
  color: rgba(245,197,24,.5);
}
.cliente-logo-slot:hover .cliente-logo-placeholder i {
  color: rgba(245,197,24,.6);
}

/* Botões de navegação do carrossel */
.clientes-prev,
.clientes-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow) !important;
  font-size: 1.2rem;
  opacity: 1 !important;
  transition: all var(--transition);
  z-index: 5;
}
.clientes-prev { left: 0; }
.clientes-next { right: 0; }
.clientes-prev:hover,
.clientes-next:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black) !important;
}
/* Remove o ícone padrão do Bootstrap e usa o Bootstrap Icons */
.clientes-prev .carousel-control-prev-icon,
.clientes-next .carousel-control-next-icon { display: none; }

/* Indicadores (dots) */
.clientes-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.clientes-dot {
  width: 32px; height: 4px;
  background: rgba(255,255,255,.2);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.clientes-dot.active {
  background: var(--yellow);
  width: 52px;
}


/* ══════════════════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════════════════ */
#depoimentos { background: var(--white-off); }

.depoimento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-md);
}
.stars { color: var(--yellow); font-size: 1rem; }

.depoimento-text {
  font-size: 1.05rem;
  color: var(--gray-dark);
  font-style: italic;
  line-height: 1.8;
  position: relative;
}
/* Aspas */
.depoimento-text::before {
  content: '"';
  position: absolute;
  top: -1.8rem; left: -.5rem;
  font-size: 5rem;
  color: var(--yellow);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: 1;
}

.depoimento-author strong { font-size: 1rem; color: var(--black); font-weight: 700; }

.author-avatar {
  width: 50px; height: 50px;
  border-radius: var(--radius-xs);
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--black);
  box-shadow: var(--shadow-yellow);
  margin: 0 auto .65rem;
}

.depoimento-indicators {
  position: relative !important;
  margin-top: 2rem;
}
.depoimento-indicators [data-bs-target] {
  width: 28px; height: 4px;
  border-radius: 0;
  background: var(--gray-200);
  border: none;
  transition: all var(--transition);
}
.depoimento-indicators .active {
  background: var(--yellow);
  width: 48px;
}


/* Google rating badge — cabeçalho da seção */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-xs);
  padding: .45rem 1.1rem;
  font-size: .92rem;
  color: var(--gray-dark);
  box-shadow: var(--shadow-sm);
}
.google-rating-badge .bi-google { color: #EA4335; }
.stars-inline { color: var(--yellow); letter-spacing: .05em; }

/* Badge individual em cada avaliação */
.google-review-badge {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: .3rem;
}
.google-review-badge .bi-google { color: #EA4335; font-size: .9rem; }


/* ══════════════════════════════════════════════════
   CONDOMÍNIOS — Banner e card destaque
══════════════════════════════════════════════════ */
.cond-banner {
  background: var(--black);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-xs);
  padding: 1.4rem 1.8rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.cond-banner h4  { color: var(--white); font-size: 1.15rem; }
.cond-banner p   { color: rgba(255,255,255,.6); font-size: .9rem; }

.cond-banner-icon {
  width: 56px; height: 56px;
  background: var(--yellow);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--black);
  flex-shrink: 0;
}

/* Card destaque (condomínios no painel PJ) */
.servico-card-destaque {
  border-top-color: var(--yellow) !important;
  background: linear-gradient(135deg, var(--white) 60%, rgba(245,197,24,.06) 100%);
}
.servico-card-destaque .servico-icon {
  background: var(--yellow);
  color: var(--black);
}


/* ══════════════════════════════════════════════════
   LINKS ÚTEIS
══════════════════════════════════════════════════ */
#links-uteis { background: var(--white); }

.link-util-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-xs);
  text-decoration: none;
  color: var(--gray-dark);
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.link-util-card i:first-child {
  font-size: 1.2rem;
  color: var(--black);
  flex-shrink: 0;
  transition: color var(--transition);
}
.link-util-card:hover {
  background: var(--black);
  color: var(--white);
  border-left-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.link-util-card:hover i { color: var(--yellow) !important; }


/* ══════════════════════════════════════════════════
   CONTATO
══════════════════════════════════════════════════ */
.contato-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Triângulo grande fundo */
.contato-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 420px 420px 0;
  border-color: transparent rgba(245,197,24,.04) transparent transparent;
  pointer-events: none;
}

.contato-info { padding-top: 1rem; }
.contato-item { display: flex; align-items: flex-start; gap: 1.1rem; }

.contato-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-xs);
  background: rgba(245,197,24,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  flex-shrink: 0;
  border: 1px solid rgba(245,197,24,.3);
}
.contato-icon.pj-color {
  background: rgba(245,197,24,.15);
  color: var(--yellow);
  border-color: rgba(245,197,24,.3);
}
.contato-icon.mei-color {
  background: rgba(76,175,80,.15);
  color: #66bb6a;
  border-color: rgba(76,175,80,.3);
}
.contato-icon.pf-color {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}

.contato-link-wa {
  color: var(--yellow);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  transition: color var(--transition);
  letter-spacing: -.01em;
}
.contato-link-wa:hover { color: var(--yellow-hot); }

.mapa-wrap {
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(245,197,24,.2);
}

/* Formulário glass dark */
.glass-card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-lg);
}

/* Inputs dark */
.form-dark {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: var(--white) !important;
  border-radius: var(--radius-xs) !important;
  transition: all var(--transition);
}
.form-dark::placeholder { color: rgba(255,255,255,.3) !important; }
.form-dark:focus {
  background: rgba(255,255,255,.1) !important;
  border-color: var(--yellow) !important;
  box-shadow: 0 0 0 .2rem rgba(245,197,24,.18) !important;
}
.form-select.form-dark option { background: var(--black-2); color: var(--white); }

.form-check-input:checked { background-color: var(--yellow); border-color: var(--yellow); }
.form-check-label { cursor: pointer; }

.btn-submit-form {
  background: var(--yellow);
  color: var(--black) !important;
  border: none;
  border-radius: var(--radius-xs);
  padding: .9rem;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: var(--shadow-yellow);
  width: 100%;
  cursor: pointer;
}
.btn-submit-form:hover {
  background: var(--yellow-hot);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245,197,24,.45);
}

.form-feedback {
  padding: 1rem;
  border-radius: var(--radius-xs);
  margin-top: .5rem;
  font-weight: 600;
  display: none;
  font-size: .9rem;
}
.form-feedback.show { display: block; }
.form-feedback.success {
  background: rgba(245,197,24,.12);
  color: var(--yellow-hot);
  border: 1px solid rgba(245,197,24,.3);
}
.form-feedback.error {
  background: rgba(239,68,68,.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,.2);
}


/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer-section {
  background: var(--black-2);
  border-top: 3px solid var(--yellow);
  color: var(--gray-mid);
}
.footer-logo {
  height: 48px;
  width: auto;
}
.footer-desc { font-size: .87rem; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer-heading {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: .5rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--yellow);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; font-size: .87rem; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-divider { border-color: rgba(255,255,255,.07); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }


/* ══════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════════════════════════ */
.floating-wa-wrap {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
}
.floating-wa-bubble { position: relative; }

.floating-wa-btn {
  width: 58px; height: 58px;
  border-radius: var(--radius-xs);
  background: var(--yellow);
  color: var(--black);
  font-size: 1.7rem;
  border: 3px solid rgba(0,0,0,.15);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.4), var(--shadow-yellow);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.floating-wa-btn::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: var(--radius-xs);
  background: rgba(245,197,24,.22);
  animation: pulseWa 2.5s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes pulseWa {
  0%   { transform: scale(1);   opacity: .9; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.floating-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 40px rgba(245,197,24,.6);
  background: var(--yellow-hot);
}

.floating-wa-options {
  position: absolute;
  bottom: calc(100% + .75rem); right: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px) scale(.95);
  transition: all var(--transition);
}
.floating-wa-options.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-option-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-xs);
  font-size: .83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--black) !important;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.wa-option-btn.pj {
  background: var(--yellow);
}
.wa-option-btn.mei {
  background: #e8f5e9;
  color: #1b5e20 !important;
}
.wa-option-btn.pf {
  background: var(--white);
}
.wa-option-btn:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-lg);
}

/* Botão MEI no hero */
.btn-hero-mei {
  display: inline-flex;
  align-items: center;
  background: #e8f5e9;
  color: #1b5e20 !important;
  border: 2px solid #a5d6a7;
  border-radius: var(--radius-sm);
  padding: .7rem 1.7rem;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-hero-mei:hover {
  background: #c8e6c9;
  border-color: #66bb6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(76,175,80,.3);
}

/* Botão MEI no CTA band */
.btn-cta-mei {
  background: #e8f5e9;
  color: #1b5e20 !important;
  border: 2px solid #a5d6a7;
  border-radius: var(--radius-xs);
  padding: .75rem 1.6rem;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}
.btn-cta-mei:hover {
  background: #c8e6c9;
  border-color: #66bb6a;
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════
   RESPONSIVIDADE
══════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .section-padding { padding: 72px 0; }
  .sobre-img-wrap  { width: 260px; height: 260px; }
  .sobre-logo      { max-width: 180px; }
  .glass-card      { max-width: 100%; }
  .hero-section::before { border-width: 0 0 140px 140px; }
  .hero-section::after  { border-width: 100px 100px 0 0; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 56px 0; }
  .hero-title      { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .stat-item + .stat-item::before { display: none; }
  .stat-item       { padding: 1rem .5rem; }
  .floating-wa-wrap { bottom: 1.2rem; right: 1.2rem; }
  .depoimento-card { padding: 2rem 1.2rem !important; }
}

@media (max-width: 575.98px) {
  .sobre-badge-float { font-size: .7rem; white-space: normal; text-align: center; }
  .hero-badge { font-size: .68rem; }
}

/* AOS override */
[data-aos] { transition-duration: .65s !important; }
