/* ==========================================================================
   PROMPT PACK IA - PÁGINA DE VENDAS 100% RESPONSIVA (@ocaradaiia)
   Especialista Front-End, UI/UX, CRO & Acessibilidade
   Theme: Instagram Dark UI + High-Converting Sales Page
   ========================================================================== */

/* --- 1. DESIGN TOKENS & CSS VARIABLES --- */
:root {
  /* Dark & Instagram Palette */
  --bg-main: #000000;
  --bg-surface: #0c0c10;
  --bg-card: #121218;
  --bg-card-hover: #171722;
  --bg-card-alt: #0a0a0e;
  --ig-border: #24242c;
  --ig-border-subtle: rgba(255, 255, 255, 0.07);
  --ig-border-medium: rgba(255, 255, 255, 0.15);

  /* Instagram Gradient & Accents */
  --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --ig-blue: #0095f6;
  --ig-verified: #0095f6;
  --ig-red-heart: #ff3040;

  /* Typography Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8C8;
  --text-muted: #7E7E92;
  --text-gold: #F2D27A;
  --text-green: #00FF88;

  /* Gold & Conversion Colors */
  --gold-main: #D4AF37;
  --gold-light: #F2D27A;
  --gold-gradient: linear-gradient(135deg, #F9D976 0%, #E9B642 50%, #C49126 100%);
  --amber-orange: #FF7F00;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #1EBE5D;
  --danger-red: #FF4757;

  /* High-Impact CTAs */
  --cta-bg: linear-gradient(135deg, #00E676 0%, #00B050 100%);
  --cta-hover: linear-gradient(135deg, #10FF8B 0%, #00C853 100%);
  --cta-shadow: 0 8px 25px -4px rgba(0, 230, 118, 0.45);
  --cta-shadow-hover: 0 12px 32px -2px rgba(0, 230, 118, 0.65);

  /* Layout & Sizing */
  --container-max: 960px;
  --header-height: 58px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Card Padding Scale */
  --card-pad: 26px;

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. RESET & BASE BOX MODEL --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 14px);
  color-scheme: dark;
  background-color: var(--bg-main);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Ambient Subtle Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  background: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 65%),
    radial-gradient(circle at 20% 50%, rgba(0, 230, 118, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.025) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}

p {
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.68;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

wistia-player {
  display: block;
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.gradient-text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Verified Badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--ig-blue);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  vertical-align: middle;
  margin-left: 3px;
  flex-shrink: 0;
}

.verified-micro {
  width: 13px;
  height: 13px;
  font-size: 8px;
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ig-border-subtle);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 14px;
  max-width: 100%;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--whatsapp-green);
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- 3. BUTTONS & CTAS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(25deg);
  animation: btn-shine 4.5s infinite;
}

@keyframes btn-shine {
  0% { left: -60%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

.btn-primary {
  background: var(--cta-bg);
  color: #04240d;
  box-shadow: var(--cta-shadow);
}

.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--cta-shadow-hover);
  color: #021a08;
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--ig-border-medium);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.btn-sm .btn-text-short {
  display: none;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   4. FIXED INSTAGRAM TOP HEADER (ESTÉTICO, LIMPO & SEM CLIQUES FALSOS)
   ========================================================================== */
.ig-top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ig-border);
  z-index: 900;
  display: flex;
  align-items: center;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  gap: 8px;
}

.header-left {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  flex-shrink: 0;
  cursor: default;
}

.header-center-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  text-align: center;
  user-select: none;
  cursor: default;
}

.header-username {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ==========================================================================
   5. HERO + VSL (REESTRUTURADO: VÍDEO ENTRE HEADLINE E SUBHEADLINE)
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: 36px;
  position: relative;
}

.hero-sales-card {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.post-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--ig-border-subtle);
  background: var(--bg-surface);
  flex-wrap: wrap;
  gap: 10px;
}

.author-meta-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-story-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ig-gradient);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-story-ring-sm {
  width: 36px;
  height: 36px;
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #000000;
  object-fit: cover;
}

.author-info-text {
  display: flex;
  flex-direction: column;
}

.author-name-row {
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 2px;
}

.post-tagline {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.hero-text-top {
  padding: 20px 22px 14px 22px;
  text-align: center;
}

.hero-headline {
  font-size: clamp(1.55rem, 3.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-text-bottom {
  padding: 14px 22px 8px 22px;
  text-align: center;
}

.hero-subheadline {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: #D1D1DB;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* VSL Video Container */
.vsl-player-wrapper {
  padding: 0 18px 14px 18px;
}

.vsl-pre-text {
  display: block;
  text-align: center;
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.vsl-player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  background: radial-gradient(circle at 50% 40%, #171726 0%, #06060a 100%);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--ig-border-medium);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.vsl-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  text-align: center;
}

.vsl-play-btn {
  width: clamp(60px, 10vw, 76px);
  height: clamp(60px, 10vw, 76px);
  border-radius: 50%;
  background: var(--cta-bg);
  color: #04240d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(0, 230, 118, 0.55);
  animation: play-pulse 2s infinite;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.vsl-play-btn svg {
  width: clamp(24px, 4.5vw, 30px);
  height: clamp(24px, 4.5vw, 30px);
  margin-left: 3px;
  fill: currentColor;
}

.vsl-player-frame:hover .vsl-play-btn {
  transform: scale(1.08);
}

@keyframes play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.vsl-title-overlay {
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(10px);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(0.76rem, 1.4vw, 0.88rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Post Interaction Bar */
.post-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-top: 1px solid var(--ig-border-subtle);
  border-bottom: 1px solid var(--ig-border-subtle);
  background: var(--bg-surface);
}

.action-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ig-action-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 40px;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: transform 0.15s, color 0.15s;
}

.ig-action-static {
  cursor: default;
  user-select: none;
  color: #E2E2F0;
}

.ig-action-btn:not(.ig-action-static):hover {
  transform: scale(1.08);
}

.ig-action-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #FFFFFF;
  stroke: #FFFFFF;
  transition: transform 0.2s ease, fill 0.2s ease, opacity 0.2s ease;
}

/* Unliked Heart: Bright & Perfectly Visible */
.js-like-btn svg {
  fill: #FFFFFF !important;
  stroke: none !important;
  opacity: 0.85;
}

.js-like-btn:hover svg {
  opacity: 1;
  transform: scale(1.15);
}

.js-like-btn.liked svg {
  fill: var(--ig-red-heart) !important;
  stroke: none !important;
  opacity: 1;
  animation: heart-pop 0.35s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

.js-likes-count {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

/* Hero CTA Area */
.hero-cta-area {
  padding: 16px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-badge-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  color: var(--text-primary);
  font-weight: 600;
  text-align: center;
}

.star-rating {
  color: #FFB800;
  letter-spacing: 2px;
}

/* ==========================================================================
   6. SEÇÃO DE DOR / IDENTIFICAÇÃO (DESIGN HARMONIZADO EM GRADE 2x2)
   ========================================================================== */
.pain-section {
  padding: 44px 0;
  position: relative;
}

.sales-post-card {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.card-internal-header {
  margin: calc(-1 * var(--card-pad)) calc(-1 * var(--card-pad)) 20px calc(-1 * var(--card-pad));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.statement-text {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: #E2E2EC;
  margin-bottom: 16px;
}

.statement-punchline {
  font-size: clamp(1.18rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(20, 20, 28, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-left: 4px solid var(--gold-main);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  line-height: 1.45;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.pain-bullets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pain-bullet-card {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.05) 0%, rgba(18, 18, 24, 0.95) 100%);
  border: 1px solid rgba(255, 71, 87, 0.22);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.pain-bullet-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 71, 87, 0.45);
  box-shadow: 0 12px 30px rgba(255, 71, 87, 0.12), 0 8px 20px rgba(0, 0, 0, 0.7);
}

.pain-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 71, 87, 0.15);
  border: 1px solid rgba(255, 71, 87, 0.35);
  color: var(--danger-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.25);
}

.pain-bullet-card p {
  color: #F0F0F8;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

/* ==========================================================================
   7. SEÇÃO DE SOLUÇÃO
   ========================================================================== */
.solution-section {
  padding: 36px 0 20px 0;
  text-align: center;
}

.solution-header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.solution-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.solution-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #D5D5E2;
  line-height: 1.7;
}

/* ==========================================================================
   8. FEED SHOWCASE (10 VÍDEOS REAIS - SEM LEGENDA, COM LIKES E ENVIOS)
   ========================================================================== */
.feed-showcase-section {
  padding: 40px 0 48px 0;
  position: relative;
}

.feed-disclaimer-text {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: var(--gold-light);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Filter Tabs Bar */
.feed-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 28px 0;
  flex-wrap: wrap;
}

.feed-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.feed-tab-btn:hover {
  background: var(--bg-card-hover);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.feed-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(20, 20, 30, 0.95) 100%);
  color: #FFFFFF;
  border-color: var(--gold-main);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.feed-tab-btn.active svg {
  color: var(--gold-light);
}

/* Feed Group Wrappers */
.feed-group-wrapper {
  margin-bottom: 36px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.feed-group-wrapper.hidden {
  display: none;
}

.feed-group-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.feed-group-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--ig-border-subtle);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

/* Grid Layouts */
.feed-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  justify-content: center;
}

.feed-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

/* Feed Post Card */
.feed-post-card {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.feed-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.feed-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--ig-border-subtle);
}

.case-number-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

.feed-media-container {
  width: 100%;
  background: #050508;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-media-container.vertical-aspect {
  aspect-ratio: 9 / 16;
  max-height: 560px;
}

.feed-media-container.horizontal-aspect {
  aspect-ratio: 16 / 9;
  max-height: 380px;
}

.feed-post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid var(--ig-border-subtle);
  background: var(--bg-surface);
}

.feed-cta-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(18, 18, 24, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.feed-cta-banner p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #FFFFFF;
  max-width: 780px;
  line-height: 1.55;
}

/* ==========================================================================
   9. GRID DE CATEGORIAS (MODERNO, 3D & IDENTIDADE INSTAGRAM)
   ========================================================================== */
.categories-section {
  padding: 44px 0 52px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-bottom: 30px;
  perspective: 1000px;
}

.category-card {
  background: linear-gradient(180deg, #161622 0%, #0e0e16 100%);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.35s ease;
  position: relative;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.15), 0 12px 35px rgba(0, 0, 0, 0.8);
}

.category-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #08080c;
  overflow: hidden;
}

.category-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-media-box img {
  transform: scale(1.05);
}

.category-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(14, 14, 22, 0.95) 0%, transparent 100%);
  pointer-events: none;
}

.cat-badge-top-left {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  z-index: 2;
}

.category-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
}

.category-title {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  margin-bottom: 8px;
  color: #FFFFFF;
}

.category-desc {
  font-size: 0.92rem;
  color: #C0C0D4;
  line-height: 1.58;
}

.cat-value-tag {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-top: auto;
}

.categories-recap-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(18, 18, 24, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.categories-recap-box p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.55;
}

/* ==========================================================================
   10. SEÇÃO COMUNIDADE VIVER DE IA (NETWORKING & SUPORTE NO WHATSAPP)
   ========================================================================= */
.community-section {
  padding: 44px 0;
  position: relative;
}

.whatsapp-icon-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.community-title {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  margin-bottom: 14px;
}

.community-lead-text {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: #E0E0EC;
  line-height: 1.7;
  margin-bottom: 12px;
}

.community-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.community-card {
  background: var(--bg-surface);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.community-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.4);
}

.community-icon-box {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-emoji {
  font-size: 1.6rem;
}

.community-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.community-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   11. SOBRE O WESLEY (@ocaradaiia)
   ========================================================================= */
.about-section {
  padding: 44px 0;
}

/* ==========================================================================
   11. SOBRE O WESLEY (PERFIL PROFISSIONAL INSTAGRAM DARK UI @OCARADAIA)
   ========================================================================== */
.about-section {
  padding: 48px 0;
}

.about-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ig-profile-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ig-profile-top-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Anel de Story Perfeito e Vetorial (Sem Círculos Duplos) */
.ig-profile-avatar-box {
  flex-shrink: 0;
}

.ig-profile-story-ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--ig-gradient);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35);
}

.ig-profile-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #000000;
  object-fit: cover;
  background: #0e0e14;
}

.ig-profile-info-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.ig-profile-handle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ig-profile-username-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ig-profile-username {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: #FFFFFF;
}

.ig-badge-following {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

/* Estatísticas Reais: Posts, Seguidores, Seguindo */
.ig-stats-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ig-stat-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.ig-stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.ig-stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Bio Formatada */
.ig-profile-bio-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ig-profile-fullname {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.ig-profile-category {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.ig-bio-bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ig-bio-bullets p {
  font-size: 0.94rem;
  color: #E2E2EC;
  line-height: 1.48;
}

/* Narrativa e Autoridade */
.ig-profile-story-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ig-story-divider {
  width: 100%;
  height: 1px;
  background: var(--ig-border);
  margin-bottom: 4px;
}

.ig-story-heading {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 800;
}

.about-narrative-text {
  font-size: 0.98rem;
  line-height: 1.68;
  color: #D5D5E5;
}

.about-quote-box {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold-main);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.98rem;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.6;
}

/* ==========================================================================
   12. DEPOIMENTOS: FEED DE COMENTÁRIOS INSTAGRAM
   ========================================================================== */
.testimonials-section {
  padding: 48px 0;
}

.section-center-heading {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.section-center-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 6px;
}

/* Instagram Comments Card Container */
.ig-comments-card {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
}

.ig-comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--ig-border-subtle);
}

.ig-comments-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
}

.ig-comments-count-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.ig-comments-filter {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Comments List Feed (Sem Scroll - Exibição Completa e Fluida) */
.ig-comments-list {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ig-comment-item {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ig-comment-item:last-child {
  border-bottom: none;
}

.ig-pinned-comment {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 8px;
}

.ig-pinned-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ig-comment-main-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.ig-comment-avatar {
  flex-shrink: 0;
}

.avatar-real-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.author-ring-micro {
  border: 2px solid var(--gold-main);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.ig-comment-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ig-comment-text-row {
  font-size: 0.92rem;
  line-height: 1.48;
  color: #E2E2EC;
}

.ig-comment-user {
  font-weight: 800;
  color: #FFFFFF;
  margin-right: 6px;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.author-badge-label {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  margin-left: 2px;
  text-transform: uppercase;
}

.mention-user {
  color: var(--ig-blue);
  font-weight: 700;
}

.ig-comment-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

.ig-comment-action-link {
  color: var(--text-muted);
  cursor: default;
}

.ig-comment-heart {
  background: none;
  border: none;
  cursor: pointer;
  color: #A0A0B8;
  padding: 4px;
  min-height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, color 0.15s;
  flex-shrink: 0;
}

.ig-comment-heart svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease, fill 0.2s ease;
}

.ig-comment-heart:hover {
  transform: scale(1.2);
  color: var(--ig-red-heart);
}

.ig-comment-heart.liked {
  color: var(--ig-red-heart);
  animation: heart-pop 0.3s ease;
}

@keyframes heart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Reply Box (identico ao Instagram) */
.ig-comment-reply-box {
  margin-left: 36px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(212, 175, 55, 0.03);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold-main);
}

/* Instagram Disabled Comments Bar */
.ig-comments-disabled-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(20, 20, 28, 0.95) 0%, rgba(12, 12, 18, 0.98) 100%);
  border-top: 1px solid var(--ig-border);
}

.ig-disabled-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.ig-disabled-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.ig-disabled-text strong {
  font-size: 0.88rem;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.ig-disabled-text span {
  font-size: 0.78rem;
  color: #A5A5B8;
  line-height: 1.45;
}

/* ==========================================================================
   13. OFERTA & TABELA DE PREÇOS (NO MOBILE: COMPLETO PRIMEIRO EM DESTAQUE)
   ========================================================================== */
.pricing-section {
  padding: 50px 0;
  position: relative;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}

.pricing-title {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  margin-bottom: 10px;
}

/* Itemized Stack Breakdown */
.offer-stack-box {
  background: var(--bg-surface);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.offer-stack-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.stack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  gap: 10px;
}

.stack-row:last-child {
  border-bottom: none;
}

.stack-bonus-row {
  color: var(--gold-light);
}

.stack-bonus-row .stack-name {
  color: var(--gold-light);
}

.stack-bonus-row .stack-val {
  color: var(--gold-light);
}

.stack-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.4;
}

.stack-emoji {
  flex-shrink: 0;
}

.stack-val {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.stack-total-line {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
}

.stack-total-label {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.stack-total-price {
  color: #FF4757;
  text-decoration: line-through;
  font-size: 1.15rem;
  white-space: nowrap;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #181824 0%, #101018 100%);
  border: 2px solid var(--gold-main);
  box-shadow: 0 14px 45px rgba(212, 175, 55, 0.25);
  order: 1;
}

#planoBasicoCard {
  order: 2;
}

.pricing-badge-featured {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #1a1000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.plan-name {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.plan-name-gold {
  color: var(--gold-light);
}

.plan-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.plan-price-row {
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px;
}

.plan-price-gold {
  color: var(--gold-light);
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
}

.price-amount {
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.price-cents {
  font-size: 1.4rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.plan-price-gold .price-period {
  color: var(--gold-light);
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pricing-feature-item.included {
  color: #FFFFFF;
}

.pricing-feature-item.included span.check {
  color: var(--whatsapp-green);
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-feature-item.excluded {
  color: var(--text-muted);
  opacity: 0.65;
}

.pricing-feature-item.excluded span.cross {
  color: var(--danger-red);
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-reinforcement-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(18, 18, 24, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-reinforcement-box p {
  font-size: clamp(0.98rem, 1.3vw, 1.06rem);
  color: #FFFFFF;
  line-height: 1.65;
}

/* ==========================================================================
   14. GARANTIA (COM SELO OFICIAL)
   ========================================================================== */
.guarantee-section {
  padding: 44px 0;
  text-align: center;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  text-align: left;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.guarantee-seal-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.3));
}

.guarantee-content h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin-bottom: 6px;
  color: #FFFFFF;
}

.guarantee-content p {
  font-size: 0.98rem;
  color: #D5D5E5;
  line-height: 1.62;
  margin-bottom: 8px;
}

.guarantee-note {
  color: var(--gold-light);
  font-weight: 600;
  display: block;
}

/* ==========================================================================
   15. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 44px 0 52px 0;
}

.faq-list {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-box {
  background: var(--bg-card);
  border: 1px solid var(--ig-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.faq-box.active {
  border-color: rgba(212, 175, 55, 0.4);
  background: var(--bg-card-hover);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(0.98rem, 1.4vw, 1.05rem);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
}

.faq-box.active .faq-question-btn {
  color: var(--gold-light);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-box.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 20px;
  padding-right: 20px;
}

.faq-answer-panel p {
  padding-bottom: 18px;
  font-size: 0.95rem;
  color: #D0D0E0;
  line-height: 1.68;
}

/* ==========================================================================
   16. FINAL CTA & FOOTER
   ========================================================================== */
.final-cta-section {
  padding: 56px 0 64px 0;
  text-align: center;
  position: relative;
  background: transparent;
}

.final-cta-box {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-title {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  margin-bottom: 14px;
  line-height: 1.2;
}

.final-cta-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #D5D5E5;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 740px;
}

.final-cta-buttons-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  width: 100%;
  max-width: 640px;
}

.final-quote-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(18, 18, 24, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  max-width: 740px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.final-quote-text {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.55;
  margin: 0;
}

.final-quote-author {
  margin-top: 10px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-footer {
  background: #040406;
  border-top: 1px solid var(--ig-border);
  padding: 40px 0 28px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand-info {
  text-align: center;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: 14px 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-secondary);
  transition: color 0.2s;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #555564;
  max-width: 660px;
  line-height: 1.5;
}

/* ==========================================================================
   17. FLOATING WHATSAPP BUTTON (DISCRETO, ELEGANTE & INTEGRADO)
   ========================================================================== */
.whatsapp-floating-btn {
  position: fixed;
  bottom: calc(18px + env(safe-area-inset-bottom));
  right: calc(18px + env(safe-area-inset-right));
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 14, 20, 0.9);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.75);
  text-decoration: none;
  cursor: pointer;
  
  opacity: 0;
  transform: scale(0.9) translateY(12px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s, background 0.2s, border-color 0.2s;
}

.whatsapp-floating-btn.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.whatsapp-floating-btn:hover {
  background: rgba(22, 22, 32, 0.98);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.whatsapp-icon-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
}

.whatsapp-icon-circle svg {
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
}

.whatsapp-btn-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

/* Toast */
.ig-toast {
  position: fixed;
  top: calc(var(--header-height) + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(18, 18, 24, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  max-width: 90vw;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ig-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   18. SYSTEMATIC BREAKPOINTS & RESPONSIVE REFINEMENTS
   ========================================================================== */

/* Tablets & Small Desktops (<= 860px) */
@media (max-width: 860px) {
  :root {
    --card-pad: 20px;
  }

  .feed-horizontal-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .about-card-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .about-photo-box {
    max-width: 170px;
  }

  .about-quote-box {
    text-align: left;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .guarantee-seal-img {
    width: 110px;
    height: 110px;
  }
}

/* Landscape Mobile & Small Tablets (<= 767px) */
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-sales-card {
    border-radius: var(--radius-md);
  }

  .sales-post-card {
    border-radius: var(--radius-md);
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }

  .final-cta-buttons-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .ig-comment-reply-box {
    margin-left: 18px;
    padding: 8px 10px;
  }
}

/* Standard Mobile (<= 600px) */
@media (max-width: 600px) {
  :root {
    --card-pad: 16px;
    --header-height: 54px;
  }

  .header-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .btn-sm .btn-text-full {
    display: none;
  }

  .btn-sm .btn-text-short {
    display: inline;
  }

  .post-header-bar {
    padding: 10px 12px;
  }

  .hero-text-top {
    padding: 14px 12px 10px 12px;
  }

  .vsl-player-wrapper {
    padding: 0 12px 10px 12px;
  }

  .hero-text-bottom {
    padding: 10px 12px 6px 12px;
  }

  .post-action-bar {
    padding: 6px 12px;
  }

  .action-bar-left {
    gap: 8px;
  }

  .ig-action-btn {
    padding: 4px 6px;
    font-size: 0.8rem;
  }

  .hero-cta-area {
    padding: 14px 12px 20px 12px;
  }

  .pain-bullets-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 15px 18px;
  }

  .feed-reels-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .feed-horizontal-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .feed-tab-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-badge-featured {
    font-size: 0.68rem;
    padding: 4px 12px;
  }

  .about-profile-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

  .ig-profile-top-row {
    gap: 16px;
  }

  .ig-profile-story-ring {
    width: 82px;
    height: 82px;
  }

  .ig-stats-grid {
    gap: 14px;
  }

  .ig-stat-num {
    font-size: 0.96rem;
  }

  .ig-stat-label {
    font-size: 0.78rem;
  }

  .whatsapp-floating-btn {
    bottom: calc(12px + env(safe-area-inset-bottom));
    right: calc(12px + env(safe-area-inset-right));
    padding: 6px 12px 6px 6px;
  }
}

/* Very Small Mobile (<= 360px) */
@media (max-width: 360px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-username {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.88rem;
    padding: 14px 12px;
  }

  .stack-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .stack-val {
    align-self: flex-end;
  }

  .whatsapp-btn-text {
    display: none;
  }

  .whatsapp-floating-btn {
    padding: 6px;
    border-radius: 50%;
  }

  .whatsapp-icon-circle {
    width: 30px;
    height: 30px;
  }
}

/* Accessibility: Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .btn::after {
    display: none !important;
  }

  .vsl-play-btn {
    animation: none !important;
  }

  .pulse-dot {
    animation: none !important;
  }
}
