/* ============================================================
   COMPLIANCE COUNT — styles.css
   Paleta extraída dos arquivos oficiais de identidade:
   #3f5120  verde escuro (primário)
   #7b9a2b  verde médio (acento)
   #c2d680  verde claro (tint)
   #f2f6e8  verde quase branco (fundo)
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --cc-dark:   #3f5120;
  --cc-green:  #7b9a2b;
  --cc-light:  #c2d680;
  --cc-tint:   #f2f6e8;
  --cc-ink:    #1a2010;
  --cc-muted:  #5a6645;
  --cc-border: #d4debc;
  --cc-white:  #ffffff;

  --ff-serif: 'DM Serif Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
}

/* ── BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--ff-sans);
  color: var(--cc-ink);
  background: var(--cc-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a     { text-decoration: none; color: inherit; }

/* ── TIPOGRAFIA ──────────────────────────────────────────── */
.display-serif {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.1;
}
.label-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cc-green);
}
.label-tag.light { color: var(--cc-light); }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  background: rgba(63,81,32,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s var(--ease);
}
#navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.25); }

.navbar-brand {
  padding-top: .75rem !important;
  padding-bottom: .75rem !important;
}
.navbar-brand img {
  height: 32px;
  width: auto;
}
@media (max-width: 575px) {
  .navbar-brand img { height: 24px; }
}

.nav-link {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.65) !important;
  padding: .4rem .9rem !important;
  transition: color .2s;
}
.nav-link:hover { color: #fff !important; }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,.25);
  padding: .3rem .5rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-nav-cta {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .5rem 1.4rem;
  background: var(--cc-green);
  color: #fff !important;
  border: none;
  border-radius: 3px;
  transition: background .2s;
}
.btn-nav-cta:hover { background: var(--cc-light); color: var(--cc-ink) !important; }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  background: var(--cc-dark);
  min-height: 50svh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
.hero-bg-word {
  position: absolute;
  bottom: -4%;
  left: -1%;
  font-family: var(--ff-sans);
  font-weight: 900;
  font-size: clamp(120px, 16vw, 240px);
  line-height: .85;
  color: rgba(255,255,255,.03);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-body { flex: 1; display: flex; align-items: flex-end; padding-bottom: 80px; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-kicker-line { width: 28px; height: 1px; background: var(--cc-green); }
.hero-kicker span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cc-light);
}

.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-h1 em { font-style: italic; color: var(--cc-light); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-stats-panel { border-left: 1px solid rgba(255,255,255,.1); }
.hstat {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hstat:last-child { border-bottom: none; }
.hstat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.hstat-num em { font-style: normal; color: var(--cc-light); }
.hstat-desc { font-size: .76rem; color: rgba(255,255,255,.35); margin-top: 5px; }

/* ── TICKER ──────────────────────────────────────────────── */
.hero-ticker {
  background: var(--cc-green);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerAnim 32s linear infinite;
  gap: 28px;
}
.ticker-item {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.ticker-item::after {
  content: '◆';
  font-size: .45rem;
  color: rgba(255,255,255,.3);
}
@keyframes tickerAnim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SEÇÕES ──────────────────────────────────────────────── */
.sec { padding: 100px 0; }
.sec-sm { padding: 64px 0; }
.sec-header { margin-bottom: 56px; }
.sec-header .label-tag { display: block; margin-bottom: 14px; }

.sec-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cc-ink);
  margin-bottom: 0;
}
.sec-title.white { color: #fff; }

.sec-sub {
  font-size: .92rem;
  color: var(--cc-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-top: 14px;
  margin-bottom: 0;
}
.sec-sub.white { color: rgba(255,255,255,.5); }

/* ── BOTÕES ──────────────────────────────────────────────── */
.btn-fill-green {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--cc-green);
  color: #fff;
  border: none;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s var(--ease);
}
.btn-fill-green:hover { background: var(--cc-light); color: var(--cc-ink); }

.btn-ghost-white {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 13px 28px;
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  transition: border-color .2s, color .2s;
}
.btn-ghost-white:hover { color: #fff; border-color: rgba(255,255,255,.55); }

.btn-fill-dark {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--cc-dark);
  color: #fff;
  border: none;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
}
.btn-fill-dark:hover { background: var(--cc-green); color: #fff; }

.btn-outline-dark {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  color: var(--cc-dark);
  border: 1.5px solid var(--cc-border);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  transition: border-color .2s;
}
.btn-outline-dark:hover { border-color: var(--cc-dark); }

/* ── SOBRE ───────────────────────────────────────────────── */
#sobre { background: #fff; }
.sobre-text p { font-size: .97rem; color: var(--cc-muted); line-height: 1.85; margin-bottom: 16px; }
.sobre-text p:last-child { margin-bottom: 0; }

.pillar-grid { border-top: 1px solid var(--cc-border); margin-top: 48px; }
.pillar-item {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--cc-border);
}
.pillar-item:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.pillar-item:nth-child(2) { padding-left: 24px; }
.pillar-item .label-tag { margin-bottom: 10px; display: block; }
.pillar-item p { font-size: .85rem; color: var(--cc-muted); line-height: 1.7; margin: 0; }

.valores-card {
  background: var(--cc-dark);
  border-radius: 8px;
  padding: 40px;
}
.valores-card h3 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cc-light);
  margin-bottom: 24px;
}
.valor-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.valor-row:last-child { border-bottom: none; }
.valor-dot {
  width: 6px; height: 6px;
  background: var(--cc-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.valor-row p { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; line-height: 1.6; }

/* ── DIFERENCIAIS ────────────────────────────────────────── */
#diferenciais { background: var(--cc-dark); }
.dif-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  transition: background .25s var(--ease), border-color .25s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.dif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cc-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.dif-card:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.15); }
.dif-card:hover::before { transform: scaleX(1); }
.dif-num { font-size: .65rem; font-weight: 700; letter-spacing: .18em; color: var(--cc-green); margin-bottom: 20px; }
.dif-card h3 { font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.dif-card p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.75; margin: 0; }

/* ── SERVIÇOS ────────────────────────────────────────────── */
#servicos { background: var(--cc-tint); }
.servico-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--cc-border);
  position: relative;
  transition: background .2s;
}
.servico-row::before {
  content: '';
  position: absolute;
  left: -24px; top: 0; bottom: 0;
  width: 0;
  background: var(--cc-green);
  transition: width .25s var(--ease);
}
.servico-row:hover { background: rgba(123,154,43,.04); }
.servico-row:hover::before { width: 3px; }
.srv-num { font-size: .68rem; font-weight: 700; letter-spacing: .16em; color: var(--cc-muted); padding-top: 3px; }
.srv-name h3 { font-size: 1rem; font-weight: 700; color: var(--cc-ink); margin-bottom: 5px; }
.srv-desc { font-size: .87rem; color: var(--cc-muted); line-height: 1.75; }
.srv-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--cc-border);
  color: var(--cc-muted);
  border-radius: 2px;
  white-space: nowrap;
  align-self: start;
}

/* ── PROCESSO ────────────────────────────────────────────── */
#processo { background: #fff; }
.step-card {
  padding: 40px 24px 40px 0;
  border-right: 1px solid var(--cc-border);
  height: 100%;
  padding-left: 24px;
}
.step-card.last-step { border-right: none; }
.step-card:not(:first-child) { padding-left: 32px; }
.step-n {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(63,81,32,.07);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}
.step-card h3 { font-size: .93rem; font-weight: 700; color: var(--cc-ink); margin-bottom: 8px; }
.step-card p { font-size: .82rem; color: var(--cc-muted); line-height: 1.7; margin: 0; }

/* ── NÚMEROS ─────────────────────────────────────────────── */
#numeros { background: var(--cc-green); }
.num-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.2);
  text-align: center;
}
.num-item:last-child { border-right: none; }
.num-val {
  font-size: clamp(2.6rem, 3.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.num-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ── PÚBLICO ─────────────────────────────────────────────── */
#publico { background: var(--cc-tint); }
.pub-card {
  border: 1.5px solid var(--cc-border);
  border-radius: 6px;
  padding: 32px 24px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  height: 100%;
}
.pub-card:hover {
  border-color: var(--cc-green);
  box-shadow: 0 8px 32px rgba(63,81,32,.1);
}
.pub-line { width: 36px; height: 2px; background: var(--cc-green); margin-bottom: 20px; }
.pub-card h3 { font-size: .97rem; font-weight: 700; color: var(--cc-ink); margin-bottom: 10px; }
.pub-card p { font-size: .85rem; color: var(--cc-muted); line-height: 1.7; margin: 0; }

/* ── DEPOIMENTOS ─────────────────────────────────────────── */
#depoimentos { background: #fff; }
.depo-card {
  border: 1px solid var(--cc-border);
  border-radius: 6px;
  padding: 32px;
  height: 100%;
}
.depo-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--cc-ink);
  line-height: 1.75;
  margin-bottom: 24px;
}
.depo-sep { width: 24px; height: 1px; background: var(--cc-green); margin-bottom: 18px; }
.depo-name { font-size: .84rem; font-weight: 700; color: var(--cc-ink); }
.depo-role { font-size: .75rem; color: var(--cc-muted); margin-top: 2px; }

/* ── CLIENTES ────────────────────────────────────────────── */
#clientes {
  background: #fff;
  padding: 72px 0;
  overflow: hidden;
  border-top: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
}
.cli-heading { margin-bottom: 48px; }
.cli-caption {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin: 0;
}
.cli-slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.cli-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cliSlide 30s linear infinite;
}
.cli-slider:hover .cli-track { animation-play-state: paused; }
.cli-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  height: 96px;
  border-right: 1px solid var(--cc-border);
  flex-shrink: 0;
}
.cli-logo img {
  height: 82px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(.4);
  transition: filter .3s var(--ease);
  display: block;
}
.cli-logo:hover img { filter: grayscale(0%) opacity(1); }
@keyframes cliSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FAQ ─────────────────────────────────────────────────── */
#faq { background: var(--cc-tint); }
.accordion-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--cc-border) !important;
  border-radius: 0 !important;
}
.accordion-button {
  background: transparent !important;
  color: var(--cc-ink) !important;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--ff-sans);
  padding: 22px 0;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--cc-dark) !important; }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233f5120'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-body {
  padding: 0 0 20px;
  font-size: .88rem;
  color: var(--cc-muted);
  line-height: 1.8;
}

/* ── CONTATO ─────────────────────────────────────────────── */
#contato { background: var(--cc-dark); }
.c-info-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  gap: 12px;
}
.c-info-row:last-child { border-bottom: none; }
.c-info-lbl {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.c-info-val { font-size: .9rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* Formulário */
.cc-form .form-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.cc-form .form-control,
.cc-form .form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  border-radius: 0;
  color: #fff;
  font-family: var(--ff-sans);
  font-size: .92rem;
  padding: 12px 0;
  box-shadow: none !important;
  transition: border-color .2s;
}
.cc-form .form-control::placeholder { color: rgba(255,255,255,.2); }
.cc-form .form-control:focus,
.cc-form .form-select:focus {
  background: transparent;
  border-bottom-color: var(--cc-green);
  color: #fff;
}
.cc-form .form-select option { background: #1a2010; color: #fff; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--cc-green);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s;
  margin-top: 24px;
  cursor: pointer;
}
.btn-submit:hover { background: var(--cc-light); color: var(--cc-ink); }

/* ── CTA FINAL ───────────────────────────────────────────── */
#cta-final {
  background: #fff;
  border-top: 1px solid var(--cc-border);
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--cc-ink); padding: 60px 0 36px; }
.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 28px;
  width: auto;
}

.foot-desc { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 260px; }
.foot-col h4 {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cc-light);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .2s; }
.foot-col ul li a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  margin-top: 48px;
}
.foot-bottom p { font-size: .75rem; color: rgba(255,255,255,.2); margin: 0; }
.social-links { display: flex; gap: 0;}
.soc-btn {
  width: 36px; height: 36px;
  margin-left: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: .9rem;
  transition: color .2s, background .2s;
}
.soc-btn:hover { color: var(--cc-light); background: var(--cc-dark); }

/* ── WA FLOAT ────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
  font-size: 1.3rem;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.5); color: #fff; }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.show { opacity: 1; transform: none; }

/* ── RESPONSIVO ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .servico-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .srv-num, .srv-badge { display: none; }
  .hero-stats-panel { display: none; }
  .num-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .num-item:last-child { border-bottom: none; }
  .pillar-item {
    border-right: none;
    border-bottom: 1px solid var(--cc-border);
    padding: 24px 0 !important;
  }
  .pillar-item:last-child { border-bottom: none; }
}
@media (max-width: 767.98px) {
  .sec { padding: 72px 0; }
  .hero-body { padding-bottom: 64px; }
  .servico-row { grid-template-columns: 1fr; }
  .step-card { 
    border-right: none;
    border-bottom: 1px solid var(--cc-border);
    padding: 28px 0 !important;
    padding-left: 24px !important;
  }
  .step-card.last-step { border-bottom: none; }
  .c-info-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ── CONSENTIMENTO DE COOKIES (LGPD) ────────────────────────
   Banner + link de preferências no rodapé
════════════════════════════════════════════════════════════ */
.cc-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  background: color-mix(in srgb, var(--cc-dark) 90%, transparent);
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(26,32,16,.35);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cc-consent.visivel { opacity: 1; transform: none; }
.cc-consent-texto strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cc-light);
  margin-bottom: 8px;
}
.cc-consent-texto p {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.cc-consent-acoes { display: flex; gap: 10px; flex-shrink: 0; }
.btn-consent {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 12px 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-consent.aceitar {
  background: var(--cc-green);
  border: none;
  color: #fff;
}
.btn-consent.aceitar:hover { background: var(--cc-light); color: var(--cc-ink); }
.btn-consent.recusar {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.65);
}
.btn-consent.recusar:hover { color: #fff; border-color: rgba(255,255,255,.55); }

.rodape-links { margin-top: 14px; }
.rodape-links a {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.rodape-links a:hover { color: var(--cc-light); }

@media (max-width: 575.98px) {
  .cc-consent {
    left: 12px; right: 12px; bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    gap: 18px;
  }
  .cc-consent-acoes { justify-content: stretch; }
  .btn-consent { flex: 1; padding: 13px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .cc-consent { transition: none; }
}

