/* ============================================================
   VIRALI — style.css
   Plataforma para comércio local aparecer no Google
   Paleta: #FF6B00 | #E53935 | #1ABC9C | branco | cinza claro
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange:  #FF6B00;
  --red:     #E53935;
  --teal:    #1ABC9C;
  --white:   #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100:#F0F1F3;
  --gray-400:#9CA3AF;
  --gray-700:#374151;
  --gray-900:#111827;

  --gradient-brand: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  --gradient-bg:    linear-gradient(160deg, #fff8f4 0%, #fdf4f4 50%, #f0faf8 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 8px 40px rgba(255, 107, 0, 0.10);
  --shadow-btn:  0 4px 20px rgba(255, 107, 0, 0.35);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--gradient-bg);
  color: var(--gray-900);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



@keyframes floatPin {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Header ───────────────────────────────────────────────── */
header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,107,0,0.08);
  background: rgba(255,255,255,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-dot {
  color: var(--teal);
  -webkit-text-fill-color: var(--teal);
}

/* ── Main ─────────────────────────────────────────────────── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 620px;
  width: 100%;
  text-align: center;
}

/* ── Pin Icon ─────────────────────────────────────────────── */
.pin-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.pin-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: pulse-ring 2s ease-out infinite;
}

.pin-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  animation: floatPin 3s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 6px 16px rgba(255,107,0,0.30));
}

/* ── Content ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,107,0,0.10);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  animation: slideUp 0.7s 0.2s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-ring 1.5s ease-out infinite;
  flex-shrink: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--gray-900);
  margin-bottom: 1rem;
  animation: slideUp 0.7s 0.3s ease both;
}

h1 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 1rem;
  animation: slideUp 0.7s 0.4s ease both;
}

.description {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  animation: slideUp 0.7s 0.5s ease both;
}

/* ── Card ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,107,0,0.10);
  box-shadow: var(--shadow-card);
  padding: 2rem 2rem 2.25rem;
  margin-bottom: 2.5rem;
  animation: slideUp 0.7s 0.6s ease both;
}

.card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1rem;
}

/* ── Email Form ───────────────────────────────────────────── */
.email-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

#btn-submit {
  grid-column: span 2;
}

.email-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.email-input::placeholder {
  color: var(--gray-400);
}

.email-input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}

.btn-primary {
  padding: 0.85rem 1.6rem;
  background: var(--gradient-brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  background-size: 400px 100%;
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.45);
  filter: brightness(1.06);
}

.btn-primary:hover::after {
  opacity: 1;
  animation: shimmer 0.6s linear;
}

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

/* ── Confirmation Message ─────────────────────────────────── */
.confirm-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(26,188,156,0.10);
  border: 1px solid rgba(26,188,156,0.25);
  border-radius: var(--radius-sm);
  color: #0e9075;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideUp 0.4s ease both;
}

.confirm-msg.visible {
  display: flex;
}

/* ── Error Message ────────────────────────────────────────── */
.error-msg {
  display: none;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
}

.error-msg.visible {
  display: block;
}

/* ── Features List ────────────────────────────────────────── */
.features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  margin-top: 0;
  animation: slideUp 0.7s 0.7s ease both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.18s, box-shadow 0.18s;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(26,188,156,0.12);
}

.feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-100);
}

footer a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
  header  { padding: 1.1rem 1.25rem; }
  main    { padding: 2rem 1rem 3rem; }
  .card   { padding: 1.5rem 1.25rem 1.75rem; }

  .email-form {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  #btn-submit {
    grid-column: span 1;
  }

  /* Stats */
  .stats-section { padding: 3rem 1.25rem; }
  .stats-grid    { gap: 1rem; }
  .stat-card     { padding: 1.5rem 1rem; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* FAQ */
  .faq-section   { padding: 3rem 1.25rem 4rem; }
  .faq-question  { font-size: 0.9rem; padding: 1rem 1.1rem; }
  .faq-answer > div { font-size: 0.88rem; padding: 0 1.1rem 1rem; }

  /* Footer keywords */
  .footer-keywords { gap: 0.5rem 0.75rem; }
}

/* ── Seções Adicionais ─────────────────────────────────────── */

/* Container wide para seções de conteúdo */
.container--wide {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
  min-height: 70vh;
  scroll-margin-top: 80px; /* compensa header sticky ao usar âncora */
}

/* ── Stats Section ───────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,57,53,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.stats-section .section-title { color: #fff; }
.stats-section .section-sub   { color: rgba(255,255,255,0.65); }

.stats-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  transition: transform 0.2s, border-color 0.2s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,0.4);
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}

/* ── Benefits Grid ──────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}

.benefit-item:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(26,188,156,0.30);
}

.benefit-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefit-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.benefit-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ Section ────────────────────────────────────────────── */
.faq-section {
  padding: 5rem 2rem 6rem;
  background: var(--gradient-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(255,107,0,0.25);
  box-shadow: 0 4px 20px rgba(255,107,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question[aria-expanded="true"] {
  color: var(--orange);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  transition: transform 0.3s, background 0.2s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,107,0,0.12);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
  padding: 0 1.5rem;
  transition: padding 0.35s ease;
}

.faq-answer.open > div {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--orange);
}

/* ── Footer Keywords ────────────────────────────────────────── */
.footer-keywords {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer-desc {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.4rem;
  opacity: 0.75;
}

/* ── Responsive — Stats + Benefits + FAQ ─────────────────── */
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid    { flex-direction: column; align-items: center; }
  .stat-card     { max-width: 100%; width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   SHOWCASE SECTION — Vitrine de Alta Conversão
   ══════════════════════════════════════════════════════════ */

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(255,107,0,0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}

@keyframes floatAlt {
  0%, 100% { transform: translateY(-5px) rotate(0.5deg); }
  50%       { transform: translateY(5px) rotate(-0.5deg); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.showcase-section {
  padding: 6rem 2rem 7rem;
  background: var(--gray-100);
  border-top: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Orbs decorativos de fundo */
.showcase-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.showcase-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(26,188,156,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Eyebrow badge ─────────────────────────────────────────── */
.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(229,57,53,0.08));
  border: 1px solid rgba(255,107,0,0.20);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.showcase-eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseGlow 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Headlines ─────────────────────────────────────────────── */
.showcase-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.highlight-gradient {
  background: linear-gradient(135deg, #FF6B00 0%, #E53935 50%, #FF6B00 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.showcase-sub {
  max-width: 620px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

.showcase-sub strong {
  color: var(--gray-900);
}

/* ── Galeria Principal (Layout Bento) ──────────────────────── */
.showcase-gallery {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Grid interior dos 4 cards menores */
.showcase-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* ── Showcase Card Base ────────────────────────────────────── */
.showcase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,107,0,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  cursor: default;
  position: relative;
}

.showcase-card::before {
  content: attr(data-label);
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  z-index: 2;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.showcase-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.showcase-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px rgba(255,107,0,0.16);
  border-color: rgba(255,107,0,0.25);
}

/* Card featured (Radar Virali) com animação flutuante */
.showcase-card--featured {
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(255,107,0,0.15);
  box-shadow: 0 8px 32px rgba(255,107,0,0.12);
}

.showcase-card--featured:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(255,107,0,0.20);
}

/* Card wide (Painel) ocupa 3 colunas */
.showcase-card--wide {
  grid-column: 1 / -1;
  animation: floatAlt 7s ease-in-out 1s infinite;
}

.showcase-card--wide:hover {
  animation-play-state: paused;
}

/* ── Imagens dentro dos cards ──────────────────────────────── */
.showcase-card-inner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.showcase-card-inner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.showcase-card:hover .showcase-card-inner img {
  transform: scale(1.04);
}

/* ── Caption embaixo de cada card ──────────────────────────── */
.showcase-card-caption {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem 1rem;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}

.caption-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.showcase-card-caption strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.showcase-card-caption p {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.4;
  margin: 0;
}

/* ── Social Proof Bar ──────────────────────────────────────── */
.showcase-proof {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.showcase-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(26,188,156,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.proof-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 3rem;
  text-align: center;
}

.proof-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -1px;
}

.proof-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  max-width: 160px;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── CTA de urgência ───────────────────────────────────────── */
.showcase-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.30);
  color: #ffb680;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.btn-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: var(--gradient-brand);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: -0.2px;
  box-shadow: 0 8px 32px rgba(255,107,0,0.45);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-showcase-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255,107,0,0.55);
}

.btn-showcase-cta:active {
  transform: translateY(0) scale(0.98);
}

.cta-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ── Responsivo Showcase ───────────────────────────────────── */
@media (max-width: 900px) {
  .showcase-gallery {
    grid-template-columns: 1fr;
  }

  .showcase-card--featured {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .showcase-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .showcase-section { padding: 4rem 1.25rem 5rem; }

  .showcase-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .showcase-card--featured {
    max-width: 260px;
  }

  .proof-stats {
    gap: 1.5rem;
    flex-direction: column;
  }

  .proof-item { padding: 0; }

  .proof-divider {
    width: 48px;
    height: 1px;
  }

  .proof-number { font-size: 2.2rem; }

  .btn-showcase-cta {
    font-size: 0.95rem;
    padding: 1rem 1.75rem;
    white-space: normal;
    text-align: center;
  }

  .showcase-proof { padding: 2rem 1.25rem; }
}

@media (max-width: 380px) {
  .showcase-cards-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card--featured {
    max-width: 100%;
  }
}

