/* ══════════════════════════════════════════════════════════
   LEONARDO SCHAYER DIAS — ADVOCACIA PREMIUM
   CSS Principal · Refatorado
   ══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --blue:        #223A5E;
  --blue-dark:   #1A2F4D;
  --blue-deeper: #111E33;
  --blue-mid:    #2C4A78;
  --gold:        #F59E0B;
  --gold-light:  #FBB740;
  --gold-dark:   #D97706;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --text-muted:  #8FA3C0;
  --text-body:   #CBD5E1;
  --border:      rgba(245,158,11,.18);
  --topbar-h:    38px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;

  --radius:   4px;
  --radius-lg: 12px;

  --shadow-sm:   0 2px 12px rgba(0,0,0,.12);
  --shadow-md:   0 8px 32px rgba(0,0,0,.18);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.28);
  --shadow-gold: 0 4px 24px rgba(245,158,11,.3);

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--blue-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; display:block; }
a   { text-decoration:none; color:inherit; transition: color .2s var(--ease); }
ul, ol { list-style: none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

em { font-style: italic; color: var(--gold); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow { max-width: 860px; }

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
}

.section-title.light { color: var(--white); }

.section-desc {
  max-width: 640px;
  margin: 1.5rem auto 0;
  color: #4A6FA5;
  font-size: 1.05rem;
}

.section-desc.light { color: var(--text-body); }

.gold-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto;
}

.gold-line.center { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: var(--blue-deeper);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  transition: transform .25s var(--ease-bounce), box-shadow .25s var(--ease), background .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(245,158,11,.45);
}

.btn-gold:hover::before { opacity: 1; }
.btn-gold:active { transform: translateY(-1px); }

.btn-gold-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-wpp-menu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(.97);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index: 100;
}

.hero-wpp-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.btn-block { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: var(--radius);
  transition: border-color .25s, background .25s, transform .25s var(--ease-bounce);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--blue-dark);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 2px solid var(--blue-dark);
  border-radius: var(--radius);
  transition: border-color .25s, background .25s, color .25s, transform .25s var(--ease-bounce);
}

.btn-outline-dark:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar-strip {
  height: var(--topbar-h);
  background: rgba(8, 14, 28, .72);
  border-bottom: 1px solid rgba(245,158,11,.1);
  overflow: hidden;
  transition: height .4s var(--ease), opacity .4s var(--ease);
  opacity: 1;
}

.header.scrolled .topbar-strip {
  height: 0;
  opacity: 0;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .71rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
  white-space: nowrap;
  transition: color .2s;
}

.topbar-item:hover { color: var(--gold); }

.topbar-item svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

.topbar-social-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .71rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
  white-space: nowrap;
  transition: color .2s;
}

.topbar-social-link:hover { color: var(--gold); }

.topbar-social-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: color .2s;
}

.topbar-social-link:hover svg { color: var(--gold); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: padding .35s var(--ease);
}

.header.scrolled {
  background: rgba(17, 30, 51, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}

.header.scrolled .header-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo img { height: 52px; width: auto; transition: height .3s; }
.header.scrolled .logo img { height: 44px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.8);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  background: var(--gold);
  color: var(--blue-deeper);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--radius);
  transition: background .2s, transform .2s var(--ease-bounce);
}

.btn-header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: flex;
  flex-direction: column;
  background: var(--blue-deeper);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.nav-mobile.open {
  max-height: 600px;
  padding: 1.5rem 0;
}

.nav-link-mobile {
  padding: .85rem clamp(1.25rem, 4vw, 2.5rem);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}

.nav-link-mobile:hover {
  color: var(--gold);
  background: rgba(255,255,255,.03);
}

.btn-mobile-cta {
  margin: 1.25rem clamp(1.25rem, 4vw, 2.5rem) 0;
  padding: 1rem;
  background: var(--gold);
  color: var(--blue-deeper);
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--radius);
  transition: background .2s;
}

.btn-mobile-cta:hover { background: var(--gold-light); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--blue-deeper);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(8rem + var(--topbar-h)) 0 5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(34,58,94,.6) 0%, transparent 70%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(245,158,11,.04) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(245,158,11,.04) 80px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
}

.hero-text { }

.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) .3s forwards;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) .55s forwards;
}

.hero-title em {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-body);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) .8s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.05s forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.3s forwards;
  flex-wrap: nowrap;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-item span {
  font-size: 1.5rem;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.trust-item p {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: .25rem;
}

.trust-divider {
  width: 1px;
  height: 44px;
  background: rgba(245,158,11,.25);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  opacity: 0;
  animation: fadeUp 1.3s var(--ease) .4s forwards;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(245,158,11,.25);
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 40%;
  height: 40%;
  background: var(--gold);
  opacity: .08;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.hero-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-frame--equipe img {
  height: 460px;
  object-position: center 20%;
}

.hero-badge {
  position: absolute;
  bottom: 1.75rem;
  left: -1.5rem;
  z-index: 2;
  background: var(--gold);
  color: var(--blue-deeper);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-gold);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
  animation: none;
}

.hero-badge svg { flex-shrink: 0; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.7s forwards;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 3.8s ease-in-out infinite;
}

/* ══════════════════════════════════════
   CREDIBILITY BAR
══════════════════════════════════════ */
.credibility-bar {
  background: var(--blue);
  padding: 1.5rem 0;
  overflow: hidden;
}

.cred-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.cred-item svg { color: var(--gold); flex-shrink: 0; }

.cred-sep {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.2);
}

/* ══════════════════════════════════════
   SOBRE
══════════════════════════════════════ */
.section-sobre { background: var(--off-white); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}

.sobre-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: .3;
  z-index: 0;
}

.sobre-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.sobre-img-wrap--equipe img {
  object-position: center 20%;
}

.sobre-exp-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  z-index: 2;
  background: var(--blue-dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 130px;
}

.sobre-exp-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.sobre-exp-badge sup {
  font-size: 1.5rem;
  color: var(--gold-light);
  vertical-align: super;
}

.sobre-exp-badge span {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: .4rem;
  line-height: 1.4;
}

.sobre-text-col { }

.sobre-cargo {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-mid);
  margin: .5rem 0 1.5rem;
}

.gold-line { margin-bottom: 2rem; }

.sobre-desc {
  font-size: 1.05rem;
  color: #3D5A80;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.credenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.credencial {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1px solid rgba(34,58,94,.1);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-dark);
  transition: border-color .2s, box-shadow .2s;
}

.credencial:hover {
  border-color: rgba(245,158,11,.4);
  box-shadow: var(--shadow-sm);
}

.cred-icon {
  width: 32px;
  height: 32px;
  background: rgba(34,58,94,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.sobre-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blue-mid);
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   ÁREAS
══════════════════════════════════════ */
.section-areas { }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.area-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: background .3s, border-color .3s, transform .35s var(--ease-bounce), box-shadow .3s;
  cursor: pointer;
}

.area-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,158,11,.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.area-card-cta {
  background: linear-gradient(135deg, rgba(245,158,11,.12), rgba(245,158,11,.06));
  border-color: rgba(245,158,11,.25);
}

.area-card-cta:hover {
  background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(245,158,11,.1));
  border-color: rgba(245,158,11,.6);
}

.area-icon {
  width: 56px;
  height: 56px;
  background: rgba(245,158,11,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s, transform .3s var(--ease-bounce);
}

.area-card:hover .area-icon {
  background: rgba(245,158,11,.22);
  transform: scale(1.08);
}

.area-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.area-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: .75rem;
}

.area-card p {
  color: var(--text-body);
  font-size: .9rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.area-arrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  transition: gap .3s var(--ease-bounce);
  margin-top: auto;
}

.area-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform .3s var(--ease-bounce);
}

.area-card:hover .area-arrow { gap: .75rem; }
.area-card:hover .area-arrow svg { transform: translateX(4px); }

/* ══════════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════════ */
.section-diferenciais { background: var(--off-white); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.diferencial {
  background: var(--white);
  border: 1px solid rgba(34,58,94,.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .35s var(--ease-bounce), box-shadow .3s, border-color .3s;
}

.diferencial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,158,11,.4);
}

.dif-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(34,58,94,.06);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.dif-icon {
  width: 52px;
  height: 52px;
  background: rgba(34,58,94,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s;
}

.diferencial:hover .dif-icon { background: rgba(245,158,11,.15); }

.dif-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  transition: color .3s;
}

.diferencial:hover .dif-icon svg { color: var(--gold-dark); }

.diferencial h4 {
  color: var(--blue-dark);
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.diferencial p {
  font-size: .9rem;
  color: #4A6FA5;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   DEPOIMENTOS
══════════════════════════════════════ */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimento {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: background .3s, border-color .3s, transform .35s var(--ease-bounce);
}

.depoimento::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(245,158,11,.15);
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.depoimento:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,158,11,.3);
  transform: translateY(-4px);
}

.dep-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.dep-texto {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.dep-autor {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dep-avatar {
  width: 46px;
  height: 46px;
  background: var(--blue-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  border: 2px solid rgba(245,158,11,.3);
}

.dep-autor strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
}

.dep-autor span {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.section-faq { background: var(--white); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1px solid rgba(34,58,94,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.faq-item.open {
  border-color: rgba(245,158,11,.4);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background .2s;
}

.faq-trigger:hover { background: rgba(34,58,94,.03); }
.faq-item.open .faq-trigger { background: rgba(34,58,94,.03); }

.faq-trigger span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.5;
  transition: color .25s;
}

.faq-item.open .faq-trigger span { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(34,58,94,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, transform .35s var(--ease-bounce);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  transition: color .25s;
}

.faq-item.open .faq-icon svg { color: var(--blue-deeper); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), padding .45s var(--ease);
}

.faq-body.open {
  max-height: 500px;
  padding-bottom: 1.75rem;
}

.faq-body p {
  padding: 0 2rem;
  font-size: .95rem;
  color: #4A6FA5;
  line-height: 1.85;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(245,158,11,.03) 31px, rgba(245,158,11,.03) 32px);
}

.cta-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: .75rem;
}

.cta-banner-text p {
  color: var(--text-body);
  font-size: 1rem;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   CONTATO
══════════════════════════════════════ */
.section-contato { background: var(--off-white); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.contato-info h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.contato-info > p {
  color: #4A6FA5;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(34,58,94,.1);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .25s var(--ease-bounce);
}

.contato-item:hover {
  border-color: rgba(245,158,11,.4);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contato-icon {
  width: 44px;
  height: 44px;
  background: rgba(34,58,94,.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s;
}

.contato-item:hover .contato-icon { background: rgba(245,158,11,.12); }

.contato-icon svg { width: 22px; height: 22px; color: var(--blue); }

.contato-detail strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: .2rem;
}

.contato-detail span,
.contato-detail a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue-dark);
  transition: color .2s;
}

.contato-detail a:hover { color: var(--gold-dark); }

.horario-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.horario-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,158,11,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.horario-icon svg { width: 20px; height: 20px; color: var(--gold); }

.horario-box strong {
  display: block;
  color: var(--gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}

.horario-box p { font-size: .9rem; color: var(--text-body); line-height: 1.7; }

/* Form */
.form-premium {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row { margin-bottom: 1.25rem; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-mid);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1.5px solid rgba(34,58,94,.18);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--blue-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94A3B8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34,58,94,.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #E55353;
  box-shadow: 0 0 0 3px rgba(229,83,83,.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-msg {
  padding: 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: none;
}

.form-msg.error {
  display: block;
  background: rgba(229,83,83,.1);
  color: #C0392B;
  border: 1px solid rgba(229,83,83,.3);
}

.form-msg.success {
  display: block;
  background: rgba(39,174,96,.1);
  color: #1A7A4C;
  border: 1px solid rgba(39,174,96,.3);
}

/* Google Maps embed */
.mapa-embed {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(34,58,94,.12);
  line-height: 0;
}

.mapa-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-top {
  background: var(--blue-deeper);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand img { margin-bottom: 1.25rem; }

.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-deeper);
  transform: translateY(-3px);
}

.footer-social a svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col nav a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .2s, padding-left .2s;
  display: inline-flex;
  align-items: center;
}

.footer-col nav a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-right: 0;
  transition: width .2s, margin-right .2s;
}

.footer-col nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-col nav a:hover::before {
  width: 8px;
  margin-right: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: color .2s;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  background: var(--blue-deeper);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}

.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wpp-float-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}

.wpp-menu {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.97);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.wpp-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wpp-menu-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .25rem .5rem .5rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: .15rem;
}

.wpp-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .75rem;
  border-radius: 9px;
  transition: background .2s;
  text-decoration: none;
}

.wpp-menu-item:hover { background: rgba(37,211,102,.1); }

.wpp-menu-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.wpp-menu-num {
  font-size: .78rem;
  color: #25D366;
  font-weight: 500;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  flex-shrink: 0;
}

.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.5);
}

.wpp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  box-shadow: var(--shadow-sm);
}

.wpp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--blue-dark);
}

.whatsapp-float:hover .wpp-tooltip { opacity: 1; }
.whatsapp-float[aria-expanded="true"] .wpp-tooltip { opacity: 0; }

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(22px); }
  to   { opacity:1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-5px); }
}


@keyframes scrollDown {
  0%   { opacity: 0; transform: scaleY(0);   transform-origin: top;    }
  25%  { opacity: 1; transform: scaleY(1);   transform-origin: top;    }
  65%  { opacity: 1; transform: scaleY(1);   transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0);   transform-origin: bottom; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  /* Hide address in topbar on medium screens, keep email + social */
  .topbar-item:first-child { display: none; }
}

@media (max-width: 900px) {
  .topbar-strip { display: none; }
  :root { --topbar-h: 0px; }

  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: calc(4rem + var(--topbar-h)) 0 4rem;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-wrap { order: -1; }
  .hero-image-frame img { height: 380px; }
  .hero-badge {
    left: 50%;
    bottom: -1.5rem;
    transform: translateX(-50%);
  }
  .hero-text { padding-top: 2rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-img-wrap img { height: 420px; }
  .sobre-exp-badge { right: 1rem; }

  .depoimentos-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }

  .areas-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .credenciais-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cred-sep { display: none; }
  .cred-inner { flex-direction: column; gap: 1rem; }
  .hero-trust { gap: 1rem; }
  .trust-divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ══════════════════════════════════════
   SEÇÃO NOSSA EQUIPE
══════════════════════════════════════ */
.section-equipe {
  background: var(--blue-deeper);
  padding-top: 0;
}

/* ── Banner foto trio ────────────────── */
.equipe-banner {
  position: relative;
  height: clamp(380px, 55vw, 600px);
  overflow: hidden;
}

.equipe-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.equipe-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,30,51,.55) 0%,
    rgba(17,30,51,.30) 35%,
    rgba(17,30,51,.65) 65%,
    rgba(17,30,51,.97) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
}

.equipe-banner-content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.equipe-banner-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: .65rem;
}

.equipe-banner-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.equipe-banner-tagline em {
  color: var(--gold);
  font-style: italic;
}

.equipe-banner-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.eb-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.eb-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.eb-stat span {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.eb-divider {
  width: 1px;
  height: 36px;
  background: rgba(245,158,11,.35);
  flex-shrink: 0;
}

/* ── Cards individuais ───────────────── */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 1rem;
}

/* Card FEATURED — Dr. Marco Antônio (destaque dourado) */
.equipe-card--featured {
  border-color: rgba(245,158,11,.4);
  background: rgba(245,158,11,.04);
}

/* Card base */
.equipe-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(245,158,11,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}

.equipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,.45);
  border-color: rgba(245,158,11,.4);
}

.equipe-photo-wrap {
  position: relative;
  height: clamp(220px, 28vw, 320px);
  overflow: hidden;
}

.equipe-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s var(--ease);
}

.equipe-card:hover .equipe-photo-wrap img { transform: scale(1.04); }

.equipe-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--blue-deeper) 100%);
}

.equipe-info {
  padding: clamp(1.1rem, 2vw, 1.6rem) clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: .95rem;
  flex: 1;
}

/* Badge "Sócio Fundador" */
.equipe-badge-socio {
  display: inline-flex;
  align-items: center;
  padding: .22rem .7rem;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.32);
  border-radius: 2rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
}

.equipe-header h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--white);
  margin-bottom: .55rem;
  line-height: 1.25;
}

.equipe-header .gold-line {
  width: 40px;
  height: 2px;
  margin: 0 0 .55rem;
}

.equipe-cargo {
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--gold);
  line-height: 1.5;
}

/* Títulos académicos */
.equipe-titulos {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .5rem;
}

.equipe-titulos span {
  padding: .18rem .6rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}

.equipe-destaques {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.equipe-destaques li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-body);
  line-height: 1.55;
}

.equipe-destaques li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .22rem;
}

.equipe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(245,158,11,.12);
}

.equipe-tags span {
  display: inline-block;
  padding: .24rem .62rem;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 2rem;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* Telefone Marco Antônio (sem botão) */
.equipe-contato-info {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-body);
  padding-top: .25rem;
}

.equipe-contato-info svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gold);
}

/* Botão WhatsApp (Leonardo e Bernardo) */
.equipe-btn-contato {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.4rem;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.38);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: background .25s, border-color .25s, color .25s, transform .2s var(--ease-bounce);
  margin-top: auto;
}

.equipe-btn-contato svg { width: 16px; height: 16px; flex-shrink: 0; }

.equipe-btn-contato:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-deeper);
  transform: translateY(-2px);
}

/* ── Responsivo ──────────────────────── */
@media (max-width: 1024px) {
  .equipe-grid { grid-template-columns: repeat(3, 1fr); }
  .equipe-photo-wrap { height: clamp(180px, 22vw, 280px); }
}

@media (max-width: 768px) {
  .equipe-grid { grid-template-columns: 1fr; }
  .equipe-photo-wrap { height: 260px; }
  .equipe-banner { height: 420px; }
}

@media (max-width: 540px) {
  .equipe-banner { height: 360px; }
  .equipe-photo-wrap { height: 220px; }
  .equipe-info { gap: .85rem; }
  .eb-divider { display: none; }
  .equipe-banner-stats { gap: 1rem; }
}
