/* ============================================================================
   Base Consultoria — Homepage v2
   Visual identity: vinho (#ac2124), preto/cinza, branco. Tipografia: Plus
   Jakarta Sans (títulos) + Inter (corpo). Estilo financeiro premium e moderno.
   Todos os seletores são prefixados com .hp- para não conflitar com main.css.
   ========================================================================== */

:root {
  --hp-wine:        #ac2124;
  --hp-wine-dark:   #7a1518;
  --hp-wine-soft:   #f5e3e4;
  --hp-ink:         #0d0d10;
  --hp-ink-soft:    #1f1f24;
  --hp-mute:        #6b6b75;
  --hp-line:        #e7e7eb;
  --hp-bg:          #fafafa;
  --hp-bg-alt:      #f3f3f5;
  --hp-bg-deep:     #0d0d10;
  --hp-white:       #ffffff;

  --hp-radius-sm:   12px;
  --hp-radius:      18px;
  --hp-radius-lg:   28px;

  --hp-shadow-xs:   0 1px 2px rgba(13,13,16,.04), 0 1px 3px rgba(13,13,16,.04);
  --hp-shadow-sm:   0 4px 14px rgba(13,13,16,.06), 0 2px 4px rgba(13,13,16,.04);
  --hp-shadow-md:   0 12px 32px rgba(13,13,16,.10), 0 4px 8px rgba(13,13,16,.06);
  --hp-shadow-lg:   0 24px 48px rgba(13,13,16,.14), 0 8px 16px rgba(13,13,16,.08);
  --hp-shadow-wine: 0 16px 40px rgba(172,33,36,.30);

  --hp-font-sans:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --hp-font-display:'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --hp-easing:      cubic-bezier(.2,.65,.25,1);
}

/* Aplica a tipografia premium apenas na home pública (body.index-page) */
body.index-page {
  font-family: var(--hp-font-sans);
  color: var(--hp-ink);
  background: var(--hp-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.index-page h1, body.index-page h2, body.index-page h3,
body.index-page h4, body.index-page h5, body.index-page h6,
body.index-page .hp-display {
  font-family: var(--hp-font-display);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--hp-ink);
}

/* ─── Header da homepage (override leve do main.css) ───────────────────────── */
body.index-page .header {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(13,13,16,.06);
  transition: background .3s var(--hp-easing), box-shadow .3s var(--hp-easing);
}
body.index-page .header.hp-header-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: var(--hp-shadow-sm);
}
body.index-page .header .logo img { max-height: 44px; }
body.index-page .navmenu a {
  font-family: var(--hp-font-sans);
  font-weight: 500;
  letter-spacing: .01em;
}
body.index-page .btn-getstarted,
body.index-page a.btn-getstarted {
  background: var(--hp-ink);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-family: var(--hp-font-sans);
  border: none;
  transition: transform .25s var(--hp-easing), background .25s var(--hp-easing), box-shadow .25s var(--hp-easing);
}
body.index-page .btn-getstarted:hover {
  background: var(--hp-wine);
  transform: translateY(-1px);
  box-shadow: var(--hp-shadow-wine);
}

/* ─── Container & helpers ──────────────────────────────────────────────────── */
.hp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hp-container-tight { max-width: 980px; margin: 0 auto; padding: 0 24px; }

.hp-section { padding: 64px 0; position: relative; }
.hp-section--alt { background: var(--hp-bg-alt); }
.hp-section--deep { background: var(--hp-bg-deep); color: #fff; }
.hp-section--deep h1, .hp-section--deep h2, .hp-section--deep h3 { color: #fff; }

.hp-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--hp-font-sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hp-wine);
  background: var(--hp-wine-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hp-section--deep .hp-kicker {
  background: rgba(172,33,36,.18);
  color: #f6c8c9;
}
.hp-kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: .9;
}

.hp-title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.15;
}
.hp-lead {
  font-size: 1.05rem;
  color: var(--hp-mute);
  max-width: 680px;
  line-height: 1.65;
  margin: 0;
}
.hp-section-head { margin-bottom: 36px; max-width: 720px; }
.hp-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── Botões ───────────────────────────────────────────────────────────────── */
.hp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--hp-font-sans);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .25s var(--hp-easing), background .25s var(--hp-easing),
              color .25s var(--hp-easing), box-shadow .25s var(--hp-easing),
              border-color .25s var(--hp-easing);
  cursor: pointer;
}
.hp-btn i { font-size: 1.05em; }
.hp-btn:hover { transform: translateY(-2px); }
.hp-btn--primary {
  background: var(--hp-wine); color: #fff;
  box-shadow: var(--hp-shadow-wine);
}
.hp-btn--primary:hover {
  background: var(--hp-wine-dark); color: #fff;
  box-shadow: 0 20px 48px rgba(172,33,36,.40);
}
.hp-btn--ghost {
  background: transparent; color: var(--hp-ink);
  border-color: rgba(13,13,16,.18);
}
.hp-btn--ghost:hover {
  background: var(--hp-ink); color: #fff; border-color: var(--hp-ink);
}
.hp-btn--dark {
  background: var(--hp-ink); color: #fff;
}
.hp-btn--dark:hover { background: var(--hp-wine); color: #fff; }
.hp-btn--white {
  background: #fff; color: var(--hp-ink);
}
.hp-btn--white:hover { background: var(--hp-wine); color: #fff; }
.hp-btn--ghost-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.30);
}
.hp-btn--ghost-light:hover { background: #fff; color: var(--hp-ink); border-color: #fff; }

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  padding: 40px 0 56px;
  background:
    radial-gradient(1200px 600px at 100% 0%, rgba(172,33,36,.10), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(13,13,16,.05), transparent 70%),
    linear-gradient(180deg, #fff 0%, #fafafa 100%);
  overflow: hidden;
}
.hp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,13,16,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,13,16,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hp-hero-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 18px 0 20px;
  max-width: 620px;
}
.hp-hero-title em {
  font-style: normal;
  color: var(--hp-wine);
  position: relative;
  display: inline-block;
  background-image: linear-gradient(180deg, transparent 65%, rgba(172,33,36,.14) 65%, rgba(172,33,36,.14) 92%, transparent 92%);
  background-repeat: no-repeat;
  padding: 0 .08em;
}
.hp-hero-subtitle {
  font-size: 1.15rem;
  color: var(--hp-ink-soft);
  font-weight: 500;
  margin: 0 0 14px;
  max-width: 580px;
}
.hp-hero-desc {
  font-size: 1rem;
  color: var(--hp-mute);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 32px;
}
.hp-hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hp-hero-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hp-line);
  text-align: center;
}
.hp-hero-stamp {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1 1 auto;
  min-width: 130px;
}
.hp-hero-stamp strong {
  font-family: var(--hp-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hp-ink);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.hp-hero-stamp span {
  font-size: .82rem;
  color: var(--hp-mute);
  letter-spacing: .02em;
}

/* Visual à direita do hero — composição de cards mockup */
.hp-hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-hero-visual::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(172,33,36,.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hp-hv-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow-md);
  padding: 18px 20px;
  z-index: 2;
}
.hp-hv-card__main {
  position: relative;
  width: 320px;
  z-index: 1;
}
.hp-hv-card__main h4 {
  font-size: .85rem; color: var(--hp-mute); margin: 0 0 4px;
  font-weight: 500; text-transform: uppercase; letter-spacing: .08em;
}
.hp-hv-card__main .value {
  font-family: var(--hp-font-display);
  font-size: 2rem; font-weight: 800; color: var(--hp-ink);
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.hp-hv-card__main .delta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .8rem; font-weight: 600;
  color: #1a8754; background: #e6f4ec; padding: 3px 10px; border-radius: 999px;
  margin-bottom: 16px;
}
.hp-hv-bars {
  display: flex; gap: 8px; align-items: flex-end; height: 80px; margin-top: 12px;
}
.hp-hv-bars span {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--hp-wine) 0%, rgba(172,33,36,.2) 100%);
  transform-origin: bottom;
  animation: hp-bar-rise 1.4s var(--hp-easing) both;
}
.hp-hv-bars span:nth-child(1) { height: 35%; animation-delay: .1s; }
.hp-hv-bars span:nth-child(2) { height: 55%; animation-delay: .2s; }
.hp-hv-bars span:nth-child(3) { height: 42%; animation-delay: .3s; }
.hp-hv-bars span:nth-child(4) { height: 70%; animation-delay: .4s; }
.hp-hv-bars span:nth-child(5) { height: 60%; animation-delay: .5s; }
.hp-hv-bars span:nth-child(6) { height: 85%; animation-delay: .6s; }
.hp-hv-bars span:nth-child(7) { height: 75%; animation-delay: .7s; }
@keyframes hp-bar-rise { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

.hp-hv-card__pill {
  top: 32px; right: -8px;
  width: 240px;
  display: flex; align-items: center; gap: 12px;
  animation: hp-float 4s ease-in-out infinite;
}
.hp-hv-card__pill .icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hp-wine-soft); color: var(--hp-wine);
  font-size: 1.2rem;
}
.hp-hv-card__pill .info { flex: 1; }
.hp-hv-card__pill .info strong { display: block; font-size: .9rem; color: var(--hp-ink); }
.hp-hv-card__pill .info span { font-size: .75rem; color: var(--hp-mute); }
.hp-hv-card__check {
  bottom: 36px; left: -16px;
  width: 220px;
  display: flex; align-items: center; gap: 10px;
  animation: hp-float 5s ease-in-out infinite reverse;
}
.hp-hv-card__check .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: #e6f4ec; color: #1a8754;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
@keyframes hp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: SOBRE (split layout)
   ══════════════════════════════════════════════════════════════════════════ */
.hp-about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.hp-about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(172,33,36,.08), transparent 60%),
    linear-gradient(160deg, var(--hp-bg-alt) 0%, #ececef 100%);
}
.hp-about-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02);
  transition: transform .8s var(--hp-easing);
}
.hp-about-image:hover img { transform: scale(1.06); }

/* Composição quando NÃO há imagem (fallback elegante, sem bloco preto) */
.hp-about-image--empty::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,13,16,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,13,16,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 100%);
}
.hp-about-image--empty .hp-ai-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow-md);
  padding: 18px 20px;
}
.hp-about-image--empty .hp-ai-card.is-method {
  top: 12%; left: 8%; right: 8%;
}
.hp-about-image--empty .hp-ai-card.is-method h5 {
  font-family: var(--hp-font-display);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--hp-wine); margin: 0 0 12px; font-weight: 700;
}
.hp-about-image--empty .hp-ai-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.hp-about-image--empty .hp-ai-pillars span {
  font-family: var(--hp-font-display);
  font-size: 1.6rem; font-weight: 800; color: var(--hp-wine);
  text-align: center; padding: 14px 0;
  background: var(--hp-wine-soft); border-radius: 12px;
}
.hp-about-image--empty .hp-ai-pillars small {
  display: block; font-size: .68rem; color: var(--hp-mute); margin-top: 4px;
  font-weight: 500; letter-spacing: .04em; font-family: var(--hp-font-sans);
}
.hp-about-image--empty .hp-ai-card.is-checks {
  bottom: 12%; left: 8%; right: 8%;
}
.hp-about-image--empty .hp-ai-checks { list-style: none; padding: 0; margin: 0; }
.hp-about-image--empty .hp-ai-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--hp-ink); padding: 6px 0;
}
.hp-about-image--empty .hp-ai-checks li:not(:last-child) {
  border-bottom: 1px solid var(--hp-line);
}
.hp-about-image--empty .hp-ai-checks i {
  color: #1a8754; font-size: 1.05rem;
  background: #e6f4ec; width: 26px; height: 26px;
  border-radius: 8px; display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hp-about-image__sticker {
  position: absolute; bottom: 24px; right: 24px;
  background: #fff; padding: 16px 20px; border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 220px; z-index: 2;
}
.hp-about-image__sticker i { font-size: 1.6rem; color: var(--hp-wine); }
.hp-about-image__sticker strong { display: block; font-size: .9rem; color: var(--hp-ink); }
.hp-about-image__sticker span { font-size: .75rem; color: var(--hp-mute); }

.hp-about-content { padding: 12px 0; }
.hp-about-text { font-size: 1rem; color: var(--hp-ink-soft); line-height: 1.7; }
.hp-about-text p { margin-bottom: 14px; }
.hp-about-text strong { color: var(--hp-ink); }

.hp-difs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.hp-dif {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  transition: transform .3s var(--hp-easing), box-shadow .3s var(--hp-easing), border-color .3s var(--hp-easing);
}
.hp-dif:hover {
  transform: translateY(-3px);
  box-shadow: var(--hp-shadow-md);
  border-color: rgba(172,33,36,.2);
}
.hp-dif__icon {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hp-wine-soft); color: var(--hp-wine);
  font-size: 1.2rem;
}
.hp-dif h4 { font-size: 1rem; margin: 0 0 4px; font-weight: 700; }
.hp-dif p { margin: 0; font-size: .87rem; color: var(--hp-mute); line-height: 1.55; }

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: ESTATÍSTICAS
   ══════════════════════════════════════════════════════════════════════════ */
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.hp-stat {
  position: relative;
  padding: 28px 22px 26px;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  transition: transform .3s var(--hp-easing), box-shadow .3s var(--hp-easing), border-color .3s var(--hp-easing);
  overflow: hidden;
}
.hp-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--hp-wine), #d94447);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--hp-easing);
}
.hp-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-md);
  border-color: transparent;
}
.hp-stat:hover::before { transform: scaleX(1); }
.hp-stat__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hp-wine-soft); color: var(--hp-wine);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.hp-stat__num {
  font-family: var(--hp-font-display);
  font-size: 2.6rem; font-weight: 800;
  color: var(--hp-ink);
  letter-spacing: -.03em;
  display: block;
  line-height: 1;
}
.hp-stat__num small {
  font-size: 1.4rem; font-weight: 700; color: var(--hp-wine);
  margin-left: 2px;
}
.hp-stat__desc {
  margin: 10px 0 0;
  font-size: .92rem;
  color: var(--hp-ink-soft);
  line-height: 1.5;
}
.hp-stat__source {
  margin-top: 10px;
  font-size: .72rem;
  color: var(--hp-mute);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: METODOLOGIA BASE — letras gigantes
   ══════════════════════════════════════════════════════════════════════════ */
.hp-method {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(172,33,36,.06), transparent 60%),
    var(--hp-bg-alt);
}
.hp-pilares {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.hp-pilar {
  position: relative;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform .35s var(--hp-easing), box-shadow .35s var(--hp-easing);
}
.hp-pilar:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
}
.hp-pilar__letter {
  position: absolute;
  top: -30px; right: -10px;
  font-family: var(--hp-font-display);
  font-size: 14rem;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--hp-pilar-color, var(--hp-wine));
  opacity: .08;
  pointer-events: none;
}
.hp-pilar__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
  position: relative;
}
.hp-pilar__icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--hp-pilar-color, var(--hp-wine)) 12%, white);
  color: var(--hp-pilar-color, var(--hp-wine));
  font-size: 1.4rem;
}
.hp-pilar__tag {
  font-family: var(--hp-font-display);
  font-weight: 800; font-size: .85rem;
  color: var(--hp-pilar-color, var(--hp-wine));
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hp-pilar h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  position: relative;
}
.hp-pilar__pergunta {
  font-size: 1.02rem;
  color: var(--hp-pilar-color, var(--hp-wine));
  font-weight: 600;
  font-style: italic;
  margin: 0 0 14px;
  position: relative;
}
.hp-pilar__desc {
  font-size: .96rem;
  color: var(--hp-ink-soft);
  line-height: 1.65;
  margin: 0;
  position: relative;
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: SERVIÇOS
   ══════════════════════════════════════════════════════════════════════════ */
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-service {
  position: relative;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  padding: 32px 26px;
  transition: transform .3s var(--hp-easing), box-shadow .3s var(--hp-easing), border-color .3s var(--hp-easing);
  display: flex; flex-direction: column;
}
.hp-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-md);
  border-color: rgba(172,33,36,.25);
}
.hp-service__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--hp-ink); color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase;
}
.hp-service__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--hp-wine) 0%, var(--hp-wine-dark) 100%);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(172,33,36,.20);
}
.hp-service h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 6px;
}
.hp-service__sub {
  font-size: .9rem;
  color: var(--hp-wine);
  font-weight: 600;
  margin: 0 0 12px;
}
.hp-service p {
  font-size: .94rem;
  color: var(--hp-ink-soft);
  line-height: 1.6;
  margin: 0;
}
.hp-service__more {
  margin-top: 18px;
  font-weight: 600; font-size: .9rem;
  color: var(--hp-wine);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s var(--hp-easing);
}
.hp-service__more:hover { gap: 10px; color: var(--hp-wine-dark); }

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: DEPOIMENTOS — carrossel Swiper
   ══════════════════════════════════════════════════════════════════════════ */
.hp-testimonials { background: var(--hp-bg-alt); }
.hp-testi-wrap { position: relative; padding-bottom: 60px; }
.hp-testi {
  background: #fff;
  border-radius: var(--hp-radius-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--hp-shadow-sm);
  position: relative;
  height: auto;
}
.hp-testi__quote {
  font-family: var(--hp-font-display);
  position: absolute;
  top: 18px; right: 24px;
  font-size: 4.5rem;
  color: var(--hp-wine-soft);
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}
.hp-testi__stars {
  color: #f5b301;
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
}
.hp-testi__text {
  font-size: 1.02rem;
  color: var(--hp-ink-soft);
  line-height: 1.65;
  margin: 0 0 22px;
  position: relative;
}
.hp-testi__person {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--hp-line);
  padding-top: 18px;
  position: relative;
}
.hp-testi__photo {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--hp-wine-soft); color: var(--hp-wine);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
  overflow: hidden;
}
.hp-testi__photo img { width: 100%; height: 100%; object-fit: cover; }
.hp-testi__person strong { display: block; font-size: .96rem; color: var(--hp-ink); }
.hp-testi__person span { font-size: .82rem; color: var(--hp-mute); }

/* Customização do Swiper para depoimentos */
.hp-testi-wrap .swiper-pagination {
  bottom: 0 !important;
  position: absolute;
}
.hp-testi-wrap .swiper-pagination-bullet {
  width: 32px; height: 4px;
  border-radius: 4px;
  background: var(--hp-mute);
  opacity: .25;
  transition: opacity .25s, background .25s;
}
.hp-testi-wrap .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--hp-wine);
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: EQUIPE
   ══════════════════════════════════════════════════════════════════════════ */
.hp-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.hp-team-card {
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  transition: transform .35s var(--hp-easing), box-shadow .35s var(--hp-easing);
}
.hp-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-lg);
}
.hp-team-card__photo {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--hp-bg-alt) 0%, var(--hp-line) 100%);
  overflow: hidden;
}
.hp-team-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--hp-easing);
}
.hp-team-card:hover .hp-team-card__photo img { transform: scale(1.06); }
.hp-team-card__social {
  position: absolute;
  inset: auto 0 0 0;
  display: flex; gap: 8px;
  padding: 14px;
  background: linear-gradient(0deg, rgba(13,13,16,.65), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--hp-easing), transform .3s var(--hp-easing);
}
.hp-team-card:hover .hp-team-card__social { opacity: 1; transform: translateY(0); }
.hp-team-card__social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.95);
  color: var(--hp-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background .25s, color .25s;
}
.hp-team-card__social a:hover { background: var(--hp-wine); color: #fff; }
.hp-team-card__body { padding: 22px 22px 26px; }
.hp-team-card__body h4 {
  font-size: 1.15rem; margin: 0 0 4px; font-weight: 800;
}
.hp-team-card__role {
  font-size: .88rem; color: var(--hp-wine); font-weight: 600;
  display: block; margin-bottom: 12px;
}
.hp-team-card__creds {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--hp-line);
  padding-top: 12px; margin-top: 4px;
}
.hp-team-card__creds span {
  font-size: .8rem;
  color: var(--hp-mute);
  display: flex; align-items: center; gap: 6px;
}
.hp-team-card__creds span::before {
  content: '\F26A'; /* bi-check2 */
  font-family: 'bootstrap-icons';
  color: var(--hp-wine);
  font-size: .9rem;
}
.hp-team-card__bio {
  font-size: .88rem; color: var(--hp-ink-soft);
  line-height: 1.55; margin: 12px 0 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: CTA Banner
   ══════════════════════════════════════════════════════════════════════════ */
.hp-cta {
  background:
    radial-gradient(600px 300px at 0% 100%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(800px 400px at 100% 0%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(135deg, var(--hp-wine) 0%, var(--hp-wine-dark) 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.hp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 100%);
          mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hp-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hp-cta__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hp-cta__title {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: -.02em;
}
.hp-cta__sub {
  margin: 0;
  font-size: 1.02rem;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: FAQ — abas + accordion
   ══════════════════════════════════════════════════════════════════════════ */
.hp-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  padding: 6px;
  background: var(--hp-bg-alt);
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.hp-faq-tab {
  background: transparent;
  border: 0;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--hp-font-sans);
  font-weight: 600;
  font-size: .9rem;
  color: var(--hp-ink-soft);
  cursor: pointer;
  transition: background .25s var(--hp-easing), color .25s var(--hp-easing);
}
.hp-faq-tab:hover { color: var(--hp-wine); }
.hp-faq-tab.is-active {
  background: var(--hp-ink);
  color: #fff;
  box-shadow: var(--hp-shadow-sm);
}

.hp-faq-panel { display: none; }
.hp-faq-panel.is-active { display: block; }

.hp-faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.hp-faq-item {
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-radius);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.hp-faq-item[open] {
  border-color: rgba(172,33,36,.3);
  box-shadow: var(--hp-shadow-sm);
}
.hp-faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--hp-font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--hp-ink);
  transition: color .25s;
}
.hp-faq-item summary::-webkit-details-marker { display: none; }
.hp-faq-item summary::after {
  content: '\F4FE'; /* bi-plus */
  font-family: 'bootstrap-icons';
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--hp-wine);
  transition: transform .3s var(--hp-easing);
  flex-shrink: 0;
}
.hp-faq-item[open] summary::after {
  content: '\F2EA'; /* bi-dash */
  transform: rotate(180deg);
}
.hp-faq-item summary:hover { color: var(--hp-wine); }
.hp-faq-content {
  padding: 0 24px 22px;
  color: var(--hp-ink-soft);
  font-size: .96rem;
  line-height: 1.7;
}
.hp-faq-content p:last-child { margin-bottom: 0; }
.hp-faq-content a { color: var(--hp-wine); text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════════════════
   SECTION: CONTATO
   ══════════════════════════════════════════════════════════════════════════ */
.hp-contact { background: var(--hp-bg-deep); color: #fff; }
.hp-contact .hp-title,
.hp-contact .hp-lead { color: #fff; }
.hp-contact .hp-lead { color: rgba(255,255,255,.72); }
.hp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.hp-contact-channels {
  display: flex; flex-direction: column; gap: 14px;
}
.hp-contact-channel {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--hp-radius);
  padding: 22px 24px;
  text-decoration: none;
  color: #fff;
  transition: background .25s, border-color .25s, transform .25s var(--hp-easing);
}
.hp-contact-channel:hover {
  background: rgba(172,33,36,.14);
  border-color: rgba(172,33,36,.35);
  transform: translateY(-2px);
  color: #fff;
}
.hp-contact-channel__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--hp-wine);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hp-contact-channel strong { display: block; font-size: 1rem; margin-bottom: 4px; color: #fff; }
.hp-contact-channel span { display: block; font-size: .92rem; color: rgba(255,255,255,.72); line-height: 1.5; }

.hp-map {
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
}
.hp-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: invert(.92) hue-rotate(180deg);
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hp-hero-visual { height: 420px; max-width: 480px; margin: 0 auto; }
  .hp-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hp-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .hp-cta-inner .hp-btn { justify-self: center; }
}
@media (max-width: 720px) {
  .hp-section { padding: 48px 0; }
  .hp-hero { padding: 60px 0 40px; }
  .hp-hero-stamps { grid-template-columns: 1fr; gap: 14px; }
  .hp-hero-visual { height: 360px; }
  .hp-hv-card__main { width: 280px; }
  .hp-hv-card__pill { width: 200px; right: -4px; }
  .hp-hv-card__check { width: 190px; left: -8px; }
  .hp-difs-grid { grid-template-columns: 1fr; }
  .hp-pilares { grid-template-columns: 1fr; }
  .hp-services-grid { grid-template-columns: 1fr; }
  .hp-section-head { margin-bottom: 40px; }
  .hp-pilar { padding: 28px 22px; }
  .hp-pilar__letter { font-size: 10rem; top: -10px; right: -6px; }
  .hp-stats-grid { grid-template-columns: 1fr; }
  .hp-faq-item summary { font-size: .98rem; padding: 18px 18px; }
  .hp-faq-content { padding: 0 18px 18px; }
}
@media (max-width: 480px) {
  .hp-hero-title { font-size: 2rem; }
  .hp-hero-stamp strong { font-size: 1.25rem; }
  .hp-cta { padding: 44px 0; }
  .hp-cta__title { font-size: 1.6rem; }
  .hp-faq-tabs { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .hp-faq-tab { white-space: nowrap; }
}

/* ════════════════════════════════════════════════════════════════════════════
   Override do scroll-top do template Presento (visual mais clean)
   ══════════════════════════════════════════════════════════════════════════ */
body.index-page .scroll-top {
  background: var(--hp-ink) !important;
  border-radius: 14px !important;
  width: 44px !important; height: 44px !important;
  box-shadow: var(--hp-shadow-md) !important;
}
body.index-page .scroll-top:hover { background: var(--hp-wine) !important; }
