@font-face {
  font-family: 'Lato';
  src: url('fontes/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fontes/Lato-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fontes/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fontes/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('fontes/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --crimson: #6B0F1A;
  --wine: #8B1A2E;
  --red: #C0392B;
  --bg: #F4F1F1;
  --bg2: #EDE9E9;
  --bg3: #E4DFDF;
  --card: #EEEBEB;
  --border: rgba(139,26,46,0.1);
  --text: #1A0E0E;
  --text-muted: #6B5555;
  --white: #FAFAFA;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(244,241,241,0.96);
  backdrop-filter: blur(16px);
  padding: 22px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 72px;
  width: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.05);
  transition: height 0.4s;
}
nav.scrolled .nav-logo img { height: 52px; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--crimson), var(--red));
  color: var(--white);
  padding: 10px 26px;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
  gap: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F4F1F1 0%, #EDE9E9 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('imagens/predios.webp');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  opacity: 0.07;
  filter: grayscale(100%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--wine); }
.hero-eyebrow span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine);
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.45s forwards;
}
.hero-title strong {
  font-weight: 900;
  line-height: 1.18;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 460px;
  margin: 28px 0 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.75s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--crimson), var(--red));
  color: var(--white);
  padding: 15px 34px;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-outline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid var(--wine);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-outline:hover { color: var(--red); border-color: var(--red); }

/* Hero right — foto prédio card */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}
.hero-building-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.hero-building-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 6s ease;
}
.hero-building-card:hover img { transform: scale(1.04); }
.hero-building-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,15,26,0.55) 0%, rgba(107,15,26,0.1) 50%, transparent 100%);
}
.hero-building-label {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  color: white;
}
.hero-building-label p {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.hero-building-label h3 {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.2;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.scroll-bar {
  width: 48px; height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--wine);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { left: -100%; } 100% { left: 100%; } }
.scroll-bar-text {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-dot { width: 3px; height: 3px; background: var(--wine); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS COMMON ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label-line { width: 28px; height: 1px; background: var(--wine); }
.section-label span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine);
}
.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 48px;
}
.section-title strong { font-weight: 900; }
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--crimson), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* ── SOBRE ── */
#sobre {
  padding: 120px 60px;
  position: relative;
}
.sobre-logo {
  height: 165px;
  width: auto;
  margin-top: 28px;
  margin-bottom: 32px;
  display: block;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-text p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sobre-text p strong { color: var(--text); font-weight: 700; }
.sobre-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-card {
  background: var(--card);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--crimson), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.stat-card:hover::after { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-3px); }
.stat-number {
  font-size: 3rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--crimson), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── ÁREAS ── */
#areas {
  padding: 120px 60px;
  background: var(--bg2);
}
.areas-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.areas-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.area-card {
  background: var(--card);
  padding: 44px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.area-card:hover { transform: translateY(-5px); }
.area-number {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 3.8rem;
  font-weight: 900;
  color: rgba(139,26,46,0.05);
  line-height: 1;
  transition: color 0.3s;
}
.area-card:hover .area-number { color: rgba(139,26,46,0.09); }
.area-icon { width: 44px; height: 44px; color: var(--wine); margin-bottom: 24px; position: relative; z-index: 1; transition: transform 0.3s ease; }
.area-card:hover .area-icon { transform: scale(1.15); }
.area-line {
  width: 28px; height: 2px;
  background: linear-gradient(to right, var(--crimson), var(--red));
  margin-bottom: 18px;
  position: relative; z-index: 1;
  transition: width 0.3s;
}
.area-card:hover .area-line { width: 56px; }
.area-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.area-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
  position: relative; z-index: 1;
}

/* ── SÓCIOS ── */
#socios {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
#socios::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('imagens/predios.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(100%);
  opacity: 0.04;
}
.socios-header { margin-bottom: 64px; }
.socios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative; z-index: 1;
}
.socio-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
}
.socio-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.socio-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(30%);
  transition: filter 0.5s, transform 0.6s;
}
.socio-card:hover .socio-photo-wrap img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.socio-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--white) 100%);
  pointer-events: none;
}
.socio-info {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.socio-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 10px;
}
.socio-name {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 4px;
}
.socio-name strong { font-weight: 900; display: block; }
.socio-oab {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 400;
}
.socio-divider {
  width: 32px; height: 1px;
  background: linear-gradient(to right, var(--crimson), var(--red));
  margin-bottom: 20px;
}
.socio-bio {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.socio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.socio-tag-item {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid rgba(139,26,46,0.25);
  padding: 4px 10px;
}
.socio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.socio-placeholder svg {
  width: 80px; height: 80px;
  color: rgba(139,26,46,0.18);
}

/* ── CURRÍCULO BTN ── */
.socio-card { cursor: pointer; }
.socio-curriculo-btn {
  margin-top: 20px;
  background: none;
  border: 1px solid rgba(139,26,46,0.35);
  color: var(--wine);
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.socio-curriculo-btn .btn-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.socio-curriculo-btn:hover {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.socio-curriculo-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* ── MODAL ── */
.modal-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(10,6,6,0.72);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 60px 52px 52px;
  border-top: 3px solid var(--wine);
  box-shadow: 0 32px 80px rgba(10,6,6,0.35), 0 8px 24px rgba(10,6,6,0.18);
  transform: translateY(36px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.modal-close svg {
  width: 14px; height: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.modal-close:hover {
  background: var(--bg2);
  border-color: rgba(139,26,46,0.3);
}
.modal-close:hover svg { color: var(--text); }
.modal-socio-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.modal-photo {
  width: 112px; height: 112px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.modal-socio-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-socio-meta .modal-cargo {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 8px;
}
.modal-socio-meta .modal-name {
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.modal-socio-meta .modal-name strong { font-weight: 900; }
.modal-socio-meta .modal-oab {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.modal-bio {
  font-size: 0.87rem;
  line-height: 1.95;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-section-title {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.modal-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.modal-area-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  background: rgba(139,26,46,0.05);
  border: 1px solid rgba(139,26,46,0.22);
  padding: 6px 14px;
  transition: background 0.2s;
}
.modal-formacao {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-formacao p::before {
  content: '— ';
  color: var(--wine);
  font-weight: 700;
}
@media (max-width: 600px) {
  .modal-box { padding: 52px 24px 36px; }
  .modal-socio-header { flex-direction: column; gap: 20px; }
  .modal-photo { width: 88px; height: 88px; }
}

/* ── CTA COM PRÉDIO ── */
#cta {
  position: relative;
  padding: 140px 60px;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('imagens/predios.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(30%);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.cta-eyebrow-line { width: 28px; height: 1px; background: rgba(255,255,255,0.4); }
.cta-eyebrow span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}
.cta-title strong { font-weight: 900; }
.cta-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--crimson), var(--red));
  color: var(--white);
  padding: 18px 44px;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
a.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── DIFERENCIAIS ── */
#diferenciais {
  padding: 120px 60px;
  background: var(--bg2);
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.dif-card {
  padding: 44px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.dif-card:hover { transform: translateY(-6px); }
.dif-card:hover .dif-icon { transform: scale(1.15); }
.dif-icon { width: 38px; height: 38px; color: var(--wine); margin-bottom: 20px; transition: transform 0.3s ease; }
.dif-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.dif-desc { font-size: 0.8rem; line-height: 1.8; color: var(--text-muted); }

/* ── FOOTER ── */
#contato {
  padding: 80px 60px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}
.footer-map {
  height: 260px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.footer-logo img {
  height: 64px;
  mix-blend-mode: multiply;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 8px;
}
.footer-col-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 20px;
}
.footer-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-item svg { width: 14px; height: 14px; color: var(--wine); flex-shrink: 0; margin-top: 3px; }
.footer-item-text { font-size: 0.82rem; line-height: 1.7; color: var(--text-muted); }
.footer-item-text a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-item-text a:hover { color: var(--wine); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy, .footer-oab {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.55;
}
.footer-oab { font-style: italic; }

/* ── CLIENTES ── */
#clientes {
  padding: 100px 60px;
  background: var(--bg2);
  overflow: hidden;
}
.clientes-track-wrap {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}
.clientes-fade-left, .clientes-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clientes-fade-left  { left: 0;  background: linear-gradient(to right, var(--bg2), transparent); }
.clientes-fade-right { right: 0; background: linear-gradient(to left,  var(--bg2), transparent); }
.clientes-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.cliente-logo {
  flex-shrink: 0;
  width: 270px;
  height: 150px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: transform 0.3s;
}
.cliente-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.5s ease;
}
.cliente-logo--3xl { padding: 0; height: 180px; }
.cliente-logo--2xl { padding: 2px; }
.cliente-logo--xl  { padding: 10px; }
.cliente-logo--md  { padding: 28px; }
.cliente-logo--sm  { padding: 38px; }
.cliente-logo--xs  { padding: 52px; }
.cliente-logo:hover {
  transform: translateY(-4px);
}
.cliente-logo:hover img {
  filter: grayscale(0%) opacity(1);
}
@keyframes clienteScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 3)); }
}

/* ── WHATSAPP FLUTUANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wppPop 0.5s ease 1.8s both;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wppPulse 2.5s ease-in-out 2.5s infinite;
  z-index: -1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes wppPop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes wppPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── HAMBURGER & MOBILE MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: linear-gradient(135deg, var(--crimson), var(--red));
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  z-index: 101;
  transition: opacity 0.2s;
}
.nav-hamburger:hover { opacity: 0.85; }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open { opacity: 1; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 36px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav-mobile-menu.open { opacity: 1; visibility: visible; }

/* Decorative background accent */
.nav-mobile-menu::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,26,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Nav links */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.mobile-menu-links li { overflow: hidden; }
.mobile-menu-links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wine);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-menu-links a span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  opacity: 0.6;
  margin-top: 4px;
}
.mobile-menu-links a:hover {
  color: var(--crimson);
  padding-left: 8px;
}

/* Staggered entrance animations */
@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile-menu.open .mobile-menu-links li:nth-child(1) { animation: menuItemIn 0.45s ease 0.1s both; }
.nav-mobile-menu.open .mobile-menu-links li:nth-child(2) { animation: menuItemIn 0.45s ease 0.18s both; }
.nav-mobile-menu.open .mobile-menu-links li:nth-child(3) { animation: menuItemIn 0.45s ease 0.26s both; }
.nav-mobile-menu.open .mobile-menu-links li:nth-child(4) { animation: menuItemIn 0.45s ease 0.34s both; }

/* Bottom: CTA + tagline */
.mobile-menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--crimson), var(--red));
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-menu-cta:hover { opacity: 0.88; transform: translateY(-2px); }
.mobile-menu-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  text-align: center;
}

@media (min-width: 901px) { .nav-mobile-menu { display: none !important; } }

/* ── TABLET LANDSCAPE ── */
@media (min-width: 901px) and (max-width: 1200px) {
  nav { padding: 16px 40px; }
  nav.scrolled { padding: 12px 40px; }
  #hero { padding: 100px 40px 60px; gap: 40px; }
  #sobre, #areas, #diferenciais, #cta, #socios { padding: 80px 40px; }
  #clientes { padding: 72px 40px; }
  #contato { padding: 64px 40px 32px; }
  .sobre-grid { gap: 48px; }
  .socio-card { grid-template-columns: 200px 1fr; }
  .socio-info { padding: 28px 24px; }
  .areas-header { gap: 40px; }
  .contato-grid { gap: 36px; }
  .dif-grid { gap: 2px; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 10px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .hero-scroll-hint { left: 24px; }
  #sobre, #areas, #diferenciais, #cta, #socios, #contato { padding: 80px 24px; }
  #clientes { padding: 60px 24px; }
  .sobre-grid, .areas-header { grid-template-columns: 1fr; gap: 40px; }
  .areas-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .socios-grid { grid-template-columns: 1fr; gap: 48px; }
  .socio-card { grid-template-columns: 1fr; }
  .socio-photo-wrap { aspect-ratio: 4/3; }
  .socio-photo-overlay { background: linear-gradient(to bottom, transparent 60%, var(--white) 100%); }
  .contato-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stat-number { font-size: 2.2rem; }
  .stat-card { padding: 28px 20px; }
  .hero-bg-img, .cta-bg, #socios::before { background-attachment: scroll; }
}
