/* ========================================
   ABL ADVOCACIA - CSS CONSOLIDADO
   Versão limpa — sem versões empilhadas
   ======================================== */

:root {
  --preto: #000;
  --branco: #fff;
  --dourado: #d69a2d;
  --dourado-claro: #f2b84c;
  --laranja: #e46f00;
  --texto: #111;
  --linha: rgba(0,0,0,0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: #000;
  color: var(--branco);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

/* ─── TOPO / NAVBAR ─── */
.topbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 62px;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 9999;
  display: flex;
  align-items: center;
}

.site-logo-link {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  cursor: default;
  z-index: 2;
}

.site-logo-svg {
  height: 51px;
  max-width: 330px;
  width: auto;
}

.menu-flutuante {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 50%;
  padding-right: 34px;
  gap: clamp(26px, 4vw, 58px);
}

.menu-link {
  position: relative;
  height: 62px;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .75px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.menu-link:hover { color: var(--dourado); }

.menu-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: var(--dourado);
  transition: width 0.25s ease;
}

.menu-link:hover::after,
.menu-link.active::after { width: 100%; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ─── BLOCOS GERAIS ─── */
.bloco {
  position: relative;
  overflow: hidden;
  margin: 0;
  scroll-margin-top: 62px;
}

/* ─── BLOCO 1 — INÍCIO (único bloco de tela cheia) ─── */
.inicio-bg {
  min-height: 100vh;
  background-image: url("inicio.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.inicio-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.34) 24%, rgba(0,0,0,0.04) 55%, rgba(0,0,0,0.03) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, transparent 34%, rgba(0,0,0,0.24) 100%);
  z-index: 1;
  pointer-events: none;
}

.texto-inicio {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 4vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  max-width: 760px;
  padding-top: 70px;
}

.texto-inicio h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(34px, 3.65vw, 68px);
  line-height: 1.08;
  letter-spacing: 0.4px;
  text-shadow: 0 4px 22px rgba(0,0,0,0.72);
  margin-bottom: 20px;
}

.texto-inicio h1 span { display: block; }

.linha-branca {
  color: #f7f7f7;
  opacity: 0;
  animation: entradaTexto 1s ease forwards;
}

.linha-destaque {
  color: var(--dourado-claro);
  opacity: 0;
  animation: entradaTexto 1s ease forwards;
  animation-delay: 0.18s;
}

.traco-dourado {
  width: 86px; height: 4px;
  background: var(--dourado);
  margin-bottom: 30px;
  box-shadow: 0 0 18px rgba(214,154,45,0.45);
  transform: scaleX(0);
  transform-origin: left;
  animation: abreTraco 0.85s ease forwards;
  animation-delay: 0.45s;
}

.traco-secundario {
  margin-top: -16px;
  margin-bottom: 24px;
  animation-delay: 0.88s;
}

.texto-principal {
  color: rgba(255,255,255,0.94);
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.55;
  font-weight: 700;
  margin-bottom: 44px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.82);
  opacity: 0;
  animation: sobeFade 0.9s ease forwards;
  animation-delay: 0.7s;
}

.texto-secundario {
  color: rgba(255,255,255,0.94);
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.55;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0,0,0,0.82);
  opacity: 0;
  animation: sobeFade 0.9s ease forwards;
  animation-delay: 0.95s;
}

/* ─── BLOCO 2 — ÁREAS DE ATUAÇÃO ─── */
.bloco-areas {
  background: radial-gradient(circle at 50% 12%, rgba(0,0,0,0.035), transparent 26%), #fbfaf8;
  color: var(--texto);
  padding-top: 0;
  overflow: visible;
  min-height: auto;
}

.areas-wrap {
  width: 100%;
  padding: 28px 7.3% 14px;
  background: linear-gradient(90deg, #fbfaf8 0%, #ffffff 50%, #fbfaf8 100%);
}

.areas-header {
  text-align: center;
  margin-bottom: 22px;
}

.areas-header p {
  color: #e46f00;
  font-size: clamp(13px, .84vw, 17px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.areas-header h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 3.05vw, 62px);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 27px;
}

.areas-header span {
  display: block;
  width: 70px; height: 4px;
  background: #e46f00;
  margin: 0 auto;
}

.areas-header.sec { margin-top: 14px; margin-bottom: 22px; }
.areas-header.sec h2 { font-size: clamp(34px, 2.8vw, 52px); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.area-item {
  position: relative;
  min-height: 150px;
  padding: 14px 35px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.area-item:not(:last-child) { border-right: 1px solid var(--linha); }

.linha-meio .area-item { min-height: 132px; }
.linha-baixo .area-item { min-height: 158px; }

.area-item h3 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.46vw, 32px);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 14px;
  min-height: 2.24em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-item p {
  color: #111;
  font-size: clamp(13px, .88vw, 16px);
  line-height: 1.58;
  font-weight: 400;
  max-width: 280px;
  margin: 0 auto 8px;
}

.area-item.lista ul {
  display: inline-block;
  text-align: left;
  color: #111;
  font-size: clamp(11px, 0.78vw, 14px);
  line-height: 1.35;
  font-weight: 500;
  padding-left: 18px;
  max-width: 290px;
}

.separador {
  height: 1px;
  background: var(--linha);
  width: calc(100% + 14.6vw);
  margin-left: -7.3vw;
}

/* Ícones — Bloco 2 */
.icone {
  width: 82px; height: 72px;
  flex-shrink: 0;
  margin: 0 auto 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icone-consumidor {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 80' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e46f00' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='37' cy='20' r='14'/%3E%3Cpath d='M14 70V57c0-13 9-23 23-23s23 10 23 23v13H14Z'/%3E%3Cpath d='M64 43l17 6v11c0 8-7 14-17 18-10-4-17-10-17-18V49l17-6Z'/%3E%3Cpath d='M57 60l5 5 11-12'/%3E%3C/svg%3E");
}

.icone-cartao {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 80' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e46f00' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='15' y='22' width='70' height='44' rx='4'/%3E%3Cpath d='M15 34h70M27 52h9M43 52h13'/%3E%3C/svg%3E");
}

.icone-prancheta {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 80' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e46f00' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='25' y='14' width='50' height='58' rx='3'/%3E%3Cpath d='M40 14c0-5 20-5 20 0v8H40v-8Z'/%3E%3Ccircle cx='38' cy='36' r='3'/%3E%3Cpath d='M48 36h14M38 50h0M48 50h14M38 62h0M48 62h14'/%3E%3C/svg%3E");
}

.icone-mao {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 80' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e46f00' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='60' cy='18' r='10'/%3E%3Cpath d='M60 11v14M54 18h12'/%3E%3Cpath d='M15 57c14-8 21-6 31 0h12c6 0 8 8 1 11H40'/%3E%3Cpath d='M15 57l-5 13M57 67l25-13c7-4 11 5 5 10L62 78H29l-19-8'/%3E%3C/svg%3E");
}

.icone-balanca {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 80' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e46f00' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M50 10v54M32 18h36M24 72h52M40 64h20'/%3E%3Cpath d='M28 22 14 50h28L28 22ZM72 22 58 50h28L72 22Z'/%3E%3Cpath d='M14 50c2 9 26 9 28 0M58 50c2 9 26 9 28 0'/%3E%3Ccircle cx='50' cy='14' r='5'/%3E%3C/svg%3E");
}

/* Ícones SVG refinados (arquivos externos) */
.icone-emprestimo-refinado,
.icone-tarifas-refinado {
  display: block;
  width: 82px;
  height: 72px;
  flex-shrink: 0;
  margin: 0 auto 8px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  filter: drop-shadow(0 2px 6px rgba(228,111,0,.10));
}

.icone-emprestimo-refinado { background-image: url("icone-emprestimo-refinado.svg"); }
.icone-tarifas-refinado { background-image: url("icone-tarifas-refinado.svg"); }

/* ─── BLOCO 3 — DIFERENCIAIS (tema claro, igual Bloco 4) ─── */
.bloco-diferenciais {
  background:
    radial-gradient(circle at 50% 8%, rgba(0,0,0,0.025), transparent 32%),
    linear-gradient(90deg, #fbfaf8 0%, #ffffff 50%, #fbfaf8 100%);
  color: #111;
}

.dif-wrap {
  width: 100%;
  padding: 18px 7.3% 26px;
}

.dif-header {
  text-align: center;
  margin-bottom: 22px;
}

.dif-header p {
  color: #e46f00;
  font-size: clamp(13px, .84vw, 17px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.dif-header h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 3.05vw, 62px);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 27px;
}

.dif-header span {
  display: block;
  width: 70px; height: 4px;
  background: #e46f00;
  margin: 0 auto;
}

.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.dif-item {
  position: relative;
  min-height: 185px;
  padding: 14px 35px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.dif-item:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.13);
}

.dif-icone {
  width: 82px; height: 72px;
  flex-shrink: 0;
  margin: 0 auto 8px;
}

.dif-item h3 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.46vw, 32px);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 14px;
  min-height: 2.24em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dif-item p {
  color: #111;
  font-size: clamp(13px, .88vw, 16px);
  line-height: 1.58;
  font-weight: 400;
  max-width: 280px;
  margin: 0 auto 8px;
}

/* Animações reveal — Bloco 3 */
.reveal.visivel .dif-header {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visivel .dif-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visivel .dif-item:nth-child(1) { transition-delay: 0.14s; }
.reveal.visivel .dif-item:nth-child(2) { transition-delay: 0.24s; }
.reveal.visivel .dif-item:nth-child(3) { transition-delay: 0.34s; }
.reveal.visivel .dif-item:nth-child(4) { transition-delay: 0.44s; }

/* ─── BLOCO 4 — FALE CONOSCO ─── */
.contato-exato {
  min-height: auto;
  background:
    radial-gradient(circle at 50% 8%, rgba(0,0,0,0.025), transparent 32%),
    linear-gradient(90deg, #fbfaf8 0%, #ffffff 50%, #fbfaf8 100%);
  color: #111;
  padding-top: 0;
  overflow: hidden;
}

.contato-exato-wrap {
  width: 100%;
  padding: 48px 2.8% 38px;
  display: flex;
  flex-direction: column;
}

.contato-exato-header {
  text-align: center;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s ease, transform .85s ease;
}

.contato-exato-header p {
  color: #e46f00;
  font-size: clamp(13px, .84vw, 17px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.contato-exato-header h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  font-size: clamp(40px, 3.05vw, 62px);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 27px;
}

.contato-exato-header span {
  display: block;
  width: 70px; height: 4px;
  background: #e46f00;
  margin: 0 auto;
}

.contato-exato-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  width: 100%;
}

.contato-exato-card {
  position: relative;
  padding: 0 34px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s ease, transform .85s ease;
}

.contato-exato-card:not(:last-child) {
  border-right: 1px solid rgba(0,0,0,0.13);
}

.contato-exato-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  font-size: clamp(22px, 1.46vw, 32px);
  line-height: 1.12;
  font-weight: 700;
  text-align: center;
  margin: 0 0 6px;
}

.oab-state {
  color: #e46f00;
  font-size: clamp(11px, .72vw, 14px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .5px;
  text-align: center;
  margin: 0 0 6px;
}

.mapa-slot {
  height: 128px;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.mapa-slot img {
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  image-rendering: auto;
  filter: drop-shadow(0 3px 7px rgba(230,95,0,.08));
}

.contato-exato-card:nth-child(1) .mapa-slot img { height: 112px; max-width: 98%; }
.contato-exato-card:nth-child(2) .mapa-slot img { height: 122px; max-width: 76%; }
.contato-exato-card:nth-child(3) .mapa-slot img { height: 124px; max-width: 70%; }
.contato-exato-card:nth-child(4) .mapa-slot img { height: 104px; max-width: 98%; }
.contato-exato-card:nth-child(5) .mapa-slot img { height: 110px; max-width: 95%; }

.contato-info {
  width: 100%;
  max-width: 315px;
  margin: 0 auto;
  padding-top: 0;
}

.contato-linha {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  align-items: start;
  margin: 0 0 24px;
}

.contato-linha.endereco { margin-bottom: 0; }

.contato-ico {
  display: block;
  width: 42px; height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.contato-ico.whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e46f00' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 5C12.8 5 5.5 12 5.5 20.8c0 3.4 1.1 6.5 3 9L6.5 39l9.6-2.5c1.9.8 3.9 1.2 6 1.2 9.2 0 16.5-7 16.5-15.8S31.2 5 22 5Z'/%3E%3Cpath d='M16.7 14.2c-.6.2-1.2.9-1.4 2.1-.3 2.5 2 6.8 5.8 9.5 3.5 2.4 7.4 3.1 8.9 1.4.7-.8.7-1.6.4-2l-3.1-1.7c-.5-.3-1-.1-1.4.3l-1 1.1c-.3.3-.7.4-1.1.2-1.6-.6-4.2-2.5-5.2-4.9-.2-.4-.1-.8.2-1.1l.8-1.1c.3-.4.3-.8.2-1.3l-1.4-3.2c-.3-.3-.8-.4-1.7-.3Z'/%3E%3C/svg%3E");
}

.contato-ico.location {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e46f00' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 40S8.5 27.5 8.5 16.4C8.5 9 14.5 4.8 22 4.8S35.5 9 35.5 16.4C35.5 27.5 22 40 22 40Z'/%3E%3Ccircle cx='22' cy='16.8' r='5'/%3E%3C/svg%3E");
}

.icon-link {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(230,95,0,.28));
}

.icon-link .contato-ico { margin: 0; }

.contato-linha strong {
  display: block;
  font-size: clamp(14px, .92vw, 17px);
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 8px;
  color: #111;
}

.contato-linha p {
  font-size: clamp(13px, .88vw, 16px);
  line-height: 1.48;
  font-weight: 400;
  color: #111;
  margin: 0;
}

/* Cada linha de endereço como bloco independente, sem quebra interna */
.contato-linha.endereco p span {
  display: block;
  white-space: nowrap;
}

/* ─── ANIMAÇÕES ─── */
@keyframes entradaTexto {
  from { opacity: 0; transform: translateX(-44px); filter: blur(6px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes abreTraco {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes sobeFade {
  from { opacity: 0; transform: translateY(34px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}

.reveal.visivel {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visivel .area-item,
.reveal.visivel .dif-header,
.reveal.visivel .dif-item,
.reveal.visivel .contato-exato-header,
.reveal.visivel .contato-exato-card {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visivel .area-item:nth-child(1) { transition-delay: 0.10s; }
.reveal.visivel .area-item:nth-child(2) { transition-delay: 0.18s; }
.reveal.visivel .area-item:nth-child(3) { transition-delay: 0.26s; }
.reveal.visivel .area-item:nth-child(4) { transition-delay: 0.34s; }

.reveal.visivel .contato-exato-header { transition-delay: .06s; }
.reveal.visivel .contato-exato-card:nth-child(1) { transition-delay: .14s; }
.reveal.visivel .contato-exato-card:nth-child(2) { transition-delay: .22s; }
.reveal.visivel .contato-exato-card:nth-child(3) { transition-delay: .30s; }
.reveal.visivel .contato-exato-card:nth-child(4) { transition-delay: .38s; }
.reveal.visivel .contato-exato-card:nth-child(5) { transition-delay: .46s; }

/* ─── BOTÃO FLUTUANTE WHATSAPP ─── */
.floating-buttons {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: visible;
}

.floating-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-btn:hover { transform: translateY(-4px); }

.whatsapp-btn {
  background: #25D366;
  box-shadow: 0 12px 30px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.12);
}

.whatsapp-btn:hover {
  box-shadow: 0 16px 38px rgba(0,0,0,.42), 0 0 22px rgba(37,211,102,.36);
}

.floating-icon {
  width: 31px; height: 31px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.whatsapp-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 5C12.8 5 5.5 12 5.5 20.8c0 3.4 1.1 6.5 3 9L6.5 39l9.6-2.5c1.9.8 3.9 1.2 6 1.2 9.2 0 16.5-7 16.5-15.8S31.2 5 22 5Z'/%3E%3Cpath d='M16.7 14.2c-.6.2-1.2.9-1.4 2.1-.3 2.5 2 6.8 5.8 9.5 3.5 2.4 7.4 3.1 8.9 1.4.7-.8.7-1.6.4-2l-3.1-1.7c-.5-.3-1-.1-1.4.3l-1 1.1c-.3.3-.7.4-1.1.2-1.6-.6-4.2-2.5-5.2-4.9-.2-.4-.1-.8.2-1.1l.8-1.1c.3-.4.3-.8.2-1.3l-1.4-3.2c-.3-.3-.8-.4-1.7-.3Z'/%3E%3C/svg%3E");
}

.whatsapp-btn::before {
  content: "Fale Conosco";
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #080808;
  color: #f7f1e6;
  border: 1px solid #c8a96e;
  padding: 7px 13px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  pointer-events: none;
}

/* Garante que links de Instagram removidos não apareçam */
a[href*="instagram"] { display: none; }

/* ─── RODAPÉ ─── */
.footer-final-abl {
  background:
    radial-gradient(circle at 50% 0%, rgba(214,154,45,.08), transparent 34%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  border-top: 1px solid rgba(214,154,45,.18);
  padding: 8px 20px;
  color: #fff;
}

.footer-final-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  justify-content: flex-end;
  margin-bottom: 4px;
}

.footer-logo-svg {
  height: 50px;
  max-width: 290px;
  width: auto;
}

.footer-divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.28), transparent);
  margin: 6px 0;
}

.footer-description { min-width: 420px; text-align: left; }

.footer-description p {
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  margin: 0;
}

/* ─── PÁGINA WHATSAPP ─── */
body.whatsapp-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 12%, rgba(214,154,45,.12), transparent 32%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #000 100%);
  color: #fff;
  padding: 0;
}

body.whatsapp-page main { flex: 1 0 auto; }

.whatsapp-panel {
  width: min(1180px, 100%);
  text-align: center;
  min-height: calc(100vh - 115px);
  margin: 0 auto;
  padding: 70px 7% 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whatsapp-topo-textos h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 72px);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 22px;
}

.whatsapp-topo-textos p {
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1.6;
  margin-bottom: 12px;
}

.whatsapp-email { margin-bottom: 52px; }

.whatsapp-states {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(214,154,45,.32);
  border-bottom: 1px solid rgba(214,154,45,.32);
}

.whatsapp-state {
  min-height: 240px;
  padding: 34px 22px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
}

.whatsapp-state:not(:last-child) { border-right: 1px solid rgba(214,154,45,.28); }
.whatsapp-state:hover { background: rgba(214,154,45,.08); transform: translateY(-4px); }

.whatsapp-state .state-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,.34);
}

.whatsapp-state .state-icon::before {
  content: "";
  width: 29px; height: 29px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 5C12.8 5 5.5 12 5.5 20.8c0 3.4 1.1 6.5 3 9L6.5 39l9.6-2.5c1.9.8 3.9 1.2 6 1.2 9.2 0 16.5-7 16.5-15.8S31.2 5 22 5Z'/%3E%3Cpath d='M16.7 14.2c-.6.2-1.2.9-1.4 2.1-.3 2.5 2 6.8 5.8 9.5 3.5 2.4 7.4 3.1 8.9 1.4.7-.8.7-1.6.4-2l-3.1-1.7c-.5-.3-1-.1-1.4.3l-1 1.1c-.3.3-.7.4-1.1.2-1.6-.6-4.2-2.5-5.2-4.9-.2-.4-.1-.8.2-1.1l.8-1.1c.3-.4.3-.8.2-1.3l-1.4-3.2c-.3-.3-.8-.4-1.7-.3Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.whatsapp-state h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.35vw, 26px);
  line-height: 1.1;
  margin-bottom: 12px;
  white-space: nowrap;
}

.whatsapp-state p {
  color: rgba(255,255,255,.70);
  font-size: 15px;
  line-height: 1.5;
}

.back-home {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 32px auto 0;
  color: #d69a2d;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .4px;
}

.back-home:hover { text-decoration: underline; }

/* ========================================
   RESPONSIVO — TABLET (≤ 1100px)
   ======================================== */
@media (max-width: 1100px) {
  .menu-flutuante {
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    gap: 26px;
  }

  .areas-wrap { padding: 20px 6% 20px; }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }

  .area-item:nth-child(2) { border-right: none; }

  .dif-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }

  .dif-item:nth-child(2) { border-right: none; }

  .contato-exato-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .contato-exato-card:nth-child(2),
  .contato-exato-card:nth-child(4) { border-right: none; }

  .contato-exato-card { min-height: auto; }
}

/* ========================================
   RESPONSIVO — MOBILE (≤ 768px)
   ======================================== */
@media (max-width: 768px) {
  .topbar { height: 56px; }

  .site-logo-svg {
    height: 38px;
    max-width: 200px;
  }

  .site-logo-link { left: 16px; }

  /* Esconde menu desktop, mostra hamburger */
  .menu-flutuante {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9998;
  }

  .menu-flutuante.open { transform: translateX(0); }

  .hamburger { display: block; }

  .menu-link {
    height: auto;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 22px 0;
    color: #fff;
  }

  .menu-link::after { display: none; }

  .menu-link.active { color: var(--dourado); }

  /* Bloco 1 */
  .inicio-bg { background-position: 61% center; }

  .texto-inicio {
    top: 52%;
    left: 24px;
    right: 24px;
    max-width: none;
    padding-top: 70px;
  }

  .texto-principal br,
  .texto-secundario br { display: none; }

  /* Bloco 2 */
  .areas-wrap { padding: 12px 5% 16px; }

  .areas-grid { grid-template-columns: 1fr; }

  .area-item,
  .area-item:not(:last-child),
  .area-item:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid var(--linha);
    min-height: auto;
    padding: 16px 12px;
  }

  .area-item h3 { min-height: auto; }

  .area-item p br { display: none; }

  .separador {
    width: 100%;
    margin-left: 0;
  }

  /* Bloco 3 */
  .dif-wrap { padding: 12px 5% 16px; }

  .dif-grid { grid-template-columns: 1fr; }

  .dif-item,
  .dif-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.13);
    min-height: auto;
    padding: 16px 12px;
  }

  .dif-item h3 { min-height: auto; }

  /* Bloco 4 */
  .contato-exato-wrap { padding: 32px 16px 24px; }

  .contato-exato-grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .contato-exato-card,
  .contato-exato-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
    min-height: auto;
    padding: 0 8px 28px;
  }

  .contato-exato-card:last-child { border-bottom: none; }

  .mapa-slot { height: 100px; }

  .contato-exato-card:nth-child(1) .mapa-slot img,
  .contato-exato-card:nth-child(2) .mapa-slot img,
  .contato-exato-card:nth-child(3) .mapa-slot img,
  .contato-exato-card:nth-child(4) .mapa-slot img,
  .contato-exato-card:nth-child(5) .mapa-slot img {
    height: 90px;
    max-width: 60%;
  }

  /* Rodapé */
  .footer-final-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    min-width: auto;
  }

  .footer-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  }

  .footer-description {
    min-width: auto;
    text-align: center;
  }

  /* Floating button */
  .floating-buttons { right: 16px; bottom: 16px; }
  .floating-btn { width: 52px; height: 52px; }
  .floating-icon { width: 27px; height: 27px; }
  .whatsapp-btn::before { display: none; }

  /* Página WhatsApp */
  .whatsapp-states { grid-template-columns: 1fr; }

  .whatsapp-state:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(214,154,45,.28);
  }

  .whatsapp-state { min-height: auto; padding: 24px 16px; }
}

/* ─── MOBILE PEQUENO (≤ 420px) ─── */
@media (max-width: 420px) {
  .texto-inicio h1 { font-size: 28px; }
  .texto-principal { font-size: 15px; margin-bottom: 28px; }
  .texto-secundario { font-size: 14px; }
  .contato-exato-header h2 { font-size: 28px; }
  .dif-header h2 { font-size: 26px; }
  .areas-header h2 { font-size: 24px; }
}
