.cta-final{
  /* “fundo diferente” igual ao da regularização — você vai ajustar com as cores reais */
  background: linear-gradient(90deg, var(--brand-1), rgba(0,0,0,.1));
  color: #fff;
}

.cta-box{
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
}

.cta-final p{
  color: rgba(255,255,255,.85);
}

/* WhatsApp flutuante + barra mobile */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  height: 56px;
  width: 56px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  z-index: 80;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.wa-bottom{
  display:none;
}

@media (max-width: 768px){
  .wa-bottom{
    display:block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0,0,0,.08);
    z-index: 90;
  }
  .wa-float{
    bottom: 86px;
  }
}


/* CTA FINAL */
.cta-final{
  position: relative;
  background: rgba(86,44,77,1);
  padding: 72px 0;
  height: 250px;
  width: 100%;
  display: flex;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* fade pro lado direito (sem virar branco) */
.cta-final::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(86,44,77,1) 0%,
    rgba(86,44,77,.70) 55%,
    rgba(86,44,77,.18) 100%   /* <-- NÃO zera */
  );
  pointer-events:none;
  z-index: 0;
}

/* conteúdo por cima */
.cta-final .container,
.cta-final .cta-box{
  position: relative;
  z-index: 1;
}

/* box transparente pra não “recortar” o fundo */
.cta-final .cta-box{
  background: transparent !important;
}


@media (max-width: 820px){
  .cta-final{
    height: auto !important;
    min-height: 0;
    overflow: visible !important;
    padding: 48px 0;
  }
  .cta-final .cta-box{
    padding: 20px 0;
  }
}


/* ─── FOOTER ─── */
.site-footer {
  background: #0f0c10;
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}

.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .18s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  width: fit-content;
}
.footer-nav a:hover {
  color: var(--brand-2);
  border-color: var(--brand-2);
}

.footer-col__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 14px;
}
.footer-col__sub {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 26ch;
}

.footer-wa-link {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand-2);
  border: 1px solid rgba(199,163,91,.45);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .18s, color .18s;
  text-decoration: none;
}
.footer-wa-link:hover {
  background: var(--brand-2);
  color: #fff;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-2);
}
.footer-contact-list a {
  color: rgba(255,255,255,.55);
  transition: color .18s;
}
.footer-contact-list a:hover { color: var(--brand-2); }

.footer-hours__line {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-hours__value {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 4px;
}
.footer-hours__note {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-top: 18px;
  line-height: 1.5;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 28px;
  flex-wrap: wrap;
}
.footer-address {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: border-color .18s, color .18s;
}
.footer-social__icon:hover {
  border-color: var(--brand-2);
  color: var(--brand-2);
}
.footer-social__icon svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-right { align-items: flex-start; }
}

/* ═══════════════════════════════════════
   CTA FINAL — Mobile fix
   ═══════════════════════════════════════ */
@media (max-width: 820px) {

  .cta-final {
    height: auto !important;
    min-height: 0 !important;
    padding: 52px 0 56px !important;
    overflow: visible !important;
    /* gradiente lateral vira vertical no mobile — mais limpo */
    background: rgba(86,44,77,1) !important;
  }

  /* remove o pseudo-elemento de fade lateral — fica esquisito em coluna */
  .cta-final::after {
    background: linear-gradient(
      180deg,
      rgba(86,44,77,.0) 0%,
      rgba(40,20,45,.55) 100%
    ) !important;
  }

  .cta-final .container {
    padding: 0 20px;
  }

  .cta-final .cta-box {
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  /* título */
  .cta-final .cta-box h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    line-height: 1.3;
    margin-bottom: 16px;
    /* mantém a barra lateral roxa */
    padding-left: 14px;
    position: relative;
  }
  .cta-final .cta-box h2::before {
    content: "";
    position: absolute;
    left: 0; top: .3em;
    width: 4px;
    height: 1.2em;
    border-radius: 2px;
    background: var(--brand-2);
  }

  /* subtítulo */
  .cta-final p {
    font-size: .9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,.72) !important;
    margin-bottom: 28px;
    max-width: 100%;
    padding-left: 0;
  }

  /* botão: full-width, altura confortável para o dedo */
  .cta-final .btn-lg {
    width: 100% !important;
    min-height: 54px;
    font-size: .8rem;
    letter-spacing: .1em;
    justify-content: center;
  }

}

/* telas muito pequenas */
@media (max-width: 380px) {
  .cta-final {
    padding: 44px 0 48px !important;
  }
  .cta-final .cta-box h2 {
    font-size: 1.25rem;
  }
}
