:root {
  --premium-ink: #191512;
  --premium-muted: #70645e;
  --premium-line: rgba(40, 28, 20, 0.1);
  --premium-soft: #fff8f4;
  --premium-card: rgba(255, 255, 255, 0.94);
  --premium-shadow: 0 18px 44px rgba(41, 24, 13, 0.1);
}

html {
  scroll-behavior: smooth;
  background: #fffaf7;
}

body {
  color: var(--premium-ink);
  background:
    linear-gradient(180deg, rgba(255, 107, 61, 0.08), rgba(255, 255, 255, 0) 240px),
    radial-gradient(circle at 1px 1px, rgba(36, 25, 18, 0.055) 1px, transparent 0),
    #fffaf7 !important;
  background-size: auto, 18px 18px, auto;
  font-family: "Montserrat", "Aptos", "Segoe UI", system-ui, sans-serif !important;
  letter-spacing: 0 !important;
  text-rendering: geometricPrecision;
}

.navbar {
  background: rgba(255, 255, 255, 0.86) !important;
  border-bottom: 1px solid var(--premium-line) !important;
  box-shadow: 0 10px 30px rgba(41, 24, 13, 0.06);
  backdrop-filter: blur(18px);
}

.cover-image {
  background: #111;
}

.cover-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.46) 100%);
  pointer-events: none;
}

.profile-name,
.popup-profile-name,
.feed-name,
.pricing-panel h3,
.super-combo-section h3,
.testimonials-section h3 {
  letter-spacing: 0 !important;
  font-weight: 800 !important;
}

.profile-username,
.feed-handle,
.bio-text,
.trust-inline,
.testimonial-card .t-text {
  color: var(--premium-muted) !important;
}

.profile-bio {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.bio-container,
.pricing-panel,
.feed-card,
.testimonials-section,
.faq-item,
.model-chat-preview {
  background: var(--premium-card) !important;
  border: 1px solid var(--premium-line) !important;
  box-shadow: var(--premium-shadow);
}

.bio-container {
  border-radius: 18px;
  padding: 16px;
}

.bio-text {
  font-size: 14px !important;
  line-height: 1.62 !important;
}

.bio-toggle {
  color: var(--theme-color) !important;
  font-weight: 800 !important;
}

.pricing-panel {
  border-radius: 22px !important;
  padding: 18px !important;
  margin-top: 16px !important;
}

.plan-primary,
.subscription-button,
.subscription-button-popup,
.plan-outline.featured {
  border: 0 !important;
  background: linear-gradient(135deg, #ff6b3d, #ff9466) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(255, 107, 61, 0.28) !important;
}

.plan-outline {
  background: #fff !important;
  border: 1px solid rgba(255, 107, 61, 0.22) !important;
  border-radius: 16px !important;
}

.feed-gallery {
  margin-top: 22px !important;
}

.feed-card {
  border-radius: 20px !important;
  overflow: hidden;
}

.feed-media {
  background: #17110e !important;
}

.feed-footer {
  background: #fff;
}

.model-chat-preview {
  max-width: 560px;
  margin: 18px auto 0;
  padding: 14px;
  border-radius: 22px;
}

.model-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.model-chat-head img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.model-chat-title {
  font-size: 14px;
  font-weight: 850;
  color: var(--premium-ink);
}

.model-chat-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--premium-muted);
}

.model-chat-status {
  margin-left: auto;
  border-radius: 999px;
  background: #e9fff4;
  color: #087044;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 850;
}

.model-chat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.model-chat-bubble {
  max-width: 84%;
  border-radius: 17px;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.35;
}

.model-chat-bubble.creator {
  align-self: flex-start;
  background: var(--premium-soft);
  color: var(--premium-ink);
  border-bottom-left-radius: 5px;
}

.model-chat-bubble.lead {
  align-self: flex-end;
  background: var(--theme-color);
  color: #fff;
  border-bottom-right-radius: 5px;
}

.model-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  margin-top: 2px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff1ea;
}

.model-chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--theme-color);
  opacity: 0.55;
  animation: chatPulse 1.1s infinite ease-in-out;
}

.model-chat-typing span:nth-child(2) { animation-delay: 0.14s; }
.model-chat-typing span:nth-child(3) { animation-delay: 0.28s; }

@keyframes chatPulse {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-3px); opacity: 1; }
}

@media (max-width: 768px) {
  main { margin-top: 74px !important; }
  .logo img { height: 58px !important; }
  .cover-image { height: 228px !important; }
  .profile-info { left: 14px !important; gap: 8px !important; }
  .profile-image { width: 104px !important; height: 104px !important; }
  .profile-name { font-size: 18px !important; line-height: 1.15 !important; }
  .profile-username { font-size: 12px !important; }
  .profile-bio { margin-top: 4.2rem !important; padding: 0 12px !important; }
  .pricing-panel,
  .model-chat-preview,
  .feed-gallery { width: calc(100% - 24px); }
  .feed-gallery { padding: 0 !important; }
  .content-toggle { margin-bottom: 0 !important; }
  .model-chat-preview { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .model-chat-typing span,
  .subscription-button::before,
  .subscription-button::after {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding-bottom: calc(86px + env(safe-area-inset-bottom)) !important;
  }

  main { margin-top: 56px !important; }
  .cover-image { height: 204px !important; }
  .cover-image img { object-position: center top !important; }

  .profile-info {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: 102px minmax(0, 1fr) !important;
    align-items: end !important;
    gap: 10px !important;
    margin-top: -54px !important;
    padding: 0 14px !important;
  }

  .profile-avatar-group { min-width: 0 !important; align-items: flex-start !important; }
  .profile-image-circle,
  .profile-image {
    width: 98px !important;
    height: 98px !important;
    flex: 0 0 98px !important;
  }

  .live-badge {
    max-width: 108px !important;
    margin: 4px 0 0 !important;
    padding: 2px 6px !important;
    font-size: 9.5px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .profile-text { min-width: 0 !important; margin-bottom: 10px !important; }
  .profile-name {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 20px !important;
    line-height: 1.1 !important;
  }
  .profile-name .verified,
  .verified { flex: 0 0 auto !important; overflow: visible !important; }
  .profile-username {
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
  }

  .profile-bio {
    margin-top: 12px !important;
    padding: 0 12px !important;
  }
  .bio-container {
    padding: 14px 16px !important;
    border-radius: 18px !important;
  }
  .bio-text {
    max-height: 4.8em !important;
    font-size: 13px !important;
    line-height: 1.48 !important;
    overflow-wrap: anywhere !important;
  }
  .bio-text.expanded { max-height: none !important; }

  .pricing-panel,
  .feed-gallery,
  .testimonials-section,
  .super-combo-section {
    width: calc(100% - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .pricing-panel { padding: 16px !important; border-radius: 20px !important; }
  .pricing-panel h3 { font-size: 20px !important; }
  .tag-popular,
  .header-promo,
  .mini-badge,
  .perk-chip { white-space: normal !important; }
  .header-promo { margin-left: 4px !important; }

  .plan-primary {
    min-height: 52px !important;
    padding: 12px 14px !important;
    gap: 8px !important;
  }
  .plan-primary .plan-title { font-size: 15px !important; white-space: nowrap !important; }
  .plan-primary .plan-price { font-size: 18px !important; white-space: nowrap !important; }

  .trust-inline {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 12px !important;
    white-space: normal !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }
  .trust-inline span { white-space: normal !important; }

  .plan-outline {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 48px !important;
    padding: 11px 12px !important;
  }
  .plan-outline .left {
    min-width: 0 !important;
    max-width: none !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    overflow: visible !important;
  }
  .plan-label { min-width: 0 !important; white-space: normal !important; font-size: 14px !important; }
  .mini-badge { max-width: 92px !important; overflow: hidden !important; text-overflow: ellipsis !important; font-size: 11px !important; }
  .plan-outline .right { margin-left: 0 !important; padding-left: 0 !important; font-size: 14px !important; white-space: nowrap !important; }

  .content-section .video-container,
  .content-section .photo-container,
  .content-section .photo-container2,
  .feed-card,
  .feed-media {
    max-width: 100% !important;
    width: 100% !important;
  }
  .feed-gallery { padding: 0 !important; }
  .feed-card { contain: layout paint !important; content-visibility: visible !important; }
  .feed-media { aspect-ratio: 9 / 16 !important; }
  .feed-media .preview-media,
  .feed-media .locked-media,
  .content-section video,
  .content-section img {
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .stats,
  .stats-pill { max-width: calc(100% - 20px) !important; flex-wrap: wrap !important; }
  .content-toggle { flex-wrap: wrap !important; row-gap: 4px !important; }
  .footer-legal-links { flex-wrap: wrap !important; gap: 6px !important; text-align: center !important; }

  #notification-container {
    right: 12px !important;
    bottom: calc(92px + env(safe-area-inset-bottom)) !important;
    left: auto !important;
    width: min(292px, calc(100vw - 92px)) !important;
    max-width: min(292px, calc(100vw - 92px)) !important;
    z-index: 45 !important;
  }
  #notification-container > div {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 10px 36px 10px 12px !important;
    border-radius: 14px !important;
  }
  #notification-container > div div { min-width: 0 !important; }
}

@media (max-width: 360px) {
  .profile-info { grid-template-columns: 92px minmax(0, 1fr) !important; gap: 8px !important; }
  .profile-image-circle,
  .profile-image { width: 88px !important; height: 88px !important; flex-basis: 88px !important; }
  .profile-name { font-size: 18px !important; }
  .live-badge { max-width: 96px !important; font-size: 8.5px !important; }
  .pricing-panel { padding: 14px !important; }
  .mini-badge { max-width: 74px !important; }
  #notification-container { width: min(270px, calc(100vw - 84px)) !important; }
}

/* ─────────────────────────────────────────────────────────────
   Super Combo button: prevent price clipping by stacking on mobile,
   and softening the dark slab to reduce visual noise.
   ───────────────────────────────────────────────────────────── */
.super-combo-section {
  background: #1a1410 !important;
  border-top: 1px solid rgba(255, 107, 61, 0.45) !important;
  padding: 22px 16px !important;
}
.super-combo-section h3 { font-size: 17px !important; }
.super-combo-section .combo-sub { font-size: 12.5px !important; margin-bottom: 14px !important; }
.super-combo-section .combo-items {
  font-size: 13px !important;
  line-height: 1.55 !important;
}
.super-combo-section .plan-primary {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  padding: 14px 16px !important;
  min-height: 60px !important;
  text-align: center !important;
}
.super-combo-section .plan-primary .plan-title {
  white-space: normal !important;
  font-size: 14.5px !important;
  line-height: 1.2 !important;
  max-width: 100% !important;
}
.super-combo-section .plan-primary .plan-price {
  white-space: nowrap !important;
  font-size: 18px !important;
}
.super-combo-section .plan-primary .plan-price::after { content: "" !important; }

/* ─────────────────────────────────────────────────────────────
   Testimonials: drop the random stock avatars (they read as noise),
   replace with a discreet quote glyph and tighter typography.
   ───────────────────────────────────────────────────────────── */
.testimonials-section {
  background: transparent !important;
  border-top: 0 !important;
  padding: 22px 16px 8px !important;
  margin-top: 8px !important;
}
.testimonials-section h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--premium-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  margin-bottom: 14px !important;
}
.testimonial-avatar { display: none !important; }
.testimonial-card {
  position: relative !important;
  min-width: 220px !important;
  max-width: 240px !important;
  padding: 16px 14px 14px !important;
  border-radius: 16px !important;
  background: var(--premium-card) !important;
  border: 1px solid var(--premium-line) !important;
  box-shadow: 0 6px 18px rgba(41, 24, 13, 0.06) !important;
  text-align: left !important;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -2px;
  left: 10px;
  font-size: 42px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--theme-color);
  opacity: 0.35;
}
.testimonial-card .t-text {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #3a322d !important;
  margin-bottom: 10px !important;
}
.testimonial-card .t-name {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--premium-muted) !important;
}

/* ─────────────────────────────────────────────────────────────
   Generic clutter reduction
   ───────────────────────────────────────────────────────────── */
.header-promo,
.tag-popular {
  font-size: 10.5px !important;
  letter-spacing: 0.3px !important;
}
.trust-inline {
  font-size: 11.5px !important;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .super-combo-section { padding: 18px 14px !important; }
  .super-combo-section .combo-items { padding-left: 18px !important; }
  .super-combo-section .plan-primary {
    padding: 12px 14px !important;
    min-height: 58px !important;
  }
  .super-combo-section .plan-primary .plan-title { font-size: 13.5px !important; }
  .super-combo-section .plan-primary .plan-price { font-size: 17px !important; }

  .testimonials-section { padding: 18px 12px 4px !important; }
  .testimonials-track { gap: 10px !important; }
  .testimonial-card {
    min-width: 78vw !important;
    max-width: 78vw !important;
  }
}

/* Stable header/logo + promo message: one compact block, left-aligned. */
.nav-container {
  justify-content: flex-start !important;
  min-height: 58px !important;
}
.logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  max-width: min(100%, 430px) !important;
  height: 36px !important;
  margin: 0 !important;
  justify-content: flex-start !important;
  overflow: visible !important;
}
.logo img,
.top-bar-content > img {
  width: auto !important;
  height: 28px !important;
  max-width: 128px !important;
  object-fit: contain !important;
  display: block !important;
}
.top-bar {
  display: none !important;
}
.logo .privacy-logo {
  display: inline-flex !important;
  align-items: center !important;
  max-width: 320px !important;
  min-height: 28px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  background: #ff6b3d !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.3px !important;
  white-space: nowrap !important;
  text-align: left !important;
  box-shadow: 0 2px 8px rgba(255, 107, 61, 0.35) !important;
  text-transform: uppercase !important;
}

@media (max-width: 768px) {
  .nav-container { height: 52px !important; min-height: 52px !important; justify-content: flex-start !important; }
  .logo { width: auto !important; height: 32px !important; max-width: calc(100vw - 24px) !important; gap: 8px !important; flex-wrap: nowrap !important; }
  .logo img { height: 25px !important; max-width: 110px !important; flex-shrink: 0 !important; }
  .logo .privacy-logo { max-width: none !important; min-height: 24px !important; padding: 4px 10px !important; font-size: 10.5px !important; letter-spacing: 0.2px !important; flex-shrink: 1 !important; }
}

/* Make 3 Meses / 1 Ano / Vitalício look like the 30 Dias plan (solid orange) */
.promotions .plan-outline.subscription-link {
  background: linear-gradient(180deg, #ff7a1a 0%, #ff6b3d 100%) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  box-shadow: 0 4px 12px rgba(255, 107, 61, 0.22) !important;
  margin-top: 8px !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  position: relative !important;
  overflow: hidden !important;
}
.promotions .plan-outline.subscription-link:hover {
  box-shadow: 0 6px 16px rgba(255, 107, 61, 0.3) !important;
  transform: translateY(-1px) !important;
  border: none !important;
}
.promotions .plan-outline.subscription-link .left,
.promotions .plan-outline.subscription-link .right {
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.18) !important;
}
.promotions .plan-outline.subscription-link .plan-label {
  font-size: 13px !important;
  letter-spacing: 0.2px !important;
  font-weight: 800 !important;
}
.promotions .plan-outline.subscription-link .right {
  font-size: 15px !important;
  letter-spacing: 0.2px !important;
  font-weight: 900 !important;
}
.promotions .plan-outline.subscription-link .right::after {
  content: "  →" !important;
  font-weight: 900 !important;
  margin-left: 2px !important;
}
.promotions .plan-outline.subscription-link .mini-badge {
  background: #ffffff !important;
  color: #ff6b3d !important;
  border: none !important;
  font-weight: 800 !important;
  text-shadow: none !important;
  font-size: 10px !important;
  padding: 2px 6px !important;
}
.promotions .plan-outline.subscription-link::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important; left: -60% !important;
  width: 40% !important; height: 100% !important;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%) !important;
  transform: skewX(-20deg) !important;
  animation: shimmer 2.4s infinite !important;
  pointer-events: none !important;
}
@media (max-width: 768px) {
  .promotions .plan-outline.subscription-link { padding: 7px 10px !important; }
  .promotions .plan-outline.subscription-link .plan-label { font-size: 12.5px !important; }
  .promotions .plan-outline.subscription-link .right { font-size: 14px !important; }
}
