/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #2D1515;
  --navy-dark: #1A0A0A;
  --gold:      #E63946;
  --gold-light:#EF7279;
  --white:     #FFFFFF;
  --gray-50:   #F5F5F5;
  --gray-100:  #EBEBEB;
  --gray-300:  #BDBDBD;
  --gray-500:  #757575;
  --gray-700:  #424242;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(45,21,21,0.10);
  --shadow-lg: 0 8px 40px rgba(45,21,21,0.16);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
section { padding: 80px 0; }

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.tag {
  display: inline-block;
  background: rgba(230,57,70,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; }
h3 { font-size: 1.125rem; font-weight: 700; }
p  { color: var(--gray-500); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230,57,70,0.35);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(230,57,70,0.45); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ─── NAVBAR ─── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 16px 0;
}
.mobile-menu a {
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-50);
}
.mobile-menu .btn { margin: 12px 24px 4px; }

/* ─── HERO ─── */
#hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #5C2020 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}
.hero-tag {
  display: inline-block;
  background: rgba(230,57,70,0.2);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 em { font-style: normal; color: var(--gold); }
.hero-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Dashboard mock */
.dashboard-mock {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 480px;
  backdrop-filter: blur(8px);
}
.mock-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red    { background: #FF5F57; }
.mock-dot.yellow { background: #FEBC2E; }
.mock-dot.green  { background: #28C840; }
.mock-title { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-left: 8px; }
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mock-kpi {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.mock-kpi-label { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.mock-kpi-value { font-size: 1.125rem; font-weight: 700; color: var(--white); }
.mock-kpi-value.gold { color: var(--gold); }
.mock-chart {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}
.mock-chart-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; }
.mock-bar-item { flex: 1; border-radius: 4px 4px 0 0; background: rgba(230,57,70,0.5); }
.mock-bar-item.highlight { background: var(--gold); }
.mock-imovel {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.mock-imovel-icon {
  width: 34px; height: 34px;
  background: rgba(230,57,70,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.mock-imovel-info { flex: 1; }
.mock-imovel-name { font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 600; }
.mock-imovel-sub  { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.mock-badge {
  font-size: 0.65rem; font-weight: 700;
  background: rgba(40,200,64,0.15);
  color: #28C840;
  padding: 3px 8px;
  border-radius: 100px;
}

/* ─── SOCIAL PROOF BAR ─── */
#social-bar {
  background: var(--gray-50);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
}
.social-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.social-bar-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.logo-placeholder { display: flex; align-items: center; gap: 8px; opacity: 0.4; filter: grayscale(1); }
.logo-icon { width: 32px; height: 32px; background: var(--navy); border-radius: 6px; }
.logo-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ─── SHARED SECTION HEADER ─── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header p { font-size: 1rem; margin-top: 12px; }

/* ─── PROBLEMA ─── */
#problema { background: var(--white); }
.problema-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.problema-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--gray-300);
  transition: border-color 0.2s, transform 0.2s;
}
.problema-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.problema-icon {
  width: 44px; height: 44px;
  background: rgba(230,57,70,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.problema-card h3 { font-size: 1rem; margin-bottom: 8px; }
.problema-card p  { font-size: 0.875rem; }
.problema-arrow {
  text-align: center;
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.problema-arrow p { font-size: 1rem; font-weight: 600; color: var(--navy); }
.arrow-down { width: 2px; height: 40px; background: var(--gold); position: relative; }
.arrow-down::after {
  content: '';
  position: absolute;
  bottom: -6px; left: -4px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--gold);
}
.resolved-badge {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 10px 24px;
  border-radius: 100px;
}

/* ─── FEATURES ─── */
#features { background: var(--gray-50); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(45,21,21,0.08), rgba(45,21,21,0.14));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p  { font-size: 0.875rem; }

/* ─── RETROATIVA ─── */
#retroativa {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
#retroativa::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.08), transparent 70%);
  top: -200px; right: -200px;
}
.retro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.retro-content .tag { background: rgba(230,57,70,0.2); color: var(--gold-light); }
.retro-content h2 { color: var(--white); margin-bottom: 20px; }
.retro-content p  { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.retro-points { display: flex; flex-direction: column; gap: 16px; }
.retro-point { display: flex; align-items: flex-start; gap: 14px; }
.retro-point-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(230,57,70,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.retro-point p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.timeline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
}
.timeline-title { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 28px; font-weight: 600; }
.timeline-track {
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(230,57,70,0.2));
}
.timeline-item { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 24px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -17px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--navy);
}
.timeline-dot.past { background: rgba(230,57,70,0.4); }
.timeline-year { font-size: 0.75rem; font-weight: 700; color: var(--gold); min-width: 36px; padding-top: 2px; }
.timeline-valor { font-size: 1rem; font-weight: 700; color: var(--white); }
.timeline-sub   { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

/* ─── PARA QUEM É ─── */
#para-quem { background: var(--white); }
.personas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.persona-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.persona-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.persona-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), #7A2B2B);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.persona-role { font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.persona-card h3 { margin-bottom: 14px; }
.persona-problem {
  background: rgba(230,57,70,0.06);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
}
.persona-problem p { font-size: 0.8125rem; font-style: italic; color: var(--gray-500); }
.persona-solution  { font-size: 0.875rem; color: var(--gray-700); line-height: 1.6; }

/* ─── DEPOIMENTOS ─── */
#depoimentos { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--gold); font-size: 0.875rem; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #7A2B2B);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; color: var(--white);
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: 0.75rem; color: var(--gray-300); }

/* ─── PREÇOS ─── */
#precos { background: var(--white); }
.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border-radius: 100px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 48px;
}
.toggle-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  padding: 6px 18px;
  border-radius: 100px;
  transition: all 0.2s;
  user-select: none;
}
.toggle-label.active { background: var(--navy); color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-price .currency { font-size: 1rem; font-weight: 700; color: var(--navy); }
.plan-price .amount  { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.plan-price .period  { font-size: 0.8rem; color: var(--gray-300); }
.plan-desc    { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 28px; }
.plan-divider { border: none; border-top: 1px solid var(--gray-100); margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-feature { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--gray-700); }
.plan-feature svg { flex-shrink: 0; }
.plan-feature.disabled { color: var(--gray-300); }
.plan-feature.disabled svg { opacity: 0.3; }
.pricing-card .btn { width: 100%; justify-content: center; }
.enterprise-cta {
  margin-top: 48px;
  text-align: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-100);
}
.enterprise-cta h3 { margin-bottom: 8px; }
.enterprise-cta p  { font-size: 0.9rem; margin-bottom: 20px; }

/* ─── FAQ ─── */
#faq { background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--navy);
  cursor: pointer; text-align: left;
}
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; transition: transform 0.25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; padding: 0 24px; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-500); padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── CTA FINAL ─── */
#cta-final {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}
#cta-final h2 { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
#cta-final p  { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 36px; }
.cta-final-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-subtext { margin-top: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ─── FOOTER ─── */
footer { background: var(--navy-dark); padding: 56px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.4); max-width: 200px; line-height: 1.6; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.social-links { display: flex; gap: 14px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-link:hover { background: rgba(230,57,70,0.2); }
.social-link svg { width: 16px; height: 16px; }

/* ─── SOBRE NÓS ─── */
#sobre-nos { background: var(--gray-50); }
.sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.sobre-card { text-align: center; }
.sobre-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #7A2B2B);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 700; color: var(--white);
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  overflow: hidden;
}
.sobre-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.sobre-name { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.sobre-role { font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.sobre-bio  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top         { grid-template-columns: 1fr 1fr; }
  .personas-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  section             { padding: 56px 0; }
  .nav-links, .nav-cta{ display: none; }
  .hamburger          { display: flex; }
  .hero-inner         { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual        { display: none; }
  .retro-inner        { grid-template-columns: 1fr; }
  .footer-top         { grid-template-columns: 1fr 1fr; }
  .footer-bottom      { flex-direction: column; align-items: flex-start; }
  .logos-row          { gap: 20px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-btns  { flex-direction: column; }
  .btn        { width: 100%; justify-content: center; }
}
