@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

:root {
  --bg: #0C0C0C;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --surface-hover: #252525;
  --border: #2A2A2A;
  --border-light: #333;
  --orange: #F97316;
  --orange-hover: #EA580C;
  --orange-light: #FB923C;
  --orange-glow: rgba(249, 115, 22, 0.15);
  --orange-glow-strong: rgba(249, 115, 22, 0.3);
  --green: #22C55E;
  --whatsapp: #25D366;
  --text: #F5F5F5;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

/* ==================== LOGO / HEADER ==================== */
.header {
  text-align: center;
  padding: 40px 0 28px;
}

.logo {
  margin-bottom: 6px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.logo-top {
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  letter-spacing: -1px;
}

.logo-life {
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  color: var(--orange);
  letter-spacing: -1px;
}

.logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.header .tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.social-link svg { width: 18px; height: 18px; }

/* ==================== CTA PRINCIPAL ==================== */
.cta-main {
  background: linear-gradient(135deg, #F97316, #EA580C);
  border: none;
  border-radius: var(--radius);
  padding: 22px 20px;
  margin: 8px 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.35);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(249, 115, 22, 0.35); }
  50% { box-shadow: 0 6px 32px rgba(249, 115, 22, 0.55); }
}

.cta-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.5);
}

.cta-main:active { transform: scale(0.98); }

.cta-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-dot svg { width: 20px; height: 20px; }

.cta-content { flex: 1; }

.cta-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.cta-content span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.cta-chevron {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  transition: transform 0.2s;
}

.cta-main:hover .cta-chevron { transform: translateX(3px); }

/* ==================== SECTION ==================== */
.section {
  margin: 24px 0;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ==================== RESULT CARDS ==================== */
.results-carousel {
  position: relative;
  overflow: hidden;
}

.results-slides {
  display: flex;
  gap: 10px;
  will-change: transform;
}

.result-card {
  min-width: 200px;
  flex: 0 0 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.result-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.result-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out;
}

.result-img img.slide-hidden {
  opacity: 0;
}

.slide-label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  transition: background 0.4s, color 0.4s;
}

.slide-label.depois {
  background: var(--orange);
  color: #fff;
}

.slide-label.antes {
  background: rgba(0,0,0,0.7);
  color: #ccc;
}

.result-img .ph {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.result-tags {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  display: flex;
  justify-content: space-between;
}

.result-tags span {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-before { background: rgba(0,0,0,0.7); color: #ccc; }
.tag-after { background: var(--orange); color: #fff; }

.result-body {
  padding: 12px 14px;
}

.result-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.result-body span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.result-quote {
  font-size: 11px;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.testimonials-row::-webkit-scrollbar { display: none; }

.test-card {
  min-width: 260px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.test-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}

.test-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
}

/* ==================== HEALTH NEWS ==================== */
.news-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid #DC2626;
  border-radius: var(--radius-xs);
  margin: 8px 0 16px;
}

.news-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: #DC2626;
  padding: 3px 7px;
  border-radius: 3px;
  flex-shrink: 0;
}

.news-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==================== PROMO CARD ==================== */
.promo-card {
  background: var(--surface);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 20px;
  margin: 0 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(249,115,22,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.promo-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  position: relative;
}

.promo-prices {
  margin-bottom: 20px;
  position: relative;
}

.promo-old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}

.promo-main {
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.promo-main small {
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
}

.promo-main span {
  font-size: 64px;
  letter-spacing: -2px;
}

.promo-save {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
}

.promo-timer {
  margin-bottom: 20px;
  position: relative;
}

.timer-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.timer-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.timer-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px 6px;
  min-width: 52px;
  text-align: center;
}

.timer-box span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.timer-box small {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timer-sep {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}

.promo-btn {
  display: inline-block;
  padding: 14px 40px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
  animation: pulse-glow 2.5s ease-in-out infinite;
  position: relative;
}

.promo-btn:hover {
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.5);
  transform: translateY(-1px);
}

.promo-gift {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  font-style: italic;
  position: relative;
}

/* ==================== INFO CARD ==================== */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 16px 0;
}

.info-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.gym-carousel {
  margin-bottom: 14px;
  position: relative;
}

.gym-slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  scrollbar-width: none;
  border-radius: 10px;
}

.gym-slides::-webkit-scrollbar { display: none; }

.gym-slide {
  min-width: 100%;
  scroll-snap-align: center;
  position: relative;
  flex-shrink: 0;
}

.gym-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 320px;
  overflow: hidden;
}

.gym-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gym-caption {
  display: block;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface-2);
  text-align: center;
}

.gym-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.gym-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.gym-dot.active {
  background: var(--orange);
  width: 18px;
  border-radius: 3px;
}

.info-line.highlight {
  background: var(--orange-glow);
  padding: 8px 10px;
  border-radius: var(--radius-xs);
  margin: 4px -6px;
}

.info-line.highlight strong {
  color: var(--orange);
}

.info-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.info-line .ic {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 5px 10px;
  border-radius: 6px;
}

/* ==================== WHATSAPP ==================== */
.wa-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s;
  opacity: 0.7;
}

.wa-card:hover {
  opacity: 1;
  border-color: var(--border-light);
}

.wa-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-dot svg { width: 16px; height: 16px; color: #fff; }

.wa-text { flex: 1; }

.wa-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1px;
}

.wa-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.wa-chevron {
  color: var(--text-muted);
  font-size: 14px;
}

/* ==================== FOOTER ==================== */
.footer {
  text-align: center;
  padding: 28px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.footer p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer .ft-brand {
  font-weight: 700;
  color: var(--orange);
}

/* ==================== CHAT MODAL ==================== */
.chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.chat-overlay.open {
  opacity: 1;
  visibility: visible;
}

.chat-box {
  width: 100%;
  max-width: 440px;
  height: 92vh;
  background: #FAFAF9;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.chat-overlay.open .chat-box {
  transform: translateY(0);
}

.chat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #E5E5E5;
  background: #fff;
  flex-shrink: 0;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-who { flex: 1; }

.chat-who .cw-name {
  font-size: 14px;
  font-weight: 700;
  color: #18181B;
}

.chat-who .cw-status {
  font-size: 11px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-who .cw-status::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.chat-x {
  width: 32px;
  height: 32px;
  border: none;
  background: #F4F4F5;
  border-radius: 50%;
  font-size: 16px;
  color: #71717A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-x:hover { background: #E4E4E7; }

/* Chat body */
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Welcome */
.chat-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 32px 16px;
}

.w-avatar {
  width: 140px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.w-avatar img { width: 100%; }

.chat-welcome h2 {
  font-size: 20px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 6px;
}

.chat-welcome p {
  font-size: 14px;
  color: #71717A;
  margin-bottom: 28px;
}

.btn-begin {
  padding: 14px 44px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-begin:hover { box-shadow: 0 6px 24px rgba(249, 115, 22, 0.45); transform: translateY(-1px); }

/* Bubbles */
.bubble {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  animation: pop 0.25s ease-out;
}

@keyframes pop {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bubble.bot {
  background: #fff;
  border: 1px solid #E5E5E5;
  color: #27272A;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.bubble.user {
  background: #18181B;
  color: #FAFAFA;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Typing */
.typing {
  display: flex;
  gap: 4px;
  padding: 12px 15px;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  animation: pop 0.2s ease-out;
}

.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #A1A1AA;
  animation: bounce 1.4s infinite ease-in-out;
}

.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* Options */
.options {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-self: flex-end;
  width: 82%;
  animation: pop 0.25s ease-out;
}

.opt {
  padding: 11px 14px;
  border: 1.5px solid #D4D4D8;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #27272A;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
}

.opt:hover { border-color: #18181B; }

.opt:active, .opt.picked {
  background: #18181B;
  color: #fff;
  border-color: #18181B;
}

.opt[disabled] { opacity: 0.4; cursor: default; }

/* Social proof card in chat */
.proof-wrap {
  align-self: flex-start;
  max-width: 82%;
  animation: pop 0.3s ease-out;
}

.proof-card {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  overflow: hidden;
}

.proof-img {
  width: 100%;
  height: 130px;
  background: linear-gradient(135deg, #F4F4F5, #E4E4E7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #A1A1AA;
}

.proof-img img { width: 100%; height: 100%; object-fit: cover; }

.proof-body {
  padding: 12px 14px;
  font-size: 13px;
  color: #52525B;
  line-height: 1.55;
}

.proof-body strong { color: #18181B; }

/* Form in chat */
.chat-form {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: pop 0.25s ease-out;
}

.chat-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #D4D4D8;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: #18181B;
  outline: none;
  transition: border-color 0.15s;
}

.chat-form input:focus { border-color: #18181B; }
.chat-form input::placeholder { color: #A1A1AA; }

.btn-form {
  padding: 13px;
  border: none;
  border-radius: 12px;
  background: #18181B;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 2px;
}

.btn-form:hover { background: #27272A; }
.btn-form:disabled { opacity: 0.4; cursor: not-allowed; }

/* Offer in chat */
.offer-wrap {
  align-self: stretch;
  animation: pop 0.35s ease-out;
}

.offer-box {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  overflow: hidden;
}

.offer-head {
  background: #18181B;
  padding: 18px 20px;
  text-align: center;
}

.offer-head .oh-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offer-head .oh-old {
  font-size: 14px;
  color: #71717A;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.offer-head .oh-price {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.offer-head .oh-price small {
  font-size: 16px;
  font-weight: 600;
}

.offer-head .oh-save {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 6px;
}

.offer-head .oh-deadline {
  font-size: 11px;
  color: #A1A1AA;
  margin-top: 8px;
}

.offer-content {
  padding: 18px 20px;
}

.offer-items {
  list-style: none;
  margin-bottom: 18px;
}

.offer-items li {
  font-size: 13px;
  color: #52525B;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-items li .ck {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}

.offer-items li small {
  color: #A1A1AA;
  font-weight: 400;
}

.offer-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-cta {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-cta:hover { transform: translateY(-1px); }
.btn-cta:active { transform: translateY(0); }

.btn-cta.orange {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  padding: 16px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-cta.orange:hover {
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.5);
}

.btn-cta.wa {
  background: transparent;
  color: #A1A1AA;
  border: none;
  font-weight: 500;
  font-size: 12px;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-cta.wa:hover {
  color: #71717A;
}

.btn-cta.ghost {
  background: transparent;
  color: #71717A;
  border: 1px solid #E5E5E5;
  font-weight: 500;
  font-size: 13px;
}

.offer-note {
  font-size: 11px;
  color: #A1A1AA;
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ==================== ADMIN ==================== */
.admin-body {
  background: #FAFAF9;
  color: #18181B;
  min-height: 100vh;
}

.admin-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 16px;
}

.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-bar h1 {
  font-size: 20px;
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.stat-box {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.stat-box .sn {
  font-size: 26px;
  font-weight: 800;
  color: #18181B;
}

.stat-box .sl {
  font-size: 11px;
  color: #71717A;
  margin-top: 2px;
}

.admin-btns {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.btn-a {
  padding: 8px 14px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #52525B;
  cursor: pointer;
  transition: border-color 0.15s;
}

.btn-a:hover { border-color: #18181B; }
.btn-a.red { color: #DC2626; border-color: #FECACA; }
.btn-a.red:hover { background: #FEF2F2; }

.leads-list { display: flex; flex-direction: column; gap: 8px; }

.lead-row {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lead-row:hover { border-color: #A1A1AA; }

.lr-info { flex: 1; }

.lr-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.lr-detail {
  font-size: 12px;
  color: #71717A;
  margin-bottom: 1px;
}

.lr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.lr-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
  background: #F4F4F5;
  color: #52525B;
}

.lr-tag.obj { background: #DBEAFE; color: #1D4ED8; }
.lr-tag.exp { background: #F3E8FF; color: #7C3AED; }
.lr-tag.obs { background: #FEF3C7; color: #92400E; }

.lr-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.btn-lr {
  padding: 6px 12px;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: #52525B;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.btn-lr:hover { border-color: #18181B; }
.btn-lr.wag { color: #16A34A; border-color: #BBF7D0; }
.btn-lr.wag:hover { background: #F0FDF4; }

.empty-box {
  text-align: center;
  padding: 40px 16px;
  color: #A1A1AA;
  font-size: 14px;
}

/* Password */
.pw-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.pw-gate h2 {
  font-size: 18px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 6px;
}

.pw-gate p {
  font-size: 13px;
  color: #71717A;
  margin-bottom: 20px;
}

.pw-gate input {
  width: 100%;
  max-width: 260px;
  padding: 11px 14px;
  border: 1.5px solid #D4D4D8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
  text-align: center;
}

.pw-gate input:focus { border-color: #18181B; }

.pw-gate .btn-form {
  width: 100%;
  max-width: 260px;
}

.pw-err {
  color: #DC2626;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.hidden { display: none !important; }

@media (min-width: 480px) {
  .chat-box {
    height: 85vh;
    border-radius: 16px;
    margin-bottom: 16px;
  }
}
