/* ─── Vitrinni Studio — Institutional Site — UI System Premium ─────────────── */

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */

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

:root {
  /* ── Paleta base ── */
  --off-white:       #F5F3EF;
  --light-beige:     #EAE7E1;
  --premium-beige:   #C8A97E;
  --gold-highlight:  #D6B98C;
  --gold-deep:       #B8966E;
  --soft-black:      #4F4F4F;
  --text-secondary:  #8A8A8A;
  --dark:            #2C2C2C;
  --white:           #FFFFFF;

  /* ── Fonte ── */
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Escala tipográfica ── */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;

  /* ── Layout ── */
  --section-py: 8rem;
  --container:  1200px;
  --radius:     6px;
  --radius-lg:  20px;
  --radius-pill: 999px;

  /* ── Transições ── */
  --transition:      0.22s ease;
  --transition-slow: 0.4s ease;

  /* ── Sombras ── */
  --shadow-card:  0 10px 30px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.03);
  --shadow-hover: 0 18px 40px rgba(0,0,0,0.09), 0 4px 10px rgba(0,0,0,0.05);
  --shadow-btn:   0 10px 30px rgba(200,169,126,0.35), inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -2px 6px rgba(0,0,0,0.1);
  --shadow-btn-hover: 0 16px 40px rgba(200,169,126,0.5), inset 0 2px 0 rgba(255,255,255,0.4), inset 0 -2px 6px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--dark);
  background: radial-gradient(
    circle at top,
    #f8f6f2 0%,
    #f1ece6 60%,
    #ebe5dd 100%
  );
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, var(--text-7xl)); }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--text-5xl)); }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); font-weight: 600; }

p { color: var(--soft-black); line-height: 1.75; }

.label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--premium-beige);
}

/* ─── Layout ────────────────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
}

section { padding: var(--section-py) 0; }

.section-alt { background: rgba(234,231,225,0.55); }

/* ─── Divider ───────────────────────────────────────────────────────────────── */

.divider {
  width: 2.5rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--premium-beige), transparent);
  margin: 1.5rem 0;
  border-radius: 2px;
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-main);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border-radius: var(--radius-pill);
  position: relative;
}

/* Botão primário — premium gold */
.btn-primary {
  background: linear-gradient(180deg, var(--gold-highlight) 0%, var(--premium-beige) 50%, var(--gold-deep) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-btn);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
  background: linear-gradient(180deg, #dfc49a 0%, var(--gold-highlight) 50%, var(--premium-beige) 100%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
}

/* Botão outline — light */
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(44,44,44,0.2);
}

.btn-outline:hover {
  background: rgba(44,44,44,0.05);
  border-color: rgba(44,44,44,0.35);
  transform: translateY(-1px);
}

/* Botão outline — sobre fundo escuro */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

/* ─── Navigation ────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 246, 242, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
  background: rgba(248, 246, 242, 0.96);
  border-bottom-color: rgba(200,169,126,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
}

.nav-logo {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.nav-logo span {
  color: var(--premium-beige);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--dark); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.nav-cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.8125rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: all var(--transition);
}

/* ─── Mobile Nav ────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4.75rem;
    left: 0;
    right: 0;
    background: rgba(248, 246, 242, 0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(200,169,126,0.15);
  }

  .nav.open .nav-cta {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4.75rem;
    left: 0;
    right: 0;
    background: rgba(248, 246, 242, 0.97);
    backdrop-filter: blur(20px);
    padding: 0 2rem 2rem;
    gap: 0.75rem;
  }

  .nav.open .nav-links { padding-bottom: 0; }

  .nav.open .nav-cta {
    top: auto;
    position: static;
    padding: 0 2rem 2rem;
  }

  .nav.open .nav-links {
    display: flex;
    position: fixed;
    top: 4.75rem;
    padding: 2rem 2rem 0;
  }

  .nav.open .nav-cta {
    display: flex;
    position: fixed;
    top: auto;
    background: rgba(248, 246, 242, 0.97);
    backdrop-filter: blur(20px);
    width: 100%;
  }
}

/* ─── Section: Hero ─────────────────────────────────────────────────────────── */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 7rem;
  background: transparent;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(
    ellipse at top right,
    rgba(200,169,126,0.10) 0%,
    rgba(200,169,126,0.03) 50%,
    transparent 80%
  );
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,0.2), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 880px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 2.25rem;
}

.hero-title {
  margin-bottom: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, var(--text-xl));
  color: var(--soft-black);
  max-width: 620px;
  margin-bottom: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero-support {
  font-size: var(--text-sm);
  color: var(--premium-beige);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 3.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-microcopy {
  margin-top: 1.5rem;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  opacity: 0.7;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.3;
}

.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: var(--soft-black);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ─── Section: O que é ──────────────────────────────────────────────────────── */

#sobre {
  background: rgba(234,231,225,0.45);
  position: relative;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 7rem;
  align-items: start;
}

.sobre-text p {
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--soft-black);
}

.sobre-highlight {
  border-left: 2px solid var(--premium-beige);
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
  background: rgba(200,169,126,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.sobre-highlight p {
  font-size: var(--text-base);
  color: var(--dark);
  font-weight: 500;
  line-height: 1.9;
}

/* ─── Section: Problema ─────────────────────────────────────────────────────── */

#problema {
  background: transparent;
}

.problema-header {
  max-width: 760px;
  margin-bottom: 5rem;
}

.problema-header h2 {
  margin-bottom: 0;
  line-height: 1.12;
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4.5rem;
}

.problema-item {
  padding: 2.5rem 2.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.12);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problema-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.problema-item-num {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--premium-beige);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.problema-item p {
  font-size: var(--text-base);
  color: var(--dark);
  font-weight: 500;
  line-height: 1.5;
}

.problema-closing {
  max-width: 580px;
  border-left: 2px solid var(--premium-beige);
  padding: 1.25rem 1.75rem;
  background: rgba(200,169,126,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.problema-closing p {
  font-size: var(--text-lg);
  color: var(--soft-black);
  margin-bottom: 0.35rem;
  line-height: 1.65;
}

.problema-closing p:last-child { margin-bottom: 0; }

/* ─── Section: Como resolve ─────────────────────────────────────────────────── */

#resolve {
  background: #222222;
}

#resolve .label { color: rgba(200, 169, 126, 0.85); }
#resolve h2 { color: var(--white); }
#resolve > .container > div > p { color: rgba(255,255,255,0.6); }

.resolve-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.resolve-inner > div > p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.resolve-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.resolve-item {
  border-left: 1px solid rgba(200, 169, 126, 0.25);
  padding: 1.75rem 1.75rem;
  transition: border-color var(--transition);
  position: relative;
}

.resolve-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.resolve-item::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  height: 0;
  width: 1px;
  background: var(--premium-beige);
  transition: height 0.35s ease;
}

.resolve-item:hover::before {
  height: 100%;
}

.resolve-item h3 {
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.resolve-item p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ─── Section: Funcionalidades ──────────────────────────────────────────────── */

#funcionalidades {
  background: transparent;
}

.func-header {
  margin-bottom: 5rem;
  max-width: 680px;
}

.func-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.func-card {
  background: var(--white);
  padding: 3rem 2.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.12);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.func-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-highlight), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.func-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,169,126,0.22);
}

.func-card:hover::before {
  opacity: 1;
}

.func-card-num {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--premium-beige);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.func-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

.func-card > p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.func-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.func-card ul li {
  font-size: var(--text-sm);
  color: var(--soft-black);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}

.func-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--premium-beige);
  font-weight: 400;
}

/* ─── Section: Social Media ─────────────────────────────────────────────────── */

#social {
  background: rgba(234,231,225,0.5);
}

.social-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.social-inner > div > h2 {
  margin-bottom: 1.75rem;
  line-height: 1.15;
}

.social-inner > div > p {
  font-size: var(--text-lg);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  color: var(--soft-black);
}

.social-config {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.social-config-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,126,0.1);
  transition: background var(--transition), border-color var(--transition);
}

.social-config-item:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(200,169,126,0.2);
}

.social-config-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--premium-beige);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.social-config-item p {
  font-size: var(--text-sm);
  color: var(--soft-black);
  line-height: 1.55;
}

.social-closing {
  border-left: 2px solid var(--premium-beige);
  padding: 1rem 1.5rem;
  background: rgba(200,169,126,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.social-closing p {
  font-size: var(--text-base);
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.1rem;
  line-height: 1.6;
}

.social-visual {
  background: rgba(255,255,255,0.4);
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,169,126,0.12);
  box-shadow: var(--shadow-card);
}

.social-mock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}

.mock-post {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(200,169,126,0.08);
}

.mock-post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-beige);
}

.mock-store-name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--dark);
}

.mock-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--light-beige), var(--premium-beige));
  border-radius: 6px;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.mock-caption {
  height: 7px;
  background: var(--light-beige);
  border-radius: 4px;
  margin-bottom: 0.4rem;
  width: 90%;
}

.mock-caption.short { width: 65%; }

/* ─── Section: Provador Virtual ─────────────────────────────────────────────── */

#provador {
  background: transparent;
}

.provador-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.provador-visual {
  order: -1;
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
}

.provador-card {
  flex: 1;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(200,169,126,0.15);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(4px);
}

.provador-card:first-child {
  aspect-ratio: 2/3;
  background: var(--light-beige);
}

.provador-card:last-child {
  aspect-ratio: 2/3;
  margin-bottom: 2rem;
  background: var(--white);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,169,126,0.2);
}

.provador-card-label {
  padding: 1rem 1.25rem;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
}

.provador-confidence {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 2rem;
  padding: 1.1rem 1.4rem;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,126,0.15);
  box-shadow: var(--shadow-card);
}

.confidence-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--light-beige);
  overflow: hidden;
}

.confidence-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--premium-beige), var(--gold-deep));
  width: 78%;
  border-radius: 2px;
}

.confidence-label {
  font-size: var(--text-xs);
  color: var(--soft-black);
  white-space: nowrap;
  font-weight: 500;
}

.provador-text h2 { margin-bottom: 2rem; }

.provador-text p {
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--soft-black);
}

/* ─── Section: Como funciona ─────────────────────────────────────────────────── */

#como-funciona {
  background: #222222;
}

#como-funciona .label { color: rgba(200, 169, 126, 0.85); }
#como-funciona h2 { color: var(--white); margin-bottom: 5rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.step {
  padding: 3rem 2.5rem 3rem 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}

.step:first-child { padding-left: 0; }
.step:last-child  { border-right: none; padding-right: 0; }

.step:hover {
  background: rgba(255,255,255,0.02);
}

.step-num {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  color: var(--premium-beige);
  font-weight: 600;
  margin-bottom: 2rem;
}

.step h3 {
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.step p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

/* ─── Section: Para quem é ───────────────────────────────────────────────────── */

#publico {
  background: transparent;
}

.publico-header {
  margin-bottom: 4rem;
}

.publico-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3.5rem;
}

.publico-tag {
  display: inline-block;
  padding: 0.875rem 1.875rem;
  border: 1px solid rgba(200,169,126,0.25);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--soft-black);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.publico-tag:hover {
  border-color: var(--premium-beige);
  color: var(--dark);
  background: rgba(255,255,255,0.85);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,169,126,0.15);
}

.publico-tag.active {
  background: linear-gradient(180deg, var(--gold-highlight) 0%, var(--premium-beige) 50%, var(--gold-deep) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-btn);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ─── Section: Diferenciais ─────────────────────────────────────────────────── */

#diferenciais {
  background: rgba(234,231,225,0.5);
}

.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
  align-items: start;
}

.diferenciais-title h2 { margin-bottom: 0; }

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diferencial-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  gap: 2rem;
  transition: padding-left var(--transition);
  cursor: default;
}

.diferencial-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}

.diferencial-item:hover {
  padding-left: 0.5rem;
}

.diferencial-item p {
  font-size: var(--text-lg);
  color: var(--dark);
  font-weight: 500;
}

.diferencial-item-arrow {
  color: var(--premium-beige);
  font-size: var(--text-xl);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.diferencial-item:hover .diferencial-item-arrow {
  transform: translateX(4px);
}

/* ─── Section: Modelo de Negócio ─────────────────────────────────────────────── */

#modelo {
  background: transparent;
}

.modelo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.modelo-inner > div > h2 { margin-bottom: 2rem; }

.modelo-inner > div > p {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--soft-black);
  margin-bottom: 1.25rem;
}

.modelo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.modelo-card {
  background: var(--white);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.12);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.modelo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.modelo-card h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.875rem;
  line-height: 1.4;
}

.modelo-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Section: Visão de Futuro ───────────────────────────────────────────────── */

#visao {
  background: var(--premium-beige);
  position: relative;
  overflow: hidden;
}

#visao::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(214,185,140,0.5) 0%, transparent 60%);
  pointer-events: none;
}

#visao .label { color: rgba(44, 44, 44, 0.45); position: relative; }
#visao h2 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 2.5rem;
  position: relative;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

#visao p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  line-height: 1.8;
  position: relative;
}

/* ─── Section: CTA Final ─────────────────────────────────────────────────────── */

#cta {
  background: #1a1a1a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,0.4), transparent);
}

#cta::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,126,0.07) 0%, transparent 70%);
  pointer-events: none;
}

#cta .label {
  color: rgba(200, 169, 126, 0.75);
  margin: 0 auto 1.75rem;
  display: block;
  position: relative;
  z-index: 1;
}

#cta h2 {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.38);
  margin: 0 auto 4rem;
  max-width: 420px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */

footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 0 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.3);
  margin-top: 1.1rem;
  max-width: 220px;
  line-height: 1.75;
}

.footer-logo {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
}

.footer-logo span { color: var(--premium-beige); }

.footer-col h5 {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.18);
}

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

.footer-social a {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-social a:hover { color: rgba(255,255,255,0.65); }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  :root { --section-py: 5.5rem; }

  .container { padding: 0 2rem; }

  .sobre-grid,
  .resolve-inner,
  .social-inner,
  .provador-inner,
  .modelo-inner,
  .diferenciais-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step { padding-left: 0; padding-right: 2rem; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
  .step:nth-child(3), .step:nth-child(4) { padding-top: 2rem; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .provador-visual { order: 0; }
  .social-visual   { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 4.5rem; }

  .container { padding: 0 1.5rem; }

  h1 { font-size: 2.25rem; letter-spacing: -0.025em; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.375rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  .sobre-grid  { gap: 2.5rem; }
  .diferenciais-inner { gap: 2.5rem; }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 2rem 0;
  }

  .step:last-child { border-bottom: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .modelo-cards { grid-template-columns: 1fr; }

  .provador-visual {
    flex-direction: column;
    align-items: center;
  }

  .provador-card { max-width: 200px; }
  .provador-card:last-child { margin-bottom: 0; }
}

@media (max-width: 480px) {
  .container     { padding: 0 1.25rem; }
  .problema-grid { grid-template-columns: 1fr; }
  .func-grid     { grid-template-columns: 1fr; }
  .publico-tags  { gap: 0.6rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ─── Animations ─────────────────────────────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }

/* ─── Microcopy Hero ────────────────────────────────────────────────────────── */

.microcopy-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--premium-beige);
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ─── Section: Prova Visual ─────────────────────────────────────────────────── */

#prova {
  background: rgba(234,231,225,0.45);
  border-top: 1px solid rgba(200,169,126,0.1);
  border-bottom: 1px solid rgba(200,169,126,0.1);
}

.prova-header {
  margin-bottom: 4rem;
  max-width: 640px;
}

.prova-header h2 { margin-bottom: 0.75rem; }

.prova-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.prova-flow {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.prova-step { flex-shrink: 0; }

.prova-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.15);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 2rem;
  text-align: center;
  width: 220px;
}

.prova-card-before {
  background: linear-gradient(160deg, #f8f6f2 0%, #ede8e0 100%);
}

.prova-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.prova-hanger {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.prova-hanger-bar {
  width: 48px;
  height: 2px;
  background: var(--premium-beige);
  border-radius: 1px;
  opacity: 0.5;
}

.prova-hanger-hook {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--premium-beige);
  border-radius: 50% 50% 0 0;
  border-bottom: none;
  margin: 0 auto;
  opacity: 0.5;
}

.prova-garment {
  width: 64px;
  height: 80px;
  background: linear-gradient(160deg, var(--light-beige) 0%, var(--premium-beige) 100%);
  border-radius: 8px 8px 16px 16px;
  opacity: 0.55;
  margin-top: 18px;
  position: relative;
}

.prova-garment::before,
.prova-garment::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 20px;
  height: 12px;
  background: inherit;
  border-radius: 4px 4px 0 0;
}

.prova-garment::before { left: 0; }
.prova-garment::after  { right: 0; }

.prova-card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--premium-beige);
  margin-bottom: 0.25rem;
}

.prova-card-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.prova-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--premium-beige);
  flex-shrink: 0;
}

.prova-arrow-line {
  width: 2rem;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--premium-beige));
}

.prova-outputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.prova-output-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,126,0.12);
  box-shadow: var(--shadow-card);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.prova-output-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.prova-output-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,169,126,0.15), rgba(200,169,126,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-beige);
  flex-shrink: 0;
  border: 1px solid rgba(200,169,126,0.15);
}

.prova-output-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.prova-output-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .prova-flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .prova-card { width: 100%; max-width: 300px; }
  .prova-arrow { transform: rotate(90deg); align-self: center; }
  .prova-arrow-line { width: 2rem; }
}

/* ─── Emotional reinforcement ───────────────────────────────────────────────── */

.problema-emotional {
  font-size: var(--text-lg);
  color: var(--dark);
  font-weight: 600;
  margin-top: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(200,169,126,0.08);
  border-left: 3px solid var(--premium-beige);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 680px;
}

/* ─── Section: Formulário de captação ───────────────────────────────────────── */

#formulario {
  background: transparent;
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
  align-items: start;
}

.form-text h2 {
  margin-bottom: 1.25rem;
  line-height: 1.12;
}

.form-text > p {
  font-size: var(--text-lg);
  color: var(--soft-black);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--premium-beige);
  background: rgba(200,169,126,0.1);
  border: 1px solid rgba(200,169,126,0.25);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.875rem;
}

.form-trust {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.form-trust p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.form-trust p::before {
  content: '✓';
  color: var(--premium-beige);
  font-weight: 700;
  font-size: 0.875rem;
}

/* Formulário */

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.15);
  box-shadow: var(--shadow-hover);
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.form-group label span {
  color: var(--premium-beige);
}

.form-group input,
.form-group select {
  font-family: var(--font-main);
  font-size: var(--text-sm);
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid #E5DED3;
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--premium-beige);
  box-shadow: 0 0 0 3px rgba(200,169,126,0.18);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: #d97070;
  box-shadow: 0 0 0 3px rgba(217,112,112,0.15);
}

.form-error {
  font-size: var(--text-sm);
  color: #d97070;
  background: rgba(217,112,112,0.08);
  border: 1px solid rgba(217,112,112,0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.btn-form {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: var(--text-base);
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-form-loading { display: none; }

.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  opacity: 0.8;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,169,126,0.2), rgba(200,169,126,0.05));
  border: 1.5px solid rgba(200,169,126,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--premium-beige);
}

.form-success h3 {
  font-size: var(--text-xl);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: var(--text-base);
  color: var(--soft-black);
  max-width: 340px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .form-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .lead-form { padding: 2.25rem 1.75rem; }
  .form-inner { gap: 2.5rem; }
}

/* ─── Botão WhatsApp Flutuante ───────────────────────────────────────────────── */

.wpp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.875rem 1.5rem 0.875rem 1.25rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  max-width: 220px;
}

.wpp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
  background: #1a1a1a;
}

.wpp-float-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #4FCE5D;
  filter: drop-shadow(0 0 4px rgba(79,206,93,0.4));
}

.wpp-float-label {
  font-family: var(--font-main);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
}

/* Pulsa suavemente para chamar atenção nos primeiros segundos */
.wpp-float.wpp-pulse {
  animation: wppPulse 0.6s ease;
}

@keyframes wppPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.07) translateY(-2px); }
  100% { transform: scale(1) translateY(0); }
}

/* Mobile: compacto */
@media (max-width: 480px) {
  .wpp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.875rem;
    border-radius: 50%;
    max-width: unset;
  }
  .wpp-float-label { display: none; }
  .wpp-float-icon  { width: 24px; height: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Vitrinni Studio — Páginas de Artigo / SEO
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.breadcrumb a,
.breadcrumb span {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--premium-beige); }

.breadcrumb-sep {
  color: rgba(138,138,138,0.4);
  font-size: 0.6rem;
}

/* ─── Page Hero (artigos) ────────────────────────────────────────────────── */

.page-hero {
  padding: 8rem 0 5rem;
  background: transparent;
  border-bottom: 1px solid rgba(200,169,126,0.12);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(ellipse at top right,
    rgba(200,169,126,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { max-width: 760px; position: relative; z-index: 1; }

.page-hero .label { margin-bottom: 1.5rem; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.page-hero-lead {
  font-size: clamp(1rem, 1.8vw, var(--text-xl));
  color: var(--soft-black);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-hero-meta span {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.page-hero-meta span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--premium-beige);
}

/* ─── Article Layout ─────────────────────────────────────────────────────── */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
  padding: 5rem 0 6rem;
}

/* ─── Article Body (prose) ───────────────────────────────────────────────── */

.article-body {
  min-width: 0;
}

.article-body h2 {
  font-size: clamp(1.375rem, 2.5vw, var(--text-3xl));
  font-weight: 700;
  color: var(--dark);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,169,126,0.15);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.article-body h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 0.875rem;
  letter-spacing: -0.015em;
}

.article-body p {
  font-size: var(--text-lg);
  color: var(--soft-black);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-body p:last-child { margin-bottom: 0; }

.article-body ul,
.article-body ol {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-body ul li,
.article-body ol li {
  font-size: var(--text-lg);
  color: var(--soft-black);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.article-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--premium-beige);
  font-weight: 400;
}

.article-body ol { counter-reset: article-counter; }

.article-body ol li {
  counter-increment: article-counter;
}

.article-body ol li::before {
  content: counter(article-counter) ".";
  position: absolute;
  left: 0;
  color: var(--premium-beige);
  font-weight: 600;
  font-size: var(--text-sm);
}

.article-body strong {
  color: var(--dark);
  font-weight: 600;
}

.article-body a {
  color: var(--premium-beige);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200,169,126,0.4);
  transition: color var(--transition), text-decoration-color var(--transition);
}

.article-body a:hover {
  color: var(--gold-deep);
  text-decoration-color: var(--gold-deep);
}

/* ─── Article Highlight Box ──────────────────────────────────────────────── */

.article-highlight {
  background: rgba(200,169,126,0.07);
  border-left: 3px solid var(--premium-beige);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}

.article-highlight p {
  font-size: var(--text-lg) !important;
  color: var(--dark) !important;
  font-weight: 500;
  margin-bottom: 0 !important;
  line-height: 1.65;
}

/* ─── Article Inline CTA ─────────────────────────────────────────────────── */

.article-cta-inline {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-cta-inline::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,126,0.4), transparent);
}

.article-cta-inline h3 {
  color: var(--white) !important;
  font-size: var(--text-xl) !important;
  margin-top: 0 !important;
  margin-bottom: 0.875rem !important;
}

.article-cta-inline p {
  color: rgba(255,255,255,0.55) !important;
  font-size: var(--text-base) !important;
  margin-bottom: 1.75rem !important;
}

.article-cta-inline .btn { min-width: 240px; }

/* ─── Article Sidebar ────────────────────────────────────────────────────── */

.article-sidebar {
  position: sticky;
  top: calc(4.75rem + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-cta {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.18);
  box-shadow: var(--shadow-hover);
  padding: 2.25rem 2rem;
}

.sidebar-cta-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--premium-beige);
  margin-bottom: 1rem;
}

.sidebar-cta h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sidebar-cta p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.sidebar-cta-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  text-align: center;
  opacity: 0.7;
}

.sidebar-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-features li {
  font-size: var(--text-sm);
  color: var(--soft-black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-features li::before {
  content: '✓';
  color: var(--premium-beige);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.sidebar-related {
  background: rgba(234,231,225,0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.12);
  padding: 1.75rem 1.75rem;
}

.sidebar-related-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--premium-beige);
  margin-bottom: 1.25rem;
}

.sidebar-related ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-related ul li a {
  font-size: var(--text-sm);
  color: var(--soft-black);
  line-height: 1.45;
  transition: color var(--transition);
  text-decoration: none;
  display: block;
}

.sidebar-related ul li a:hover { color: var(--premium-beige); }

/* ─── Related Articles (bottom) ──────────────────────────────────────────── */

.related-articles {
  padding: 5rem 0;
  background: rgba(234,231,225,0.4);
  border-top: 1px solid rgba(200,169,126,0.12);
}

.related-articles-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--premium-beige);
  margin-bottom: 0.75rem;
}

.related-articles h2 {
  font-size: clamp(1.375rem, 2.5vw, var(--text-3xl));
  margin-bottom: 3rem;
  color: var(--dark);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.12);
  box-shadow: var(--shadow-card);
  padding: 2rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.related-card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--premium-beige);
  margin-bottom: 0.875rem;
}

.related-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.related-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.related-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--premium-beige);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition);
}

.related-card:hover .related-card-link { gap: 0.625rem; }

/* ─── Article responsive ─────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero { padding: 7rem 0 4rem; }
  .article-layout { padding: 3.5rem 0 4.5rem; }
  .article-body h2 { font-size: 1.375rem; margin-top: 2.5rem; }
  .article-body p,
  .article-body ul li,
  .article-body ol li { font-size: var(--text-base); }
  .article-cta-inline { padding: 2rem 1.5rem; }
  .article-cta-inline .btn { min-width: unset; width: 100%; }
  .article-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Vitrinni Studio — UI Upgrade v2
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero: two-column layout ────────────────────────────────────────────── */

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: none;
}

.hero-content { max-width: 580px; }

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 5rem) !important;
  line-height: 1.04 !important;
  font-weight: 700;
  letter-spacing: -0.035em !important;
  max-width: 560px;
}

/* CTA hero maior */
.hero-actions .btn-primary {
  min-height: 60px;
  padding: 1rem 2.75rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ─── Hero Mockup ─────────────────────────────────────────────────────────── */

.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hmock-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 440px;
}

.hmock-before {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.2);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hmock-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
}

.hmock-garment {
  width: 60px;
  height: 80px;
  background: linear-gradient(160deg, var(--light-beige) 0%, var(--premium-beige) 100%);
  border-radius: 8px 8px 20px 20px;
  opacity: 0.7;
  position: relative;
  margin: 0.5rem 0;
}

.hmock-garment::before,
.hmock-garment::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 22px;
  height: 14px;
  background: inherit;
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}
.hmock-garment::before { left: 2px; }
.hmock-garment::after  { right: 2px; }

.hmock-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.hmock-arrow-icon {
  color: var(--premium-beige);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}

.hmock-ai-badge {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--premium-beige);
  background: rgba(200,169,126,0.12);
  border: 1px solid rgba(200,169,126,0.25);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
}

.hmock-after {
  flex: 1.3;
}

.hmock-post {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.2);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.hmock-post-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem 0.625rem;
}

.hmock-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-highlight), var(--gold-deep));
  flex-shrink: 0;
}

.hmock-store {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.hmock-model-area {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #f0ebe3 0%, #e0d5c5 50%, #d4c3a8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hmock-model-fig {
  width: 55%;
  height: 95%;
  background: linear-gradient(180deg, rgba(200,169,126,0.4) 0%, rgba(184,150,110,0.6) 100%);
  border-radius: 40% 40% 0 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hmock-model-fig::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200,169,126,0.5);
}

.hmock-ready-badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-highlight), var(--gold-deep));
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(200,169,126,0.4);
}

.hmock-caption-area {
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hmock-caption-line {
  height: 6px;
  background: var(--light-beige);
  border-radius: 3px;
}

.hmock-caption-line:first-child { width: 92%; }
.hmock-caption-line:last-child  { width: 65%; }

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero-mockup { display: none; }
  .hero-content { max-width: 680px; }
}

/* ─── Func-cards: ícones ─────────────────────────────────────────────────── */

.func-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,169,126,0.15), rgba(200,169,126,0.05));
  border: 1px solid rgba(200,169,126,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-beige);
  margin-bottom: 1.75rem;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.func-card:hover .func-card-icon {
  background: linear-gradient(135deg, rgba(200,169,126,0.22), rgba(200,169,126,0.1));
  border-color: rgba(200,169,126,0.35);
}

/* esconder o número quando tiver ícone */
.func-card-icon + .func-card-num { display: none; }

/* ─── Social config: visual tags ─────────────────────────────────────────── */

.social-config {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.social-config-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid rgba(200,169,126,0.18);
  transition: all var(--transition);
  cursor: default;
}

.social-config-item:hover {
  background: var(--white);
  border-color: var(--premium-beige);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,126,0.15);
}

.social-config-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(200,169,126,0.2), rgba(200,169,126,0.08));
  border: 1px solid rgba(200,169,126,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.social-config-item p {
  font-size: 0.8rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}

.social-config-item p strong { font-weight: 700; }

.social-config-item p em {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 0.1rem;
  line-height: 1.4;
}

.social-unique {
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, rgba(200,169,126,0.12), rgba(200,169,126,0.04));
  border-left: 3px solid var(--premium-beige);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.social-unique p {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

/* ─── Provador: badge ─────────────────────────────────────────────────────── */

.provador-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--premium-beige);
  background: rgba(200,169,126,0.1);
  border: 1px solid rgba(200,169,126,0.25);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.875rem;
  margin-bottom: 1.5rem;
}

.provador-badge::before {
  content: '+';
  font-size: 0.875rem;
  font-weight: 700;
}

/* ─── Steps: ícones grandes + linha ─────────────────────────────────────── */

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(200,169,126,0.12);
  border: 1px solid rgba(200,169,126,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-beige);
  margin-bottom: 1.75rem;
  transition: background var(--transition);
}

.step:hover .step-icon {
  background: rgba(200,169,126,0.2);
}

.step-icon + .step-num { display: none; }

/* Linha de conexão entre steps */
.steps-grid {
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 26px; /* alinhado ao centro do ícone */
  left: calc(52px / 2);
  right: calc(52px / 2);
  height: 1px;
  background: linear-gradient(90deg, var(--premium-beige), rgba(200,169,126,0.2));
  opacity: 0.3;
  pointer-events: none;
}

/* ─── Plan Cards (Modelo de Negócio) ─────────────────────────────────────── */

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.15);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.plan-card--pro {
  border: 2px solid var(--premium-beige);
  transform: scale(1.03);
  box-shadow: var(--shadow-hover), 0 0 0 1px rgba(200,169,126,0.1);
  z-index: 1;
}

.plan-card--pro:hover {
  transform: scale(1.03) translateY(-3px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold-highlight), var(--gold-deep));
  border-radius: var(--radius-pill);
  padding: 0.3rem 1rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(200,169,126,0.4);
}

.plan-name {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--premium-beige);
  margin-bottom: 1rem;
}

.plan-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.plan-card > p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: var(--text-sm);
  color: var(--soft-black);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  color: var(--premium-beige);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.plan-cta {
  margin-top: auto;
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

@media (max-width: 1024px) {
  .plan-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .plan-card--pro { transform: none; }
  .plan-card--pro:hover { transform: translateY(-3px); }
}

@media (max-width: 768px) {
  .social-config { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* ─── Footer: frase premium + CTA ────────────────────────────────────────── */

.footer-tagline {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-tagline-text {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  max-width: 520px;
  letter-spacing: -0.015em;
}

.footer-tagline-text span {
  color: var(--premium-beige);
}

@media (max-width: 768px) {
  .footer-tagline { flex-direction: column; gap: 1.75rem; text-align: center; }
  .footer-tagline .btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   Vitrinni Studio — Seção: Vitrine Local
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Layout da seção ────────────────────────────────────────────────────── */

#vitrine-local {
  background: transparent;
}

.vitrine-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 7rem;
  align-items: center;
}

/* ─── Coluna de texto ────────────────────────────────────────────────────── */

.vitrine-sub {
  font-size: var(--text-lg);
  color: var(--soft-black);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.vitrine-impact {
  margin-bottom: 2.5rem;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(90deg, rgba(200,169,126,0.12), rgba(200,169,126,0.04));
  border-left: 3px solid var(--premium-beige);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.vitrine-impact p {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* ─── Mini-cards de benefício ────────────────────────────────────────────── */

.vitrine-cards {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.vitrine-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(200,169,126,0.13);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.vitrine-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,169,126,0.28);
}

.vitrine-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,169,126,0.18), rgba(200,169,126,0.06));
  border: 1px solid rgba(200,169,126,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--premium-beige);
  flex-shrink: 0;
}

.vitrine-card h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.vitrine-card p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── Mockup: app vitrine local ──────────────────────────────────────────── */

.vitrine-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vmock-phone {
  width: 100%;
  max-width: 300px;
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(200,169,126,0.18);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.1),
    0 8px 24px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}

.vmock-header {
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(160deg, #f8f6f2 0%, #f0ebe3 100%);
  border-bottom: 1px solid rgba(200,169,126,0.12);
}

.vmock-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.vmock-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.vmock-nearby-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--premium-beige);
  background: rgba(200,169,126,0.07);
  border-bottom: 1px solid rgba(200,169,126,0.1);
}

/* ─── Store rows ─────────────────────────────────────────────────────────── */

.vmock-store {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--transition);
}

.vmock-store:hover { background: rgba(200,169,126,0.04); }

.vmock-store-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
}

.vmock-img-a { background: linear-gradient(135deg, #e8d5c0, #d4b896); }
.vmock-img-b { background: linear-gradient(135deg, #d4c4b0, #c0a882); }
.vmock-img-c { background: linear-gradient(135deg, var(--gold-highlight), var(--gold-deep)); }

.vmock-store-info { flex: 1; min-width: 0; }

.vmock-store-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vmock-store-dist {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.vmock-store-dist--you {
  color: var(--premium-beige);
}

.vmock-store-dist--you strong { font-weight: 700; }

.vmock-looks {
  display: flex;
  gap: 0.3rem;
}

.vmock-look {
  width: 28px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* variações de cor para os looks */
.vmock-look-1 { background: linear-gradient(160deg, #e8d5c0, #c8a97e); }
.vmock-look-2 { background: linear-gradient(160deg, #d4c4b0, #b8966e); }
.vmock-look-3 { background: linear-gradient(160deg, #f0e8dc, #d6b98c); opacity: 0.7; }
.vmock-look-4 { background: linear-gradient(160deg, #ccd5d0, #9bb0a8); }
.vmock-look-5 { background: linear-gradient(160deg, #d5d0cc, #a8a0a0); }
.vmock-look-6 { background: linear-gradient(160deg, #e0dcda, #c0b8b8); opacity: 0.7; }
.vmock-look-7 { background: linear-gradient(160deg, var(--gold-highlight), var(--gold-deep)); }
.vmock-look-8 { background: linear-gradient(160deg, #dfc49a, #c8a97e); }
.vmock-look-9 { background: linear-gradient(160deg, #e8d8c0, #d6b98c); opacity: 0.8; }

/* ─── Footer do mockup ───────────────────────────────────────────────────── */

.vmock-footer {
  padding: 0.875rem 1.25rem;
  background: linear-gradient(160deg, #f8f6f2 0%, #f0ebe3 100%);
  display: flex;
  justify-content: center;
}

.vmock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--premium-beige);
  background: rgba(200,169,126,0.12);
  border: 1px solid rgba(200,169,126,0.25);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .vitrine-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .vitrine-mockup {
    order: -1;
  }

  .vmock-phone { max-width: 360px; }
}

@media (max-width: 768px) {
  .vitrine-cards {
    gap: 0.75rem;
  }
  .vmock-phone { max-width: 100%; }
}

