/* LP Contabilidade Consultiva — Design System */
:root {
  --wine: #734343;
  --wine-dark: #3e2626;
  --gold: #ad8831;
  --gold-light: #e8d09f;
  --rose: #f2d5d5;
  --cream: #faf7f2;
  --white: #ffffff;
  --text-muted: #6b5d5d;
  --shadow: 0 12px 40px rgba(62, 38, 38, 0.1);
  --shadow-sm: 0 4px 16px rgba(62, 38, 38, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 100px;
  --header-h-scrolled: 62px;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Degradês da marca */
  --grad-body: linear-gradient(180deg, #fdfbf8 0%, var(--cream) 45%, #f3ebe0 100%);
  --grad-hero: linear-gradient(145deg, #fffdfb 0%, var(--cream) 35%, #f8efe8 70%, var(--rose) 100%);
  --grad-wine: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 50%, #8a5252 100%);
  --grad-wine-deep: linear-gradient(165deg, #2d1a1a 0%, var(--wine-dark) 40%, #4a2c2c 100%);
  --grad-gold: linear-gradient(135deg, #c9a24e 0%, var(--gold) 50%, #8f6f28 100%);
  --grad-champagne: linear-gradient(160deg, #fff9ee 0%, var(--gold-light) 55%, #e8d4a8 100%);
  --grad-rose: linear-gradient(165deg, #fff8f8 0%, var(--rose) 45%, #f5e4e4 100%);
  --grad-pearl: linear-gradient(180deg, var(--white) 0%, #fdfaf6 100%);
  --grad-glow-gold: radial-gradient(ellipse 70% 60% at 85% 15%, rgba(173, 136, 49, 0.14), transparent 65%);
  --grad-glow-rose: radial-gradient(ellipse 55% 50% at 10% 80%, rgba(242, 213, 213, 0.45), transparent 70%);
  --grad-border-gold: linear-gradient(135deg, var(--gold-light), var(--gold), var(--wine), var(--gold-light));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--wine-dark);
  background: var(--grad-body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--gold); }

.lp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--wine);
  color: var(--white);
}
.lp-skip:focus { left: 1rem; top: 1rem; }

.lp-container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Typography */
.lp-kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.lp-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--wine-dark);
  margin: 0 0 1rem;
}

.lp-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--wine-dark);
  margin: 0 0 0.75rem;
}
.lp-h2::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 0.75rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 60%, transparent 100%);
}

.lp-h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--wine-dark);
}

.lp-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.lp-section-intro {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  text-align: center;
  line-height: 1.3;
}

.lp-btn--primary {
  background: var(--grad-wine);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(62, 38, 38, 0.2);
}
.lp-btn--primary:hover {
  background-position: 100% 50%;
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 0 0 2px var(--gold-light), 0 8px 24px rgba(62, 38, 38, 0.25);
  transform: translateY(-1px);
}

.lp-btn--outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.lp-btn--outline:hover {
  background: var(--grad-wine);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-1px);
}

.lp-btn--gold {
  background: var(--grad-gold);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--white);
  border-color: transparent;
}
.lp-btn--gold:hover {
  background-position: 100% 50%;
  border-color: transparent;
  color: var(--white);
}

.lp-btn--sm { padding: 0.625rem 1rem; font-size: 0.875rem; }

.lp-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Header */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(253, 251, 248, 0.97) 0%, rgba(250, 247, 242, 0.92) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(115, 67, 67, 0.08);
  transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.lp-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 136, 49, 0.35), transparent);
  pointer-events: none;
}
.lp-header.is-scrolled {
  height: var(--header-h-scrolled);
  box-shadow: var(--shadow-sm);
}
.lp-header.is-scrolled .lp-nav__link {
  font-size: 0.85rem;
}
.lp-header.is-scrolled .lp-nav__cta .lp-btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.8125rem;
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.lp-header__logo img {
  height: 68px;
  width: auto;
  transition: height 0.35s var(--ease);
}
.lp-header.is-scrolled .lp-header__logo img { height: 42px; }

.lp-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.lp-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--wine-dark);
  position: relative;
  padding: 0.25rem 0;
  transition: font-size 0.35s var(--ease), color 0.25s;
}
.lp-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s var(--ease);
}
.lp-nav__link:hover::after { width: 100%; }
.lp-nav__link:hover { color: var(--wine); }

.lp-nav__cta { flex-shrink: 0; }

.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--wine);
}

/* Hero */
.lp-hero {
  padding: calc(var(--header-h) + 1.75rem) 0 3.5rem;
  background: var(--grad-hero);
  overflow: hidden;
  position: relative;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-glow-gold), var(--grad-glow-rose);
  pointer-events: none;
}
.lp-hero > .lp-container {
  position: relative;
  z-index: 1;
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.5rem;
  align-items: center;
}

.lp-hero__content {
  margin-top: -56px;
}

.lp-hero__visual {
  position: relative;
  margin: 0;
  max-width: min(400px, 92%);
  margin-left: auto;
  width: 100%;
}
.lp-hero__visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.lp-hero__visual::before {
  content: "";
  position: absolute;
  inset: -12px -12px 12px 12px;
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.85;
  background: var(--grad-border-gold);
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Trust bar */
.lp-trust {
  background: var(--grad-wine);
  color: var(--white);
  padding: 2rem 0;
  position: relative;
}
.lp-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 120% at 0% 50%, rgba(232, 208, 159, 0.12), transparent 60%),
              radial-gradient(ellipse 40% 100% at 100% 50%, rgba(242, 213, 213, 0.1), transparent 55%);
  pointer-events: none;
}
.lp-trust > .lp-container { position: relative; z-index: 1; }
.lp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.lp-trust__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}
.lp-trust__item span {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* Sections */
.lp-section {
  padding: 5rem 0;
  position: relative;
}
.lp-section--white {
  background: var(--grad-pearl);
}
.lp-section--cream {
  background: var(--grad-champagne);
}
.lp-section--rose {
  background: var(--grad-rose);
}
.lp-section--white::before,
.lp-section--cream::before,
.lp-section--rose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-glow-gold);
  opacity: 0.5;
  pointer-events: none;
}
.lp-section > .lp-container { position: relative; z-index: 1; }

/* Seções sem modificador — fundo suave alternado */
#projeto.lp-section {
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lp-split__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* Cards */
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.lp-card {
  background: linear-gradient(165deg, var(--white) 0%, rgba(250, 247, 242, 0.6) 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(115, 67, 67, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(173, 136, 49, 0.2);
}
.lp-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose) 0%, #fff5f5 50%, var(--gold-light) 100%);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.lp-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* MVV */
.lp-mvv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.lp-mvv__card {
  position: relative;
  background: linear-gradient(160deg, var(--white) 0%, rgba(250, 247, 242, 0.85) 100%);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(115, 67, 67, 0.06);
}
.lp-mvv__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
}
.lp-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.lp-value {
  background: linear-gradient(165deg, var(--white) 0%, rgba(250, 247, 242, 0.7) 100%);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(115, 67, 67, 0.08);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.lp-value:hover {
  border-color: rgba(173, 136, 49, 0.25);
  box-shadow: 0 4px 16px rgba(173, 136, 49, 0.1);
}
.lp-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-style: italic;
  text-align: center;
  color: var(--wine);
  max-width: 52rem;
  margin: 3rem auto 0;
  padding: 2rem;
  border: none;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent) border-box;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

/* Featured service */
.lp-featured {
  background: linear-gradient(160deg, var(--white) 0%, rgba(232, 208, 159, 0.35) 100%);
  border: 1px solid rgba(173, 136, 49, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(173, 136, 49, 0.1), var(--shadow-sm);
  position: relative;
}
.lp-featured > * { position: relative; z-index: 1; }
.lp-featured--spotlight {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.lp-featured--spotlight > * { position: relative; z-index: 1; }
.lp-featured--spotlight::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 45%;
  height: 140%;
  background: radial-gradient(circle, rgba(173, 136, 49, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-featured__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.lp-featured__head {
  margin-bottom: 1.5rem;
}
.lp-featured__head .lp-h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 0.65rem;
}
.lp-featured__lead {
  margin: 0;
  color: var(--text-muted);
  max-width: 72ch;
  line-height: 1.65;
}
.lp-featured__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.lp-featured__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(173, 136, 49, 0.18);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wine-dark);
  line-height: 1.4;
}
.lp-featured__benefits li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}
.lp-featured__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 247, 242, 0.95) 100%);
  border: 1px solid rgba(173, 136, 49, 0.22);
  border-radius: var(--radius-sm);
}
.lp-featured__hint {
  flex: 1;
  font-size: 0.95rem;
  color: var(--wine-dark);
  margin: 0;
  line-height: 1.55;
  font-weight: 500;
}
.lp-featured__action .lp-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Services hub — menu lateral + painel */
.lp-services-hub {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 0.5rem;
}

.lp-services-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: linear-gradient(165deg, var(--white) 0%, rgba(250, 247, 242, 0.9) 100%);
  border: 1px solid rgba(115, 67, 67, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.lp-services-nav__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.lp-services-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-services-nav__btn {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s, transform 0.2s var(--ease), box-shadow 0.25s;
  color: var(--wine-dark);
}
.lp-services-nav__btn:hover {
  background: var(--cream);
  border-color: rgba(115, 67, 67, 0.08);
}
.lp-services-nav__btn.is-active {
  background: linear-gradient(135deg, var(--wine) 0%, #5f3636 100%);
  color: var(--white);
  border-color: var(--wine);
  box-shadow: 0 8px 24px rgba(115, 67, 67, 0.25);
}
.lp-services-nav__btn.is-active .lp-services-nav__icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}
.lp-services-nav__btn.is-active small { color: rgba(255, 255, 255, 0.85); }
.lp-services-nav__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--rose);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--wine);
}
.lp-services-nav__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.3;
}
.lp-services-nav__text strong { font-size: 0.9rem; }
.lp-services-nav__text small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Select mobile — oculto no desktop */
.lp-services-nav__mobile { display: none; }
.lp-services-nav__mobile-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wine-dark);
  margin-bottom: 0.5rem;
}
.lp-services-select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wine-dark);
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23734343' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  border: 1px solid rgba(115, 67, 67, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lp-services-select:hover { border-color: rgba(115, 67, 67, 0.35); }
.lp-services-select:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(115, 67, 67, 0.15);
}

.lp-services-stage {
  background: linear-gradient(165deg, var(--white) 0%, rgba(250, 247, 242, 0.5) 100%);
  border: 1px solid rgba(115, 67, 67, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  min-height: 420px;
}
.lp-services-panel { display: none; }
.lp-services-panel.is-active {
  display: block;
  animation: lp-panel-in 0.45s var(--ease) both;
}
@keyframes lp-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.lp-services-panel__head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(115, 67, 67, 0.1);
}
.lp-services-panel__head p {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  max-width: 58ch;
}

.lp-services-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.lp-service-card {
  background: linear-gradient(165deg, rgba(250, 247, 242, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(115, 67, 67, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(173, 136, 49, 0.35);
}
.lp-service-card--accent {
  background: linear-gradient(160deg, var(--white) 0%, var(--gold-light) 55%, rgba(232, 208, 159, 0.6) 100%);
  border-color: rgba(173, 136, 49, 0.35);
}
.lp-service-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--wine-dark);
  margin: 0;
}
.lp-service-card__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.lp-service-card__list {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.lp-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wine);
}
.lp-service-card__link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.lp-service-card__link:hover::after { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .lp-services-panel.is-active { animation: none; }
  .lp-service-card:hover { transform: none; }
}

/* Highlight block — Do Zero ao Lucro */
.lp-highlight {
  background: var(--grad-wine);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.lp-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 208, 159, 0.2) 0%, transparent 65%);
  pointer-events: none;
}
.lp-highlight::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(242, 213, 213, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-highlight .lp-h2,
.lp-highlight .lp-h3 { color: var(--gold-light); }
.lp-highlight p { color: rgba(255, 255, 255, 0.9); }
.lp-highlight .lp-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.lp-highlight .lp-checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
}
.lp-highlight .lp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}
.lp-highlight > * { position: relative; z-index: 1; }
.lp-promise {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

/* Tags público */
.lp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.lp-tag {
  background: linear-gradient(165deg, var(--white) 0%, rgba(250, 247, 242, 0.8) 100%);
  border: 1px solid rgba(115, 67, 67, 0.12);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.lp-tag:hover {
  border-color: rgba(173, 136, 49, 0.35);
  box-shadow: 0 2px 12px rgba(173, 136, 49, 0.12);
}

/* Timeline */
.lp-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.lp-timeline__step {
  text-align: center;
  position: relative;
}
.lp-timeline__step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  background: var(--grad-wine);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 4px 12px rgba(115, 67, 67, 0.25);
}
.lp-timeline__step strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--wine-dark);
}
.lp-timeline__step span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Google reviews placeholder */
.lp-google-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(165deg, var(--white) 0%, rgba(232, 208, 159, 0.2) 100%);
  border-radius: var(--radius);
  border: 2px dashed rgba(173, 136, 49, 0.35);
  gap: 1rem;
}
.lp-google-badge__stars {
  font-size: 1.5rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.15em;
}

/* FAQ */
.lp-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  width: 100%;
  margin-top: 2rem;
}
.lp-faq details {
  background: linear-gradient(165deg, var(--white) 0%, rgba(250, 247, 242, 0.5) 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(115, 67, 67, 0.1);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.lp-faq details[open] {
  border-color: rgba(173, 136, 49, 0.3);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(165deg, var(--white) 0%, rgba(232, 208, 159, 0.15) 100%);
}
.lp-faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}
.lp-faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-right: 2px solid var(--wine);
  border-bottom: 2px solid var(--wine);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.lp-faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.65rem;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary:hover { color: var(--wine); }
.lp-faq__answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* CTA final */
.lp-cta-final {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(165deg, var(--cream) 0%, var(--gold-light) 40%, rgba(242, 213, 213, 0.5) 100%);
  position: relative;
  overflow: hidden;
}
.lp-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-glow-gold);
  pointer-events: none;
}
.lp-cta-final > .lp-container { position: relative; z-index: 1; }
.lp-cta-final .lp-h2 { margin-bottom: 1rem; }

/* Footer */
.lp-footer {
  background: var(--grad-wine-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
  font-size: 0.9375rem;
  position: relative;
}
.lp-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  pointer-events: none;
}
.lp-footer a { color: var(--gold-light); }
.lp-footer a:hover { color: var(--white); }
.lp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.lp-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp-footer__brand img {
  height: 84px;
  width: auto;
  max-width: none;
  object-fit: contain;
  margin-bottom: 1rem;
}
.lp-footer__brand p { margin: 0.5rem 0; font-size: 0.875rem; opacity: 0.9; max-width: 22rem; }
.lp-footer__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  margin: 0 0 1rem;
}
.lp-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-footer__list li { margin-bottom: 0.5rem; }
.lp-footer__compliance {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.7;
  line-height: 1.6;
}
.lp-footer__credit {
  margin: 0;
  padding: 0 0 1.75rem;
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}
.lp-footer__credit a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232, 208, 159, 0.45);
}
.lp-footer__credit a:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

/* Floating WhatsApp */
.lp-whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  animation: lp-pulse 3s ease-in-out infinite;
}
.lp-whatsapp-float:hover {
  background: #1ebe57;
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  animation: none;
}
.lp-whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

@keyframes lp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Reveal animation */
.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  .lp-whatsapp-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* Mobile nav */
@media (max-width: 960px) {
  .lp-hero__grid,
  .lp-split,
  .lp-mvv { grid-template-columns: 1fr; }
  .lp-hero__content { margin-top: 0; }
  .lp-hero__visual {
    max-width: 100%;
    margin-left: 0;
  }
  .lp-featured__benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-featured__action {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .lp-featured__action .lp-btn { white-space: normal; width: 100%; }
  .lp-services-hub { grid-template-columns: 1fr; gap: 1rem; }
  .lp-services-nav {
    position: static;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .lp-services-nav__label { display: none; }
  .lp-services-nav__mobile { display: block; margin-bottom: 0.25rem; }
  .lp-services-nav__list--desktop { display: none; }
  .lp-services-cards { grid-template-columns: 1fr; }
  .lp-services-stage { min-height: 0; }
  .lp-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-timeline { grid-template-columns: 1fr; gap: 1.5rem; }
  .lp-faq { grid-template-columns: 1fr; }
  .lp-footer {
    padding: 3rem 0 0;
  }
  .lp-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 1rem;
  }
  .lp-footer__brand {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .lp-footer__col {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .lp-footer__col .lp-footer__title {
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
  }
  .lp-footer__list--nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 0.5rem 2rem;
    text-align: left;
  }
  .lp-footer__col:not(.lp-footer__col--social) .lp-footer__list li {
    margin-bottom: 0.35rem;
  }
  .lp-footer__col--social .lp-footer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
  }
  .lp-footer__col--social .lp-footer__list li {
    margin-bottom: 0;
  }
  .lp-footer__compliance {
    padding: 1.5rem 0.5rem 1rem;
    font-size: 0.7rem;
  }
  .lp-footer__credit {
    padding-bottom: 2rem;
  }
  .lp-header { height: auto; min-height: var(--header-h); }
  .lp-header.is-scrolled { min-height: var(--header-h-scrolled); }
  .lp-header__inner { flex-wrap: wrap; position: relative; }
  .lp-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(115, 67, 67, 0.1);
    box-shadow: var(--shadow-sm);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }
  .lp-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .lp-menu-toggle { display: block; }
}

@media (max-width: 600px) {
  .lp-trust__grid { grid-template-columns: 1fr; }
  .lp-featured__benefits { grid-template-columns: 1fr; }
  .lp-btn-group { flex-direction: column; }
  .lp-btn { width: 100%; }
  body { padding-bottom: 5rem; }
  .lp-footer__list--nav {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.35rem;
  }
}
