/*
Theme Name:  Almazili Advogado
Theme URI:   https://almaziliadvogado.adv.br
Description: Tema personalizado para Alexandre Lobo Mazili Advocacia. Direito Imobiliário, Condominial, Trabalhista e do Consumidor.
Author:      Alexandre Lobo Mazili
Author URI:  https://almaziliadvogado.adv.br
Version:     2.0
License:     GNU General Public License v2 or later
Text Domain: almazili
*/

/* ── VARIÁVEIS ────────────────────────────────────────────── */
:root {
  --gold:       #B8952A;
  --gold-light: #D4AF55;
  --gold-pale:  #F5EDD4;
  --navy:       #2C3A52;
  --navy-mid:   #3A4D6A;
  --navy-light: #4A6080;
  --white:      #FAFAF8;
  --cream:      #F3EEE4;
  --gray:       #6B7280;
  --gray-light: #E8E6E0;
  --text-dark:  #1E2430;
  --text-mid:   #3D3D4A;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove margens do WP admin bar */
body.admin-bar .alm-nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .alm-nav { top: 46px; } }

img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.alm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(44,58,82,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,149,42,0.22);
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s;
}
.alm-nav.scrolled { background: rgba(44,58,82,0.99); }

.alm-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.alm-logo-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--gold); letter-spacing: -1px;
  flex-shrink: 0;
}
.alm-logo-texts { display: flex; flex-direction: column; gap: 1px; }
.alm-logo-name { font-family: var(--serif); font-size: 14px; color: var(--white); letter-spacing: 0.5px; line-height: 1.2; }
.alm-logo-oab  { font-size: 10px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; }

/* Menu WP - neutralizar padrão */
.alm-nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.alm-nav-menu li { margin: 0; padding: 0; }
.alm-nav-menu a {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.72);
  text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s;
}
.alm-nav-menu a:hover { color: var(--gold-light); }
.alm-nav-menu .menu-cta a {
  background: var(--gold); color: var(--navy) !important;
  padding: 9px 20px; font-weight: 500 !important; letter-spacing: 0.5px !important;
  display: inline-block; transition: background 0.2s;
}
.alm-nav-menu .menu-cta a:hover { background: var(--gold-light) !important; }

/* Hamburger mobile */
.alm-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.alm-hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all 0.3s; }
.alm-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.alm-hamburger.open span:nth-child(2) { opacity: 0; }
.alm-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.alm-mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(44,58,82,0.98); padding: 24px 40px;
  flex-direction: column; gap: 0;
}
.alm-mobile-menu.open { display: flex; }
.alm-mobile-menu a {
  font-size: 15px; color: rgba(255,255,255,0.75); text-decoration: none;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 14px 0; border-bottom: 1px solid rgba(184,149,42,0.1); display: block;
  transition: color 0.2s;
}
.alm-mobile-menu a:hover { color: var(--gold-light); }
.alm-mobile-menu .mobile-cta a {
  background: var(--gold); color: var(--navy) !important;
  padding: 12px 24px; margin-top: 16px; font-weight: 500 !important;
  display: inline-block; border: none;
}

/* ── BOTÕES ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 15px 32px; font-size: 14px; font-weight: 500; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--navy); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(184,149,42,0.4); color: var(--gold-light);
  padding: 15px 32px; font-size: 14px; font-weight: 400; letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  padding: 15px 28px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.2s; font-family: var(--sans);
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-1px); color: #fff; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ── SEÇÕES - BASE ─────────────────────────────────────────── */
.alm-section { padding: 96px 40px; }
.alm-inner   { max-width: 1200px; margin: 0 auto; }

.alm-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.alm-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.alm-eyebrow-text { font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }

.alm-section-title { font-family: var(--serif); font-size: clamp(28px,4vw,44px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.alm-section-desc  { font-size: 16px; color: var(--gray); max-width: 600px; line-height: 1.8; }

/* ── HERO ─────────────────────────────────────────────────── */
.alm-hero {
  min-height: 100vh; background: var(--navy);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.alm-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 80px,rgba(184,149,42,0.04) 80px,rgba(184,149,42,0.04) 81px),
    repeating-linear-gradient(90deg,transparent,transparent 80px,rgba(184,149,42,0.04) 80px,rgba(184,149,42,0.04) 81px);
}
.alm-hero-illus { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; pointer-events: none; opacity: 0.15; }
.alm-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center;
}
.alm-hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.alm-hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.alm-hero-eyebrow-text { font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); }
.alm-hero-title    { font-family: var(--serif); font-size: clamp(38px,5vw,62px); font-weight: 700; line-height: 1.12; color: var(--white); margin-bottom: 8px; }
.alm-hero-title span { color: var(--gold-light); }
.alm-hero-subtitle { font-family: var(--serif); font-size: clamp(16px,2.2vw,22px); font-weight: 400; color: rgba(255,255,255,0.5); margin-bottom: 28px; line-height: 1.4; }
.alm-hero-desc     { font-size: 16px; color: rgba(255,255,255,0.62); max-width: 520px; line-height: 1.85; margin-bottom: 44px; }
.alm-hero-actions  { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.alm-hero-stats    { display: flex; gap: 32px; margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(184,149,42,0.15); }
.alm-stat-num   { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.alm-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; text-transform: uppercase; }

/* Cartão credenciais hero */
.alm-hero-card { background: rgba(58,77,106,0.65); border: 1px solid rgba(184,149,42,0.22); padding: 40px; position: relative; }
.alm-hero-card::before { content: ''; position: absolute; top: -1px; left: 32px; right: 32px; height: 3px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.alm-card-avatar { width: 80px; height: 80px; border: 2px solid var(--gold); background: var(--navy-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-family: var(--serif); font-size: 28px; color: var(--gold); }
.alm-card-name { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 4px; }
.alm-card-oab  { font-size: 12px; color: var(--gold-light); letter-spacing: 1px; margin-bottom: 24px; }
.alm-card-items { display: flex; flex-direction: column; gap: 12px; }
.alm-card-item { display: flex; align-items: flex-start; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(184,149,42,0.1); }
.alm-card-item:last-child { border-bottom: none; padding-bottom: 0; }
.alm-card-dot  { width: 6px; height: 6px; min-width: 6px; background: var(--gold); margin-top: 7px; }
.alm-card-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.alm-card-text strong { color: var(--white); font-weight: 500; display: block; font-size: 13px; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.alm-trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--gray-light);
  border-bottom: 3px solid var(--gold);
  padding: 20px 40px;
}
.alm-trust-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.alm-trust-item  { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-mid); }
.alm-trust-icon  { width: 28px; height: 28px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alm-trust-icon svg { width: 14px; height: 14px; fill: white; }

/* ── ÁREAS ────────────────────────────────────────────────── */
.alm-areas { background: var(--white); }
.alm-areas-header { margin-bottom: 60px; }
.alm-areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1px; background: var(--gray-light); border: 1px solid var(--gray-light);
}
.alm-area-card { background: var(--white); padding: 40px 36px; position: relative; overflow: hidden; transition: background 0.3s; }
.alm-area-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.alm-area-card:hover { background: var(--cream); }
.alm-area-card:hover::after { transform: scaleX(1); }
.alm-area-illus { width: 64px; height: 64px; margin-bottom: 20px; }
.alm-area-title { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 12px; font-weight: 600; }
.alm-area-desc  { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.alm-area-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.alm-area-tag   { font-size: 11px; background: var(--gold-pale); color: var(--text-mid); padding: 4px 10px; letter-spacing: 0.5px; border: 1px solid rgba(184,149,42,0.2); }

/* ── COMO FUNCIONA ────────────────────────────────────────── */
.alm-processo { background: var(--navy); position: relative; overflow: hidden; }
.alm-processo .alm-section-title { color: var(--white); }
.alm-processo .alm-section-desc  { color: rgba(255,255,255,0.5); }
.alm-cf-bg { position: absolute; right: -60px; bottom: -60px; width: 400px; height: 400px; opacity: 0.05; pointer-events: none; }
.alm-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 60px; position: relative; }
.alm-steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); z-index: 0; }
.alm-step { padding: 0 24px; position: relative; z-index: 1; text-align: center; }
.alm-step-num { width: 56px; height: 56px; border: 1.5px solid var(--gold); background: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.alm-step-title { font-family: var(--serif); font-size: 17px; color: var(--white); margin-bottom: 10px; font-weight: 600; }
.alm-step-desc  { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }

/* ── SOBRE ────────────────────────────────────────────────── */
.alm-sobre { background: var(--cream); }
.alm-sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.alm-sobre-img-wrap { position: relative; }
.alm-sobre-img-box { background: var(--navy-mid); aspect-ratio: 3/4; max-height: 520px; width: 100%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.alm-sobre-img-box img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.alm-sobre-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); padding: 20px 24px; text-align: center; }
.alm-badge-num  { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1; }
.alm-badge-text { font-size: 11px; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; line-height: 1.4; margin-top: 4px; }
.alm-sobre-name  { font-family: var(--serif); font-size: clamp(26px,3vw,38px); color: var(--navy); font-weight: 700; margin-bottom: 6px; line-height: 1.2; }
.alm-sobre-role  { font-size: 14px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px; }
.alm-sobre-text  { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.alm-credentials { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(184,149,42,0.2); }
.alm-cred-item   { display: flex; align-items: flex-start; gap: 12px; }
.alm-cred-dot    { width: 5px; height: 5px; min-width: 5px; background: var(--gold); margin-top: 9px; }
.alm-cred-text   { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.alm-sobre-quote { margin-top: 36px; padding: 20px 24px; border-left: 3px solid var(--gold); background: rgba(184,149,42,0.07); font-family: var(--serif); font-size: 16px; font-style: italic; color: var(--navy-mid); line-height: 1.7; }

/* ── DEPOIMENTOS ──────────────────────────────────────────── */
.alm-depoimentos { background: var(--white); }
.alm-dep-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.alm-dep-card  { border: 1px solid var(--gray-light); padding: 36px 32px; position: relative; transition: border-color 0.2s; }
.alm-dep-card:hover { border-color: var(--gold); }
.alm-dep-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.alm-dep-star  { width: 14px; height: 14px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.alm-dep-text  { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.alm-dep-author { font-size: 13px; font-weight: 500; color: var(--navy); }
.alm-dep-label  { font-size: 12px; color: var(--gray); }
.alm-dep-mark   { position: absolute; top: 28px; right: 28px; font-family: var(--serif); font-size: 48px; color: rgba(184,149,42,0.1); line-height: 1; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.alm-cta-band { background: var(--navy); padding: 80px 40px; position: relative; overflow: hidden; }
.alm-cta-band::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg,transparent,transparent 20px,rgba(184,149,42,0.03) 20px,rgba(184,149,42,0.03) 21px); }
.alm-cta-illus  { position: absolute; left: -30px; bottom: -30px; opacity: 0.07; pointer-events: none; }
.alm-cta-inner  { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.alm-cta-title  { font-family: var(--serif); font-size: clamp(24px,3vw,38px); color: var(--white); font-weight: 700; line-height: 1.25; }
.alm-cta-title span { color: var(--gold-light); }
.alm-cta-desc   { font-size: 15px; color: rgba(255,255,255,0.55); margin-top: 12px; max-width: 480px; }
.alm-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ── ARTIGOS ──────────────────────────────────────────────── */
.alm-artigos { background: var(--cream); }
.alm-artigos-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 52px; flex-wrap: wrap; }
.alm-artigos-link   { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.alm-artigos-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.alm-artigo-card    { background: var(--white); border: 1px solid var(--gray-light); padding: 32px 28px; transition: all 0.2s; text-decoration: none; display: block; color: inherit; }
.alm-artigo-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.alm-artigo-area    { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.alm-artigo-title   { font-family: var(--serif); font-size: 18px; color: var(--navy); font-weight: 600; line-height: 1.35; margin-bottom: 12px; }
.alm-artigo-desc    { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ── CONTATO ──────────────────────────────────────────────── */
.alm-contato { background: var(--white); }
.alm-contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.alm-contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.alm-contact-item  { display: flex; align-items: flex-start; gap: 16px; }
.alm-contact-icon  { width: 44px; height: 44px; min-width: 44px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.alm-contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.alm-contact-title { font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.alm-contact-value { font-size: 15px; color: var(--text-dark); }

.alm-form-wrap { background: var(--cream); border: 1px solid var(--gray-light); padding: 48px 40px; position: relative; }
.alm-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.alm-form-title { font-family: var(--serif); font-size: 24px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
.alm-form-sub   { font-size: 14px; color: var(--gray); margin-bottom: 32px; }
.alm-form-group { margin-bottom: 20px; }
.alm-form-label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px; }
.alm-form-input,
.alm-form-select,
.alm-form-textarea {
  width: 100%; background: var(--white); border: 1px solid var(--gray-light);
  color: var(--text-dark); font-family: var(--sans); font-size: 14px;
  padding: 12px 16px; transition: border-color 0.2s; outline: none;
  -webkit-appearance: none; border-radius: 0;
}
.alm-form-input:focus,
.alm-form-select:focus,
.alm-form-textarea:focus { border-color: var(--gold); }
.alm-form-textarea { resize: vertical; min-height: 100px; }
.alm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alm-form-submit {
  width: 100%; background: var(--navy); color: var(--white); border: none;
  padding: 15px 32px; font-family: var(--sans); font-size: 14px;
  font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.alm-form-submit:hover { background: var(--navy-light); }

/* ── FOOTER ───────────────────────────────────────────────── */
.alm-footer { background: var(--navy); border-top: 3px solid var(--gold); padding: 60px 40px 32px; }
.alm-footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(184,149,42,0.15); margin-bottom: 32px; }
.alm-footer-name { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 4px; }
.alm-footer-oab  { font-size: 11px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.alm-footer-desc { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 280px; }
.alm-footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.alm-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.alm-footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.alm-footer-links a:hover { color: var(--gold-light); }
.alm-footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.alm-footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.alm-footer-contact-item a:hover { color: var(--gold-light); }
.alm-footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.alm-footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.alm-footer-policy a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; }
.alm-footer-policy a:hover { color: var(--gold-light); }

/* ── WHATSAPP FLUTUANTE ───────────────────────────────────── */
.alm-wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 9999; display: flex; align-items: center; gap: 12px; }
.alm-wa-btn   { width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: all 0.2s; }
.alm-wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.alm-wa-btn svg { width: 28px; height: 28px; fill: #fff; }
.alm-wa-label { background: var(--navy); color: var(--white); font-size: 13px; font-weight: 500; padding: 8px 16px; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all 0.2s; pointer-events: none; }
.alm-wa-float:hover .alm-wa-label { opacity: 1; transform: translateX(0); }

/* ── ANIMAÇÕES ENTRADA ────────────────────────────────────── */
@keyframes almFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.alm-anim-1 { animation: almFadeUp 0.6s 0.0s ease both; }
.alm-anim-2 { animation: almFadeUp 0.7s 0.1s ease both; }
.alm-anim-3 { animation: almFadeUp 0.7s 0.2s ease both; }
.alm-anim-4 { animation: almFadeUp 0.7s 0.3s ease both; }
.alm-anim-5 { animation: almFadeUp 0.7s 0.4s ease both; }
.alm-anim-6 { animation: almFadeUp 0.7s 0.5s ease both; }

/* ── RESPONSIVO ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .alm-hero-inner   { grid-template-columns: 1fr; }
  .alm-hero-card    { display: none; }
  .alm-steps        { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .alm-steps::before { display: none; }
  .alm-sobre-grid   { grid-template-columns: 1fr; }
  .alm-sobre-img-wrap { display: none; }
  .alm-dep-grid     { grid-template-columns: 1fr 1fr; }
  .alm-artigos-grid { grid-template-columns: 1fr 1fr; }
  .alm-contato-grid { grid-template-columns: 1fr; }
  .alm-footer-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .alm-nav { padding: 0 20px; }
  .alm-nav-menu { display: none; }
  .alm-hamburger { display: flex; }
  .alm-section   { padding: 72px 20px; }
  .alm-trust-bar { padding: 16px 20px; }
  .alm-hero-inner { padding: 60px 20px; }
  .alm-hero-stats { flex-wrap: wrap; gap: 20px; }
  .alm-areas-grid,
  .alm-dep-grid,
  .alm-artigos-grid { grid-template-columns: 1fr; }
  .alm-steps { grid-template-columns: 1fr; }
  .alm-form-row { grid-template-columns: 1fr; }
  .alm-footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .alm-cta-band  { padding: 60px 20px; }
  .alm-form-wrap { padding: 32px 24px; }
}
