/* WODTECHX — Landing Page PhDFIT */
:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f6f7f9;
  --color-text: #1a1a1a;
  --color-muted: #5c6370;
  --color-accent: #ff6b2c;
  --color-accent-dark: #e85a1f;
  --gradient-brand: linear-gradient(135deg, #ff8a3d 0%, #ff4d4d 100%);
  --gradient-purple: linear-gradient(135deg, #7c5cff 0%, #a855f7 100%);
  --color-purple: #6c63ff;
  --color-cta-light: #fff5ad;
  --color-dark: #0d0d0d;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: min(1140px, 92vw);
  --header-h: 72px;
  --hero-bg: #f4f6f8;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0 0 1rem; }
h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 700; }

.container { width: var(--container); margin-inline: auto; }
.text-accent { color: var(--color-accent); }
.text-accent-purple { color: var(--color-purple); }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: #ffe082; }
.section-intro {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}
.section-intro.light { color: rgba(255,255,255,0.9); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-dark);
  color: #fff;
}
.skip-link:focus { left: 0; }

/* Icons */
.icon { width: 28px; height: 28px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.icon-white { color: #fff; stroke: #fff; }
.icon-gradient {
  width: 48px;
 height: 48px;
  stroke: url(#icon-gradient);
  color: var(--color-accent);
}
.icon-menu { display: block; }
.icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}
.btn-outline {
  background: #fff;
  color: var(--color-purple);
  border-color: var(--color-purple);
}
.btn-cta-light {
  background: var(--color-cta-light);
  color: var(--color-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo img { height: 36px; width: auto; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav a:not(.btn) {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.nav a:not(.btn):hover { color: var(--color-accent); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-text);
}

/* Hero — primeira dobra (100vh) */
.hero-fold {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  background-color: var(--hero-bg);
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-logo-shape {
  position: absolute;
  right: -5%;
  top: 50%;
  width: min(55vw, 520px);
  height: auto;
  transform: translateY(-48%);
  opacity: 1;
}

.hero .container.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(1.25rem, 3vh, 2.5rem);
}

.hero-copy {
  max-width: 540px;
}
.hero-copy .eyebrow {
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.hero-copy h1 {
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-highlight {
  color: var(--color-accent);
  display: inline;
}
.hero-copy .lead {
  color: var(--color-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-hero {
  background: transparent;
  color: var(--color-purple);
  border: 2px solid var(--color-purple);
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
}
.btn-hero:hover {
  background: var(--color-purple);
  color: #fff;
}
.btn-hero-secondary {
  background: transparent;
  color: var(--color-muted);
  border: none;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-hero-secondary:hover {
  color: var(--color-accent);
  transform: none;
  box-shadow: none;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  min-height: 280px;
}
.hero-devices-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  object-position: center right;
  margin-left: auto;
}

.hero-fold-accent {
  flex-shrink: 0;
  height: 10px;
  background: var(--gradient-brand);
  width: 100%;
}

/* Stats */
.stats {
  padding: 2.5rem 0;
  background: #fff;
  border-block: 1px solid rgba(0,0,0,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
/* Ícones grandes em cards (~80px) */
.card-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  min-height: 80px;
}
.card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.card-icon--accent { color: var(--color-accent); }
.card-icon--white { color: #fff; }
.card-icon--purple { color: var(--color-purple); }

.stat-item strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
.stat-item span { font-size: 0.85rem; color: var(--color-muted); }

/* VIP section */
.vip-section { padding: 2rem 0 0; }
.vip-figure {
  margin: 0 auto -4rem;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.vip-figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/10;
}
.vip-banner {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 5rem 2rem 2.5rem;
  margin-top: 0;
}
.vip-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.vip-copy { color: #fff; }
.vip-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.vip-copy p { opacity: 0.95; margin-bottom: 1.5rem; }

.phones-stack {
  position: relative;
  min-height: 280px;
}
.phone-frame {
  position: absolute;
  width: 120px;
  height: 220px;
  background: #111;
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.phone-1 { left: 0; top: 20px; transform: rotate(-8deg); z-index: 1; }
.phone-2 { left: 50%; top: 0; transform: translateX(-50%) rotate(2deg); z-index: 3; width: 130px; height: 240px; }
.phone-3 { right: 0; top: 30px; transform: rotate(8deg); z-index: 2; }
.phone-screen {
  background: var(--gradient-brand);
  border-radius: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}
.phone-screen-alt { background: var(--gradient-purple); }
.phone-logo { font-size: 0.55rem; opacity: 0.9; letter-spacing: 0.05em; }

/* Gradient features */
.gradient-features {
  background: var(--gradient-brand);
  color: #fff;
  padding: 4rem 0;
  margin-top: 4rem;
  text-align: center;
}
.gradient-features h2 { max-width: 700px; margin-inline: auto; }
.features-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
  text-align: left;
}
.feature-block .card-icon-wrap {
  margin-bottom: 1.25rem;
  justify-content: flex-start;
}
.feature-block h3 { text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.04em; margin-top: 0; }
.feature-block p { font-size: 0.9rem; opacity: 0.92; line-height: 1.65; }

/* App benefits */
.app-benefits {
  padding: 5rem 0;
  background: #fff;
  text-align: center;
}
.app-benefits-header {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.app-benefits-header h2 { margin-bottom: 0.75rem; }
.app-benefits-header .section-intro { margin-bottom: 0; }

.benefits-panel {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefits-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  text-align: left;
}

.benefits-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.benefits-visual-bg {
  position: absolute;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.12) 0%, rgba(255, 107, 44, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.benefits-phone-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-inline: auto;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-card {
  color: #fff;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.benefit-card--primary {
  background: var(--gradient-brand);
}
.benefit-card--secondary {
  background: var(--gradient-purple);
  margin-left: clamp(0px, 3vw, 2rem);
}
.benefit-card .card-icon-wrap {
  justify-content: flex-start;
  min-height: 72px;
  margin-bottom: 1rem;
}
.benefit-card .card-icon {
  width: 72px;
  height: 72px;
}
.benefit-card h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
  margin-top: 0;
}
.benefit-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.95;
  margin: 0;
}

.benefits-cta {
  padding-top: 0.5rem;
  margin-left: clamp(0px, 3vw, 2rem);
}
.benefits-cta .btn-outline {
  min-width: 200px;
}

.gradient-card {
  background: var(--gradient-brand);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.gradient-card h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.gradient-card p { font-size: 0.9rem; opacity: 0.95; margin: 0; line-height: 1.65; }
.gradient-card-purple { background: var(--gradient-purple); }

.soft-card {
  background: #ede9fe;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
}
.soft-card h3 {
  color: var(--color-purple);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.soft-card p { color: var(--color-muted); margin: 0; font-size: 0.95rem; }

/* Feature rows */
.feature-rows { padding: 4rem 0 2rem; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feature-row-reverse .feature-row-media { order: 2; }
.feature-row-reverse .feature-row-content { order: 1; }
.feature-row-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-inline: auto;
}
.feature-row-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-row-media-trainer { position: relative; }
.feature-row-media-trainer img {
  border-radius: var(--radius-lg);
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}
.video-frame {
  position: absolute;
  inset: 10% 5%;
  border: 3px solid #fff;
  border-radius: var(--radius);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
/* Notificações — mockup de celular (mesmo padrão das feature-media-panel) */
.feature-row--notify .feature-media-panel {
  min-height: 400px;
}
.notify-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 8px solid #111;
  background: #111;
}
.notify-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.notification-bubble {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  background: rgba(255, 140, 50, 0.95);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  max-width: 90%;
  box-shadow: var(--shadow-md);
}
.notification-bubble .icon { width: 20px; height: 20px; flex-shrink: 0; }
.notification-bubble p { margin: 0; line-height: 1.4; }

/* Painéis visuais das feature rows (avaliação + pagamentos) */
.feature-media-panel {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.feature-media-glow {
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.1) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.feature-media-glow--purple {
  background: radial-gradient(circle, rgba(108, 99, 255, 0.14) 0%, transparent 68%);
}

.feature-highlight-card {
  width: 100%;
  max-width: 440px;
  color: #fff;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.feature-highlight-card--purple { background: var(--gradient-purple); }
.feature-highlight-card .card-icon-wrap {
  justify-content: flex-start;
  min-height: 72px;
  margin-bottom: 1rem;
}
.feature-highlight-card .card-icon { width: 72px; height: 72px; }
.feature-highlight-card h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}
.feature-highlight-card > p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.95;
  margin: 0 0 1rem;
}
.feature-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}
.feature-bullets .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Mockup tablet + phone — avaliação física */
.feature-row--assessment .feature-media-panel { min-height: 400px; }
.ui-device {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.ui-device--tablet {
  left: 0;
  top: 50%;
  transform: translateY(-52%);
  width: min(100%, 300px);
  padding: 1rem 1.15rem 1.25rem;
  border-radius: 14px;
}
.ui-device--phone {
  right: 0;
  bottom: 8%;
  width: 168px;
  padding: 1.75rem 1rem 1rem;
  border-radius: 22px;
  z-index: 2;
  border: 6px solid #111;
}
.ui-device-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 0.75rem;
}
.ui-device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
}
.ui-device-bar span:first-child { background: #ff5f57; }
.ui-device-bar span:nth-child(2) { background: #febc2e; }
.ui-device-bar span:nth-child(3) { background: #28c840; }
.ui-device-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.ui-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a3d, #ff4d4d);
  flex-shrink: 0;
}
.ui-device-head strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
}
.ui-device-head small {
  font-size: 0.72rem;
  color: var(--color-muted);
}
.ui-form-list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}
.ui-form-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.ui-form-list li span { color: var(--color-muted); }
.ui-form-list li em {
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
}
.ui-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ui-chip--ok {
  background: rgba(108, 99, 255, 0.12);
  color: var(--color-purple);
}
.ui-device-notch {
  width: 48px;
  height: 5px;
  background: #222;
  border-radius: 99px;
  margin: 0 auto 0.65rem;
}
.ui-device--phone strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.ui-check-list {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 0.72rem;
  color: var(--color-muted);
}
.ui-check-list li {
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
}
.ui-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.ui-progress {
  height: 6px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.ui-progress span {
  display: block;
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 99px;
}
.ui-device--phone small {
  font-size: 0.65rem;
  color: var(--color-muted);
}

/* Mockup pagamentos */
.feature-row--payments .feature-media-panel {
  min-height: 380px;
  justify-content: flex-start;
}
.ui-payment-board {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  z-index: 1;
}
.ui-plan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.ui-plan-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.ui-plan-card-head span {
  font-weight: 800;
  font-size: 0.9rem;
}
.ui-plan-card-head em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #059669;
  background: #d1fae5;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.ui-field {
  margin-bottom: 0.65rem;
}
.ui-field label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}
.ui-field span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  background: #f8f9fb;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #eef0f3;
}
.ui-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.ui-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.1);
  color: var(--color-purple);
}
.ui-cards-fan {
  position: absolute;
  right: -8px;
  bottom: -28px;
  width: 200px;
  height: 120px;
  z-index: 2;
}
.ui-credit-card {
  position: absolute;
  width: 148px;
  height: 88px;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ui-credit-card--dark {
  background: linear-gradient(135deg, #2d2d2d, #0d0d0d);
  color: #fff;
  transform: rotate(-10deg);
  left: 0;
  bottom: 0;
}
.ui-credit-card--light {
  background: linear-gradient(135deg, #7c5cff, #a855f7);
  color: #fff;
  transform: rotate(8deg);
  right: 0;
  top: 0;
}
.ui-credit-card span { font-size: 0.8rem; letter-spacing: 0.08em; }
.ui-credit-card small { font-size: 0.7rem; opacity: 0.85; }
.ui-credit-card strong { font-size: 1.35rem; line-height: 1; }

.tagline-center {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-muted);
  padding: 2rem 0 0;
}

/* Admin */
.admin-section {
  padding: 5rem 0;
  background: #fff;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.check-list { margin: 1.5rem 0 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.check-list .icon { color: var(--color-accent); stroke: var(--color-accent); width: 22px; height: 22px; margin-top: 2px; }
.admin-visual { position: relative; }
.admin-card { max-width: 320px; position: relative; z-index: 2; }
.admin-photo {
  position: absolute;
  right: 0;
  top: 10%;
  width: 55%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

/* Differentials */
.differentials {
  padding: 4rem 0;
  background: var(--color-bg-soft);
  text-align: center;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}
.diff-card {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.diff-card .card-icon-wrap {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}
.diff-grid h3 { color: var(--color-accent); margin-bottom: 0.5rem; margin-top: 0; }
.diff-grid p { margin: 0; font-size: 0.9rem; color: var(--color-muted); }

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--color-bg-soft);
}
.testimonials h2 { text-align: center; margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}
.testimonial-card p {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
}
.testimonial-card footer span:last-child {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Lead */
.lead-section {
  padding: 5rem 0;
  background: var(--color-dark);
  color: #fff;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-copy h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.lead-copy > p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.lead-copy .check-list.light-list {
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.lead-copy .check-list.light-list li {
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.lead-copy .check-list.light-list .icon {
  stroke: var(--color-accent);
  color: var(--color-accent);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.lead-form {
  background: #fff;
  color: var(--color-text);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font: inherit;
}
.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--color-purple);
  border-color: var(--color-purple);
}
.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.25rem;
}
.form-feedback.success { color: #059669; }
.form-feedback.error { color: #dc2626; }
.form-legal {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin: 1rem 0 0;
}

/* Footer */
.site-footer {
  background: var(--gradient-brand);
  color: #fff;
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-tagline { opacity: 0.9; font-size: 0.9rem; margin-top: 1rem; }
.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-col h3.mt { margin-top: 1.5rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.footer-col a:hover { text-decoration: underline; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* WhatsApp FAB */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.fab-whatsapp:hover { transform: scale(1.04); }
.fab-whatsapp .icon { width: 22px; height: 22px; }

/* Responsive */
@media (max-width: 992px) {
  .hero .container.hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { max-width: none; margin-inline: auto; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { justify-content: center; min-height: 220px; }
  .hero-devices-img {
    margin-inline: auto;
    object-position: center;
    max-height: 45vh;
  }
  .hero-logo-shape {
    right: 50%;
    top: 62%;
    width: 90vw;
    transform: translate(50%, -50%);
    opacity: 0.5;
  }
  .benefit-card--secondary,
  .benefits-cta { margin-left: 0; }
  .benefits-cta { text-align: center; }
  .benefits-visual { min-height: 260px; order: -1; }
  .feature-media-panel {
    min-height: 340px;
    padding: 1rem;
  }
  .ui-device--tablet {
    left: 50%;
    transform: translate(-50%, -55%);
    width: 88%;
    max-width: 300px;
  }
  .ui-device--phone {
    right: 50%;
    transform: translate(42%, 0);
    bottom: 0;
  }
  .ui-payment-board { max-width: 100%; }
  .ui-cards-fan {
    right: 0;
    bottom: -20px;
    transform: scale(0.9);
    transform-origin: bottom right;
  }
  .feature-highlight-card { max-width: none; }
  .vip-banner-grid,
  .benefits-showcase,
  .feature-row,
  .admin-grid,
  .lead-grid { grid-template-columns: 1fr; }
  .feature-row-reverse .feature-row-media,
  .feature-row-reverse .feature-row-content { order: unset; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-three { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .phones-stack { min-height: 200px; margin-top: 2rem; }
  .admin-photo { position: static; width: 100%; margin-top: 1rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav ul { flex-direction: column; align-items: stretch; }
  .stats-grid,
  .testimonials-grid,
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fab-whatsapp span { display: none; }
  .hero-copy h1 { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .vip-figure { margin-bottom: -2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .fab-whatsapp:hover { transform: none; }
}
