/* ===================================================================
 * Kadri Advocacia — style.css
 * CSS do Kadri tem prioridade; Bootstrap vem antes no HTML.
 * =================================================================== */

/* ─── VARIÁVEIS ─── */
:root {
  --gold: #c9a96e;
  --gold-light: #d4b483;
  --gold-dark: #9a7a45;
  --bordo: #6b1020;
  --bordo-light: #8e1a2e;
  --bordo-dark: #4a0b16;
  --bordo-faint: rgba(107,16,32,0.12);
  --black: #0c0c0c;
  --dark: #141414;
  --dark2: #1a1a1a;
  --gray: #888888;
  --light-gray: #cccccc;
  --white: #f5f3ef;
  --cream: #f0ede6;
}


/* ─── RESET BÁSICO ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Sobrescreve cor padrão do Bootstrap no body e headings */
body {
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6,
.section-title, .hero-title, .area-title, .team-name,
.footer-logo, .contato-info h3 {
  color: var(--white) !important;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--bordo); border-radius: 2px; }

/* ===================================================================
 * PACE
 * =================================================================== */
.pace { pointer-events: none; user-select: none; }
.pace-inactive { display: none; }
.pace .pace-progress {
  background: var(--bordo-light);
  position: fixed;
  z-index: 2000;
  top: 0; right: 100%;
  width: 100%; height: 3px;
}

/* ===================================================================
 * PRELOADER
 * =================================================================== */
#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

#preloader .preloader-logo {
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.line-scale-pulse-out > div {
  background-color: var(--bordo-light);
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  animation-fill-mode: both;
  display: inline-block;
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}
.line-scale-pulse-out > div:nth-child(2),
.line-scale-pulse-out > div:nth-child(4) { animation-delay: -0.4s !important; }
.line-scale-pulse-out > div:nth-child(1),
.line-scale-pulse-out > div:nth-child(5) { animation-delay: -0.2s !important; }

@keyframes line-scale-pulse-out {
  0%   { transform: scaleY(1); }
  50%  { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

/* ===================================================================
 * WHATSAPP FLOAT
 * =================================================================== */
#whatsapp-container {
  z-index: 99;
  bottom: 32px;
  right: 32px;
  position: fixed;
}
#whatsapp-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
#whatsapp-container a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  color: #fff;
}
.bounce-6 {
  animation: bounce-6 2s ease infinite;
}
@keyframes bounce-6 {
  0%   { transform: scale(1,1) translateY(0); }
  10%  { transform: scale(1,1) translateY(-14px); }
  30%  { transform: scale(1,1) translateY(0); }
  100% { transform: scale(1,1) translateY(0); }
}

@media (max-width: 1200px) {
  #whatsapp-container { bottom: 18px; right: 18px; }
  #whatsapp-container a { width: 48px; height: 48px; font-size: 1.3rem; }
}

/* ===================================================================
 * NAV
 * =================================================================== */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
nav#navbar.scrolled {
  background: rgba(12,12,12,0.95) !important;
  backdrop-filter: blur(12px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(107,16,32,0.3);
}
.nav-logo img { height: 60px;}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-gray) !important;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white) !important; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--bordo) !important;
  border: 1px solid var(--bordo) !important;
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--bordo-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold-light);
  transition: all 0.3s;
}

/* ===================================================================
 * HERO
 * =================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    /*linear-gradient(to right, rgba(12,12,12,0.96) 35%, rgba(12,12,12,0.55) 70%, rgba(107,16,32,0.25) 100%),
    linear-gradient(180deg, rgba(107,16,32,0.09) 0%, transparent 40%),*/
    url('../imgs/bn-desktop.jpg') center/cover no-repeat;
}

.hero-line {
  position: absolute;
  left: 58px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(107,16,32,0.5) 30%, rgba(107,16,32,0.5) 70%, transparent);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px;
  max-width: 760px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--bordo-light); }
.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bordo-light);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(3.5rem, 7vw, 6.5rem) !important;
  font-weight: 300 !important;
  line-height: 1.05 !important;
  letter-spacing: -1px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.btn-primary-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--bordo-dark), var(--bordo), var(--bordo-light));
  color: var(--white) !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(107,16,32,0.35);
}
.btn-primary-gold:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(107,16,32,0.55);
  color: var(--white) !important;
}

.pbut-reduc{
  padding: 12px 25px;
}


.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-gray) !important;
  text-decoration: none;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--white) !important; }
.btn-ghost i {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: border-color 0.3s;
}
.btn-ghost:hover i { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 80px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.hero-scroll-line {
  width: 40px; height: 1px;
  background: var(--gray);
  animation: scrollLine 2s 2s infinite;
}
@keyframes scrollLine {
  0%, 100% { width: 40px; opacity: 1; }
  50%       { width: 20px; opacity: 0.4; }
}
.hero-oab {
  position: absolute;
  right: 80px; bottom: 40px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(158,37,57,0.6);
}

/* ===================================================================
 * SECTIONS BASE
 * =================================================================== */
section { padding: 100px 80px; }

.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.section-label-line { width: 32px; height: 1px; background: var(--bordo-light); }
.section-label span {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--bordo-light);
}
.section-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  font-weight: 300 !important;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--white) !important;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ===================================================================
 * SOBRE
 * =================================================================== */
#sobre {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(107,16,32,0.35);
  border-radius: 2px;
  z-index: 0;
}
.sobre-img-wrap img {
  width: 100%; height: 610px;
  object-fit: cover; border-radius: 2px;
  position: relative; z-index: 1;
  filter: grayscale(20%);
}
.sobre-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  z-index: 2;
  background: var(--bordo-dark);
  border: 1px solid rgba(107,16,32,0.6);
  padding: 20px 28px;
  text-align: center;
}
.sobre-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.sobre-badge .label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.sobre-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--light-gray);
  margin-bottom: 24px;
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}

/* ===================================================================
 * ÁREAS
 * =================================================================== */
#areas { background: var(--black); }

.areas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
/* ─── CARROSSEL ─── */
.areas-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
}
.areas-track-wrap {
  flex: 1;
  overflow: hidden;
  padding: 24px 0 48px;
}
.areas-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.areas-nav {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.areas-nav:hover {
  background: var(--bordo);
  border-color: var(--bordo-light);
  color: var(--white);
}
.area-card {
  flex: 0 0 auto;
  width: 340px;
  margin: 0 16px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  opacity: 0.4;
  transform: scale(0.86);
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--bordo), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.area-card.is-active {
  opacity: 1;
  transform: scale(1);
  background: var(--dark);
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 30px 60px -25px rgba(107,16,32,0.5);
}
.area-card.is-active::before { transform: scaleX(1); }
.area-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(184,151,90,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}
.area-card.is-active .area-icon {
  background: rgba(107,16,32,0.15);
  border-color: var(--bordo-light);
  color: var(--gold-light);
}
.area-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  margin-bottom: 16px;
  color: var(--white) !important;
}
.area-desc { font-size: 0.85rem; line-height: 1.8; color: var(--gray); }
.areas-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.areas-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.areas-dot.is-active { background: var(--gold); width: 24px; }

/* ===================================================================
 * EQUIPE
 * =================================================================== */
#equipe { background: var(--dark); }
.equipe-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.equipe-desc { font-size: 1rem; line-height: 1.8; color: var(--gray); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.team-card img {
  width: 100%; height: 520px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(30%);
  transition: transform 0.6s, filter 0.4s;
}
.team-card:hover img { transform: scale(1.05); filter: grayscale(0%); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.team-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  margin-bottom: 4px;
  color: var(--white) !important;
}
.team-oab {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-area { font-size: 0.75rem; color: var(--gray); margin-bottom: 12px; }
.team-insta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bordo-light);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.team-card:hover .team-insta { opacity: 1; transform: translateY(0); }
.team-card.no-oab .team-oab { color: var(--gray); }

/* ===================================================================
 * Abordagem
 * =================================================================== */
#abordagem {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diferenciais-list { margin-top: 30px; }
.diferencial-item {
  display: flex; gap: 24px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding-left 0.3s;
}
.diferencial-item:hover { padding-left: 8px; }
.diferencial-item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.diferencial-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.diferencial-text { font-size: 0.9rem; line-height: 1.8; color: var(--light-gray); }
.diferenciais-img { position: relative; }
.diferenciais-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 19px;
}

/* ===================================================================
 * CONTATO
 * =================================================================== */
#contato { background: var(--dark); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}
.contato-info h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.8rem !important;
  font-weight: 300 !important;
  margin-bottom: 40px;
  color: var(--gold-light) !important;
  font-style: italic;
}
.contato-item { display: flex; gap: 20px; margin-bottom: 32px; }
.contato-item i { color: var(--bordo-light); font-size: 1rem; margin-top: 3px; flex-shrink: 0; width: 20px; }
.contato-item .ci-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contato-item .ci-value { font-size: 0.95rem; color: var(--light-gray); text-decoration: none; transition: color 0.3s; }
.contato-item .ci-value:hover { color: var(--gold); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  box-shadow: none !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(107,16,32,0.5) !important; }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group textarea { height: 120px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.btn-form {
  width: 100%;
  background: linear-gradient(135deg, var(--bordo-dark), var(--bordo), var(--bordo-light));
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  margin-top: 8px;
}
.btn-form:hover { opacity: 0.85; transform: translateY(-1px); }

.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  height: 280px;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  filter: grayscale(80%) invert(90%) contrast(85%);
  border: none;
}

/* ===================================================================
 * INSTAGRAM EMBED
 * =================================================================== */
.instagram-section {
  background: var(--black);
  padding: 0 80px 0 80px;
}

/* ===================================================================
 * FOOTER
 * =================================================================== */
footer {
  background: var(--black) !important;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white) !important;
}
.footer-logo span { color: var(--bordo-light); }
.footer-copy { font-size: 0.75rem; color: var(--gray); text-align: center; }
.footer-copy a { color: var(--gold); text-decoration: none; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social a:hover { border-color: var(--bordo); background: var(--bordo); color: var(--white); }


/* ===================================================================
 * EXTRAS 
 * =================================================================== */

.border-yel{
  border: 1px solid #c9a96e;
}
.border-red{
  border: 1px solid #6b1020;
}

.dif-icon{
  font-size: 38px;
}


/* ===================================================================
 * ANIMATIONS & REVEAL
 * =================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================================================================
 * RESPONSIVE
 * =================================================================== */
@media (max-width: 1024px) {
  section { padding: 80px 40px; }
  nav#navbar { padding: 20px 40px; }
  nav#navbar.scrolled { padding: 14px 40px; }
  #sobre, #abordagem { grid-template-columns: 1fr; }
  .sobre-img-wrap { order: -1; }
  .diferenciais-img { display: none; }
  .area-card { width: 300px; padding: 40px 28px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contato-grid { grid-template-columns: 1fr; }
  .equipe-header { grid-template-columns: 1fr; gap: 20px; }
  .instagram-section { padding: 60px 40px; }
}

@media (max-width: 968px) {
  section { padding: 60px 24px; }
  nav#navbar { padding: 18px 24px; }
  nav#navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-line { left: 20px; }
  .hero-scroll { left: 24px; }
  .hero-oab { display: none; }
  .area-card { width: calc(100vw - 140px); padding: 36px 24px; margin: 0 8px; }
  .areas-nav { width: 40px; height: 40px; font-size: 0.75rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; align-items: center; text-align: center; padding: 40px 24px; }
  .areas-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .instagram-section { padding: 60px 0; max-width: 98vw; width: 98vw;}
  .hero-title {font-size: clamp(2.9rem, 7vw, 6.5rem) !important;}
  .hero-bg {background: url('../imgs/bn-mobile.jpeg') center/cover no-repeat;}
  .team-card img {filter: grayscale(0);}
  .sobre-badge {bottom: -41px; right: -20px; padding: 10px 15px;}
  .sobre-img-wrap img {height: 302px;}
}


.team-more-card{min-height:100%;height:100%;background:#4a0b16;border-radius:18px;color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:40px;cursor:pointer;transition:.4s}.team-more-card:hover{transform:translateY(-8px)}.team-more-icon{font-size:3rem;color:#d4b483;margin-bottom:20px}.team-more-card span{color:#d4b483;font-weight:700}.team-hidden{max-height:0;overflow:hidden;opacity:0;transition:max-height .8s ease,opacity .6s ease}.team-hidden.active{max-height:4000px;opacity:1}