/* =============================================
   JORDÃO & RIBEIRO — Landing Page
   ============================================= */

:root {
  --navy:       #1B3764;
  --navy-dark:  #112244;
  --navy-light: #2A5298;
  --gold:       #C9932A;
  --gold-light: #E8B84B;
  --gold-dark:  #A87720;
  --wa:         #25D366;
  --wa-dark:    #128C7E;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FA;
  --gray-100:   #F0F2F5;
  --gray-200:   #E2E8F0;
  --gray-500:   #94A3B8;
  --gray-600:   #64748B;
  --gray-700:   #374151;
  --gray-800:   #1E293B;
  --black:      #0F172A;

  --ff-head: 'Merriweather', Georgia, serif;
  --ff-body: 'Lato', system-ui, -apple-system, sans-serif;

  --sh-sm: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --sh-md: 0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
  --sh-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --sh-xl: 0 20px 40px rgba(0,0,0,.15);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  --t: .3s ease;
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); color: var(--gray-800); line-height: 1.6; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--r-full);
  font-weight: 700; font-size: 1rem; transition: all var(--t);
  white-space: nowrap;
}
.btn-whatsapp {
  background: var(--wa); color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 14px rgba(201,147,42,.4);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Badges ── */
.badge {
  display: inline-block;
  background: rgba(27,55,100,.1); color: var(--navy);
  padding: .35rem 1rem; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .875rem;
}
.badge-gold { background: rgba(201,147,42,.12); color: var(--gold-dark); }
.badge-gold-inv { background: rgba(255,255,255,.15); color: var(--white); }

/* ── Section Header ── */
.section-hd { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-hd h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy); margin-bottom: .875rem; line-height: 1.3;
}
.section-hd p { color: var(--gray-600); font-size: 1.05rem; }
.section-hd--light h2 { color: var(--white); }
.section-hd--light p { color: rgba(255,255,255,.8); }

/* ── Floating Buttons ── */
.float-call {
  position: fixed; bottom: 9.25rem; right: 1.5rem; z-index: 1000;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; gap: .5rem;
  padding: .875rem 1.25rem; border-radius: var(--r-full);
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 4px 20px rgba(27,55,100,.45);
  transition: all var(--t);
}
.float-call:hover { background: var(--navy-dark); transform: scale(1.05); }
.float-call svg { width: 20px; height: 20px; }

.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 1000;
  background: var(--wa); color: var(--white);
  display: flex; align-items: center; gap: .5rem;
  padding: .875rem 1.25rem; border-radius: var(--r-full);
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all var(--t);
}
.whatsapp-float:hover { background: var(--wa-dark); transform: scale(1.05); }
.whatsapp-float svg { width: 22px; height: 22px; }

/* ── Mobile CTA Bar ── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: .75rem 1rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,.1);
}
.mobile-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .7rem .5rem; border-radius: var(--r-md);
  font-weight: 700; font-size: .9rem;
}
.mobile-cta-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta-call { background: var(--navy); color: var(--white); margin-right: .5rem; }
.mobile-cta-whatsapp { background: var(--wa); color: var(--white); }

/* ── Header ── */
.header { position: sticky; top: 0; z-index: 900; background: var(--white); box-shadow: var(--sh-sm); }

.header-top { background: var(--navy); padding: .5rem 0; }
.header-top-inner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.header-contact-item {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.8); font-size: .82rem;
}
.header-contact-item a { color: rgba(255,255,255,.8); transition: color var(--t); }
.header-contact-item a:hover { color: var(--white); }
.header-contact-item svg { flex-shrink: 0; }
.header-whatsapp-btn {
  margin-left: auto; display: flex; align-items: center; gap: .4rem;
  background: var(--wa); color: var(--white); padding: .3rem .9rem;
  border-radius: var(--r-full); font-size: .82rem; font-weight: 700;
  transition: background var(--t);
}
.header-whatsapp-btn:hover { background: var(--wa-dark); }

.header-main { padding: .875rem 0; }
.header-main-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo { height: 52px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a {
  font-size: .92rem; font-weight: 600; color: var(--gray-800);
  transition: color var(--t); position: relative; padding-bottom: 2px;
}
.nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--t);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }
.nav .nav-cta {
  background: var(--navy); color: var(--white);
  padding: .55rem 1.1rem; border-radius: var(--r-full); font-size: .875rem;
}
.nav .nav-cta:hover { background: var(--navy-dark); color: var(--white); }
.nav .nav-cta::after { display: none; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--t); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #EEF2F8 0%, #E8EDF6 50%, #F5EFE5 100%);
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,147,42,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--navy); line-height: 1.25; margin-bottom: 1.25rem; font-weight: 900;
}
.hero-desc { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.75; }
.hero-desc strong { color: var(--navy); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-note { font-size: .85rem; color: var(--gray-600); }
.hero-note strong { color: var(--wa-dark); }

.hero-img-wrap {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-xl);
}
.hero-img-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center;
}
.hero-badge-float {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--navy); color: var(--white);
  padding: .875rem 1.25rem; border-radius: var(--r-md);
  display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--sh-lg);
}
.badge-num { font-size: 1.75rem; font-weight: 900; font-family: var(--ff-head); color: var(--gold-light); line-height: 1; }
.badge-txt { font-size: .78rem; font-weight: 600; line-height: 1.35; color: rgba(255,255,255,.9); }

/* ── Stats Bar ── */
.stats-bar { background: var(--navy); padding: 2.5rem 0; }
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-n {
  display: block; font-size: 2rem; font-weight: 900;
  font-family: var(--ff-head); color: var(--gold-light);
  line-height: 1; margin-bottom: .25rem;
}
.stat-l { font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 500; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ── Services ── */
.services { padding: 5rem 0; background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
}
.svc-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 2rem; box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--t), box-shadow var(--t);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.svc-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a3a6b 0%, #1e4d99 100%);
  border: 2px solid var(--gold);
}
.svc-featured:hover { transform: translateY(-3px); }
.svc-card.svc-featured h3 { color: #ffffff; font-size: 1.3rem; }
.svc-card.svc-featured p { color: rgba(255,255,255,.92); }
.svc-featured .svc-list li { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.15); }
.svc-featured .svc-list li::before { background: var(--gold-light); }
.svc-featured .svc-link { color: var(--gold-light); font-size: 1rem; }
.svc-featured .svc-icon { background: rgba(255,255,255,.15); }
.svc-featured .svc-icon svg { color: var(--gold-light); }

.svc-icon {
  width: 50px; height: 50px; border-radius: var(--r-md);
  background: rgba(27,55,100,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-icon svg { width: 24px; height: 24px; color: var(--navy); }

.svc-card h3 { font-family: var(--ff-head); font-size: 1.2rem; color: var(--navy); margin-bottom: .75rem; }
.svc-card p { color: var(--gray-600); font-size: .925rem; margin-bottom: 1rem; line-height: 1.6; }

.svc-list { margin-bottom: 1.5rem; }
.svc-list li {
  padding: .4rem 0; font-size: .875rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: .5rem;
}
.svc-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.svc-link { display: inline-block; color: var(--gold-dark); font-weight: 700; font-size: .925rem; transition: color var(--t); }
.svc-link:hover { color: var(--gold); }

/* ── Aposentadoria Section ── */
.apo-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0;
}
.apo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem;
}
.apo-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 1.75rem;
  transition: background var(--t), transform var(--t);
}
.apo-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.apo-icon {
  width: 50px; height: 50px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); border-radius: 10px;
}
.apo-icon svg { width: 28px; height: 28px; color: var(--gold-light); }
.apo-card h3 { font-family: var(--ff-head); font-size: 1rem; color: var(--gold-light); margin-bottom: .625rem; }
.apo-card p { color: rgba(255,255,255,.78); font-size: .875rem; line-height: 1.65; }
.apo-card strong { color: var(--white); }

.apo-cta-box {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg); padding: 2.5rem; text-align: center;
}
.apo-cta-box h3 { font-family: var(--ff-head); font-size: 1.5rem; color: var(--white); margin-bottom: .75rem; }
.apo-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; font-size: 1rem; }

/* ── How It Works ── */
.how-it-works { padding: 5rem 0; background: var(--white); }
.steps-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.step { flex: 1; min-width: 200px; max-width: 280px; text-align: center; padding: 2rem 1.25rem; }
.step-n { font-size: 3rem; font-weight: 900; font-family: var(--ff-head); color: rgba(27,55,100,.1); line-height: 1; margin-bottom: .5rem; }
.step h3 { font-family: var(--ff-head); font-size: 1.05rem; color: var(--navy); margin-bottom: .75rem; }
.step p { color: var(--gray-600); font-size: .9rem; line-height: 1.65; }
.step p strong { color: var(--navy); }
.step-arrow { font-size: 1.75rem; color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* ── About ── */
.about { padding: 5rem 0; background: var(--gray-50); }
.about-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.about-img-box {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; background: var(--white);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
}
.about-img-box img { max-width: 240px; width: 100%; }

.about-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: var(--navy); margin-bottom: 1.25rem; line-height: 1.35;
}
.about-text p { color: var(--gray-600); margin-bottom: .875rem; line-height: 1.75; }
.about-text strong { color: var(--navy); }

.about-vals { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.val { display: flex; gap: 1rem; align-items: flex-start; }
.val-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(27,55,100,.08); border-radius: 10px;
}
.val-ico svg { width: 22px; height: 22px; color: var(--navy); }
.val strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: .25rem; }
.val p { font-size: .875rem; color: var(--gray-600); margin: 0; }

.val-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .35rem; }
.val-chip {
  font-size: .78rem; font-weight: 700;
  color: var(--navy); background: rgba(27,55,100,.08);
  border: 1px solid rgba(27,55,100,.15);
  padding: .25rem .7rem; border-radius: var(--r-full);
  letter-spacing: .02em;
}

/* ── Team ── */
.team { padding: 5rem 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--sh-md);
  border: 1px solid var(--gray-200);
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }
.team-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--gray-100); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 1.25rem; }
.team-info h3 { font-family: var(--ff-head); font-size: .95rem; color: var(--navy); margin-bottom: .25rem; line-height: 1.3; }
.team-role { display: block; font-size: .75rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .625rem; }
.team-info p { font-size: .85rem; color: var(--gray-600); line-height: 1.55; }

/* ── FAQ ── */
.faq { padding: 5rem 0; background: var(--gray-50); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border-radius: var(--r-md); border: 1px solid var(--gray-200); overflow: hidden; }
.faq-q {
  width: 100%; padding: 1.25rem 1.5rem; text-align: left;
  font-size: .975rem; font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background var(--t); line-height: 1.4;
}
.faq-q:hover { background: var(--gray-50); }
.faq-ico { font-size: 1.4rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform var(--t); }
.faq-q[aria-expanded="true"] .faq-ico { transform: rotate(45deg); }
.faq-a { display: none; }
.faq-a p { padding: 0 1.5rem 1.5rem; color: var(--gray-600); font-size: .925rem; line-height: 1.75; }
.faq-a p strong { color: var(--navy); }
.faq-item.open .faq-a { display: block; animation: fadeDown .25s ease; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Google Badge (hero) ── */
.google-badge {
  display: inline-flex; align-items: center; gap: .625rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-full); padding: .5rem 1rem;
  box-shadow: var(--sh-sm); margin-top: 1.25rem;
}
.gb-stars { color: #FBBC04; font-size: .95rem; letter-spacing: 1px; }
.gb-text { font-size: .85rem; color: var(--gray-700); }
.gb-text strong { color: var(--gray-800); }

/* ── Contact ── */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.contact-hd {
  text-align: center; max-width: 680px; margin: 0 auto 3rem;
}
.contact-hd h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white); margin-bottom: 1rem; line-height: 1.3;
}
.contact-hd p { color: rgba(255,255,255,.8); line-height: 1.75; }

.contact-main-btns {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3rem;
}

.btn-xl { padding: 1.1rem 2.25rem; font-size: 1.1rem; }

.btn-call-xl {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1.1rem 2.25rem; border-radius: var(--r-full);
  font-weight: 700; font-size: 1.1rem;
  background: rgba(255,255,255,.15); color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  transition: all var(--t); white-space: nowrap;
}
.btn-call-xl:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.btn-call-xl svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-cards {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; max-width: 900px; margin: 0 auto;
}
.cc-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .5rem;
  padding: 1.5rem 1.25rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); color: var(--white);
  transition: background var(--t); flex: 1; min-width: 150px; max-width: 200px;
}
.cc-item:hover { background: rgba(255,255,255,.13); }

.c-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); border-radius: 12px;
}
.c-ico svg { width: 22px; height: 22px; color: var(--gold-light); }
.c-label { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; }
.c-val { font-size: .875rem; font-weight: 600; color: var(--white); overflow-wrap: break-word; word-break: break-word; max-width: 100%; }

/* ── Footer ── */
.footer { background: var(--black); color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { height: 50px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-wa {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); transition: background var(--t);
}
.footer-wa:hover { background: var(--wa); }
.footer-wa svg { width: 18px; height: 18px; color: var(--white); }

.footer-contact-link { display: flex; align-items: center; gap: .45rem; }
.footer-contact-link svg { color: var(--gold-light); flex-shrink: 0; }

.footer h4 { font-family: var(--ff-head); font-size: .95rem; color: var(--white); margin-bottom: 1.1rem; }
.footer ul { display: flex; flex-direction: column; gap: .55rem; }
.footer ul li, .footer ul a { font-size: .85rem; transition: color var(--t); }
.footer ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .78rem; }
.footer-credit { color: rgba(255,255,255,.35); transition: color var(--t); }
.footer-credit:hover { color: rgba(255,255,255,.65); }

/* ── Reveal Animation ── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .svc-featured { grid-column: 1 / -1; }
  .apo-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  .header-top { display: none; }

  .menu-toggle { display: flex; }

  .nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 300px; height: 100vh;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 5rem 1.75rem 2rem; box-shadow: var(--sh-xl);
    transition: right var(--t); z-index: 999; gap: 0;
  }
  .nav.open { right: 0; }
  .nav a {
    width: 100%; padding: .875rem 0;
    border-bottom: 1px solid var(--gray-200); font-size: .975rem;
  }
  .nav .nav-cta {
    margin-top: 1rem; width: 100%; text-align: center;
    border-radius: var(--r-md); padding: .875rem;
  }

  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5);
    z-index: 998; display: none;
  }
  .nav-overlay.show { display: block; }

  /* Hero */
  .hero { padding: 2.5rem 0 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { max-width: 280px; margin: 0 auto; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stat-sep { display: none; }
  .stats-inner { gap: 1.5rem 2rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Apo */
  .apo-grid { grid-template-columns: 1fr; }
  .apo-cta-box { padding: 1.75rem 1.25rem; }

  /* Steps */
  .steps-wrap { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-img-side { display: none; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-main-btns { flex-direction: column; align-items: center; }
  .btn-xl, .btn-call-xl { width: 100%; max-width: 360px; justify-content: center; }
  .contact-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .cc-item { min-width: unset; max-width: unset; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile CTA Bar */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }

  /* Floating buttons - hidden on mobile (barra inferior substitui) */
  .whatsapp-float { display: none; }
  .float-call { display: none; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cc-item { padding: 1.1rem .875rem; font-size: .85rem; }
  .section-hd h2 { font-size: 1.45rem; }
}
