
/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ── Design System — paleta Instagram-inspired ── */
    --color-primary: #7c3aed;       /* roxo principal (mantido p/ brand) */
    --color-primary-light: #a78bfa;
    --color-primary-dark: #5b21b6;
    --color-accent: #e1306c;        /* rosa/magenta Instagram (era ciano) */
    --color-accent-2: #f09433;      /* laranja Instagram */
    --color-bg: #0a0a0f;
    --color-surface: #13131a;
    --color-surface-2: #1e1e2e;
    --color-border: #2d2d3d;
    --color-text: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    /* Gradient principal: roxo → rosa → laranja (paleta Instagram) */
    --gradient-primary: linear-gradient(135deg, #833ab4 0%, #e1306c 55%, #f09433 100%);

    /* ── Aliases para backward-compat com classes existentes ── */
    --primary-purple: #7c3aed;
    --dark-purple: #5b21b6;
    --light-purple: #a78bfa;
    --purple-gradient: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);

    /* Botões principais usam o gradient Instagram (roxo/rosa/laranja) */
    --instagram-gradient: linear-gradient(135deg, #833ab4 0%, #e1306c 55%, #f09433 100%);
    --instagram-hover:    linear-gradient(135deg, #6d28d9 0%, #be185d 55%, #d97706 100%);

    /* Fundos */
    --bg-dark: #0d0d14;
    --bg-secondary: #171722;
    --text-primary: #f8fafc;
    --text-secondary: #b0bec5;
    --border-color: #363650;

    /* Tipografia */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.6);
    --shadow-lg: 0 10px 28px rgba(0,0,0,0.65);
    --shadow-purple: 0 8px 28px rgba(124,58,237,0.5);
}

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

[hidden] { display: none !important; }

/* Tema claro: sobrescreve variáveis para alto contraste em fundo claro */
body.theme-light {
    --bg-dark: #f3f4f6;
    --bg-secondary: #ffffff;
    --color-bg: #f3f4f6;
    --color-surface: #ffffff;
    --color-surface-2: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: #e2e8f0;
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.09);
    --shadow-lg: 0 10px 24px rgba(0,0,0,0.12);
}

/* Fundo animado suavizado para tema claro */
body.theme-light::before {
    background:
        radial-gradient(circle at 20% 80%, rgba(107, 70, 193, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

/* Cards e botões no tema claro: branco + roxo, alto contraste */
body.theme-light .service-card { background: #ffffff; border-color: #e5e7eb; box-shadow: var(--shadow-md); }
body.theme-light .card-desc { color: var(--text-secondary); }
body.theme-light .platform-btn { background: #ffffff; border-color: #e5e7eb; }
body.theme-light .platform-btn:hover { border-color: var(--primary-purple); }
body.theme-light .continue-button { box-shadow: var(--shadow-md); }

/* Promoções no tema claro */
body.theme-light .promo-item { background: #ffffff; border-color: #e5e7eb; }
body.theme-light .promo-item:hover { border-color: var(--primary-purple); }
body.theme-light .promo-highlight { color: #ffffff; background: var(--primary-purple); border: none; }
/* Checkout: melhorar contraste no tema claro para preview e stats */
body.theme-light #profilePreview { color: #0f172a; }
body.theme-light #profilePreview strong { color: #0f172a; }
body.theme-light #checkoutProfileStats { color: #0f172a !important; }

/* Áudio: trilha e gradiente com roxo em fundo claro */
body.theme-light .audio-progress { background: linear-gradient(90deg, rgba(107,70,193,0.25) 0%, rgba(139,92,246,0.25) 100%); }
body.theme-light .audio-progress::-webkit-slider-runnable-track { background: rgba(15,23,42,0.12); }
body.theme-light .audio-progress::-moz-range-track { background: rgba(15,23,42,0.12); }

/* Tutoriais e toasts: manter roxo com contraste em claro */
body.theme-light .tutorial-pop { border-color: #6366F1; background: rgba(99, 102, 241, 0.18); color: #111827; }
body.theme-light .tutorial-pop .tutorial-pop-step { color: #ffffff; }
body.theme-light #tutorialAudio { border-color: #cc2366; background: var(--instagram-gradient); color: #ffffff; }
body.theme-light #tutorialAudio .tutorial-pop-text { color: #ffffff; }
body.theme-light #tutorialAudio .tutorial-pop-step { color: #ffffff; }
body.theme-light #tutorialAudio::after { border-top-color: #cc2366; }
body.theme-light #tutorialPlatform { border-color: #cc2366; background: var(--instagram-gradient); color: #ffffff; }
body.theme-light #tutorialPlatform .tutorial-pop-text { color: #ffffff; }
body.theme-light #tutorialPlatform .tutorial-pop-step { color: #ffffff; }
body.theme-light #tutorialPlatform::after { border-top-color: #cc2366 !important; }
body.theme-light #tutorial3Usuario { border-color: #cc2366; background: var(--instagram-gradient); color: #ffffff; }
body.theme-light #tutorial3Usuario .tutorial-pop-text { color: #ffffff; }
body.theme-light #tutorial3Usuario .tutorial-pop-step { color: #ffffff; }
body.theme-light #tutorial3Usuario::after { border-top-color: #cc2366 !important; }
body.theme-light #tutorial4Validar { border-color: #cc2366; background: var(--instagram-gradient); color: #ffffff; }
body.theme-light #tutorial4Validar .tutorial-pop-text { color: #ffffff; }
body.theme-light #tutorial4Validar .tutorial-pop-step { color: #ffffff; }
body.theme-light #tutorial4Validar::after { border-top-color: #cc2366 !important; }
body.theme-light #tutorial5Pedido { border-color: #cc2366; background: var(--instagram-gradient); color: #ffffff; }
body.theme-light #tutorial5Pedido .tutorial-pop-text { color: #ffffff; }
body.theme-light #tutorial5Pedido .tutorial-pop-step { color: #ffffff; }
body.theme-light #tutorial5Pedido::after { border-top-color: #cc2366 !important; }
/* Seta segue a cor do balão específico no tema claro */
/* body.theme-light .tutorial-pop::after { border-top-color: #0f172a; } */
body.theme-light .toast { background: #ffffff; }

/* Notificações de venda no checkout: canto inferior esquerdo */
.checkout-page .toast-container { position: fixed; bottom: 1rem; right: 1rem; left: auto; top: auto; z-index: 2100; display: flex; flex-direction: column; gap: 0.4rem; }
/* Mobile: o menu inferior (z-index 2000, ~75px) é fixo embaixo — sobe o toast pra ficar ACIMA dele (e do banner "Instalar", se ativo). */
@media (max-width: 767px) {
  .checkout-page .toast-container { bottom: calc(86px + env(safe-area-inset-bottom, 0px)) !important; right: 12px !important; z-index: 2100 !important; }
  body.pwa-install-active .checkout-page .toast-container { bottom: calc(var(--pwa-bh, 56px) + 86px + env(safe-area-inset-bottom, 0px)) !important; }
}
.checkout-page .toast { display: flex; align-items: center; gap: 0.28rem; background: #ffffff; color: #0f172a; border: 1px solid #e5e7eb; box-shadow: 0 6px 16px rgba(0,0,0,0.10); padding: 0.24rem 0.80rem; border-radius: 6px; max-width: 240px; font-size: 0.74rem; font-family: 'Segoe UI', system-ui, sans-serif; transition: opacity 0.7s ease, transform 0.7s ease; }
.checkout-page .toast { position: relative; }
.checkout-page .toast-close { position: absolute; top: 4px; right: 6px; background: transparent; border: 0; color: #64748b; font-size: 0.6rem; line-height: 1; cursor: pointer; }
.checkout-page .toast-platform { width: 18px; height: 18px; flex-shrink: 0; color: currentColor; }
.checkout-page .toast-body { display: grid; gap: 0.04rem; }
.checkout-page .toast-meta { display: flex; align-items: center; gap: 0.25rem; }
.checkout-page .toast-dot { width: 6px; height: 6px; border-radius: 999px; background: #10b981; flex-shrink: 0; }
.checkout-page .toast-title { font-weight: 700; color: #0f172a; font-size: 0.80rem; }
.checkout-page .toast-desc { color: #334155; font-size: 0.74rem; }
.checkout-page .toast-time { color: #64748b; font-size: 0.72rem; }
@media (min-width: 1024px) {
  .checkout-page .toast-title { font-size: calc(0.80rem + 1px); }
  .checkout-page .toast-desc { font-size: calc(0.74rem + 1px); }
  .checkout-page .toast-time { font-size: calc(0.72rem + 1px); }
  .checkout-page .toast { max-width: 260px; padding: 0.32rem 0.90rem; }
}

/* ── Etapa 2 (Dados do Pedido) das categorias — contraste no TEMA ESCURO ── */
/* Botão "Voltar": estava com texto preto (invisível no escuro) → claro. */
body.theme-dark #backToStep1Btn { color: #cbd5e1 !important; border-color: #475569 !important; background: none !important; }
body.theme-dark #backToStep1Btn:hover { border-color: #64748b !important; color: #e2e8f0 !important; }
body.theme-dark #backToStep1Btn svg { stroke: currentColor !important; }
/* Placeholder do @ e demais inputs: cinza claro legível no input escuro. */
body.theme-dark #usernameCheckoutInput::placeholder,
body.theme-dark .select-input::placeholder,
body.theme-dark .checkout-page input::placeholder { color: #9aa3b2 !important; opacity: 1 !important; }
/* Garante texto do input claro no escuro. */
body.theme-dark #usernameCheckoutInput,
body.theme-dark .checkout-page .select-input { color: #f1f5f9 !important; }

/* Tema claro: card roxo com bom contraste */
body.theme-light .checkout-page .toast { background: #0f172a; border-color: #0f172a; color: #ffffff; }
body.theme-light .checkout-page .toast-close { color: #c4b5fd; }
body.theme-light .checkout-page .toast-platform { color: #ffffff; }
body.theme-light .checkout-page .toast-title { color: #ffffff; }
body.theme-light .checkout-page .toast-desc { color: #e5e7eb; }
body.theme-light .checkout-page .toast-time { color: #c4b5fd; }

/* ── Toast de venda agora vive no <body> (z-index inline garante ficar acima do menu/banner) ── */
/* Estilo base independente de .checkout-page, pois o container foi movido pro body. */
.toast-container { pointer-events: none; }
.toast-container .toast {
  pointer-events: auto; position: relative;
  display: flex; align-items: center; gap: 0.28rem;
  background: #ffffff; color: #0f172a; border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  padding: 0.34rem 0.95rem 0.34rem 0.72rem; border-radius: 8px; max-width: 280px;
  font-size: 0.76rem; font-family: 'Segoe UI', system-ui, sans-serif;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.toast-container .toast-close { position: absolute; top: 4px; right: 6px; background: transparent; border: 0; color: #94a3b8; font-size: 0.7rem; line-height: 1; cursor: pointer; }
.toast-container .toast-platform { width: 22px; height: 22px; flex-shrink: 0; color: #e1306c; }
.toast-container .toast-body { display: grid; gap: 0.05rem; }
.toast-container .toast-meta { display: flex; align-items: center; gap: 0.25rem; }
.toast-container .toast-dot { width: 6px; height: 6px; border-radius: 999px; background: #10b981; flex-shrink: 0; }
.toast-container .toast-title { font-weight: 700; color: #0f172a; font-size: 0.80rem; }
.toast-container .toast-desc { color: #334155; font-size: 0.74rem; }
.toast-container .toast-time { color: #64748b; font-size: 0.72rem; }
/* Tema claro: card escuro (contraste); tema escuro mantém claro. */
body.theme-light .toast-container .toast { background: #0f172a; border-color: #0f172a; color: #ffffff; }
body.theme-light .toast-container .toast-title { color: #ffffff; }
body.theme-light .toast-container .toast-desc { color: #e5e7eb; }
body.theme-light .toast-container .toast-time { color: #c4b5fd; }
body.theme-light .toast-container .toast-platform { color: #ffffff; }
body.theme-light .toast-container .toast-close { color: #c4b5fd; }
body.theme-light #plataformaCard .card-desc { color: #0f172a; }

/* Background animado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(107, 70, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

/* Marca do site (Checkout) */
.checkout-page .site-brand {
    position: absolute;
    top: 1rem;
    left: calc(2rem + 80px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
}
.checkout-page .site-logo {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: contain;
}
.checkout-page .logo-light { display: none; }
body.theme-light .checkout-page .logo-dark { display: none; }
body.theme-light .checkout-page .logo-light { display: inline-block; }
.checkout-page .site-brand-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Letreiro no header */
.checkout-page .header-ticker { margin-top: -8px; margin-bottom: calc(0.35rem + 6px); text-align: center; }
.checkout-page .header-ticker .ticker-item { display: inline-block; font-weight: 700; color: var(--text-primary); transition: opacity 0.6s ease, transform 0.6s ease; }
.checkout-page .header-ticker .ticker-item.enter { opacity: 1; transform: translateY(0); }
.checkout-page .header-ticker .ticker-item.leave { opacity: 0; transform: translateY(-8px); }

/* Conteúdo principal */
.main-content {
    width: 100%;
    max-width: 960px;
    animation: fadeInUp 1s ease-out 0.3s both;
}
html, body { overflow-x: hidden; }
.checkout-page .cards-grid.checkout-grid { justify-content: center; justify-items: stretch; align-items: stretch; }
.checkout-page .service-card { width: 100%; margin: 0 auto; box-sizing: border-box; }
.checkout-page #clientFetchBtn { display: inline-block !important; }
.checkout-page .client-tools.active { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.5rem; }
.checkout-page #tipoCards .service-card .card-content { display: flex; align-items: center; justify-content: center; }
@media (max-width: 639px) {
  .checkout-page .option-card, .checkout-page .plan-card { width: 100%; min-height: 92px; display: flex; align-items: center; justify-content: center; text-align: center; }
}
@media (min-width: 1024px) {
  .checkout-page .option-card { min-height: 120px; }
  .checkout-page #quantidadeSelectCard { max-width: 100%; }
  .checkout-page .section-block,
  .checkout-page #tipoDescCard,
  .checkout-page #planCards,
  .checkout-page #orderBumpInline,
  .checkout-page #resumo,
  .checkout-page #perfilCard { max-width: 1200px; margin-left: auto; margin-right: auto; }
  .checkout-page .plan-cards { padding-left: 0; padding-right: 0; }
}
/* Centralização total dos cards de seguidores (desktop e mobile) */
.checkout-page #tipoCards .service-card { display: flex; align-items: center; justify-content: center; min-height: 140px; }
.checkout-page #tipoCards .service-card .card-content { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.2rem; width: 100%; height: 100%; text-align: center; }
.checkout-page #tipoCards .service-card .card-title, .checkout-page #tipoCards .service-card .card-desc { margin: 0; }
.checkout-page .plan-cards { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 1rem; max-width: 100%; margin: 0 auto; justify-content: flex-start; justify-items: stretch; align-items: stretch; }
@media (max-width: 1024px) { .checkout-page .plan-cards { grid-template-columns: repeat(2, minmax(240px, 1fr)); } }
@media (max-width: 640px) { .checkout-page .plan-cards { grid-template-columns: 1fr; max-width: 100%; } }
.checkout-page .client-tools { display: none; }
@media (max-width: 640px) {
    .checkout-page .header { margin-top: 2rem; }
  .checkout-page .client-tools.active { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.5rem; }
  .checkout-page .client-tools .select-input { max-width: 220px; }
  .checkout-page #clientFetchBtn { display: block; margin: 0.5rem auto 0; }
  
  /* Ajuste de largura para cards de promoção e resumo na página de serviços do Instagram */
  #step3ProfileCard,
  #resumo { 
      width: calc(100vw - 20px) !important; 
      max-width: none !important; 
      margin-left: calc(50% - 50vw + 10px) !important; 
      margin-right: calc(50% - 50vw + 10px) !important; 
      box-sizing: border-box !important; 
  }
  /* Remove estilos de card do orderBumpInline quando dentro do step3ProfileCard no mobile para evitar 'overlap' visual */
  @media (max-width: 640px) {
      #step3ProfileCard #orderBumpInline {
          box-shadow: none !important;
          border: none !important;
          background: transparent !important;
          padding: 0 !important;
          margin: 0 !important;
          width: 100% !important;
      }
  }
}

/* Blocos de seção e cards de serviços */
.section-block {
    margin: 2rem auto;
}

.section-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

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

/* Centralizar seções com um único card (desktop) */
.section-block.centered .section-label {
    text-align: center;
}
/* Centralizar apenas o rótulo quando necessário (desktop) */
@media (min-width: 769px) {
    .centered-label {
        text-align: center;
    }
}
/* Mobile: centralizar somente o texto do label de Seguidores */
@media (max-width: 768px) {
    .centered-label {
        text-align: center;
    }
}
@media (min-width: 769px) {
    .section-block.centered .cards-grid:not(.checkout-grid) {
        grid-template-columns: minmax(280px, 360px);
        justify-content: center;
        justify-items: center;
    }
    .checkout-page #tipoCards,
    .checkout-page #tipoDescCard,
    .checkout-page #planCards,
    .checkout-page #orderBumpInline,
    .checkout-page #resumo,
    .checkout-page #perfilCard {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Unificar largura dos blocos de tipo, descrição e planos no checkout */
.checkout-page #tipoCards,
.checkout-page #tipoDescCard,
.checkout-page #planCards,
.checkout-page #perfilCard,
.checkout-page #orderBumpInline,
.checkout-page #resumo {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Resumo: permitir quebra de linha para bullets das promoções */
.checkout-page #resumo #resPromos {
  white-space: pre-line;
  display: block;
}

.service-card {
    display: block;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

/* Card desabilitado (Seguidores Orgânicos) */
.service-card.disabled {
    cursor: not-allowed;
    opacity: 0.6;
    filter: grayscale(25%);
    border-style: dashed;
}
.service-card.disabled:hover {
    transform: none;
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}
.service-card.disabled::after {
    content: 'Disponível para teste somente após primeira compra.';
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.25rem;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
}
.service-card.disabled:hover::after {
    display: block;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: visible;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-align: center;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.badge-seguidores-br {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--instagram-gradient);
    color: #ffffff;
}

.title-highlight-gradient {
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.checkout-page .title {
    line-height: 1.12;
}

@media (max-width: 640px) {
    .checkout-page .header { margin-top: -0.5rem; }
    .checkout-page .title {
        font-size: clamp(2.1rem, 7vw, 2.6rem);
        line-height: 1;
        max-width: 20ch;
        margin-left: auto;
        margin-right: auto;
    }
    .checkout-page .subtitle { margin-top: 0.1rem !important; margin-bottom: 0.25rem !important; }
    .section-block { margin: 0.75rem auto; }
    #buyFollowersBtn { margin-top: 12px !important; }
    body.has-fixed-menu { padding-top: 32px; }
}

/* Inputs de seleção com estética de card */
.select-input {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.875rem 1.125rem;
    border: 1px solid #4B5563; /* contraste um pouco maior */
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-family: var(--font-family);
    box-shadow: var(--shadow-sm);
    appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.select-input:hover {
    border-color: var(--primary-purple);
    background: rgba(107, 70, 193, 0.10);
}

.select-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.45);
    background: rgba(107, 70, 193, 0.12);
}

.select-input:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (min-width: 1024px) {
    .select-input {
        padding: 1rem 1.25rem; /* mais largo no desktop */
        font-size: 1.05rem;
    }
}

/* Container do botão */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.checkout-page #pixPaymentBtnContainer {
    width: 100%;
    margin-top: calc(2rem + 70px) !important;
}

.checkout-page #realizarPedidoBtn,
.checkout-page #payWithCardBtn {
    width: 100% !important;
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.checkout-page #payWithCardBtn {
    margin-top: 1.25rem !important;
}

@media (min-width: 1024px) {
    .checkout-page #realizarPedidoBtn,
    .checkout-page #payWithCardBtn {
        max-width: 520px !important;
    }
    .checkout-page #pixPaymentBtnContainer {
        margin-top: calc(2rem + 80px) !important;
    }
}

/* Botão continuar com estilo Instagram */
.continue-button {
    background: var(--instagram-gradient);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonSlideIn 0.8s ease-out;
}

.continue-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.continue-button:hover::before {
    left: 100%;
}

.continue-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(240, 148, 51, 0.4);
}

.continue-button:active {
    transform: translateY(-1px) scale(1.02);
}
.continue-button.small {
    padding: 0.6rem 1.1rem;
    font-size: 0.95rem;
    border-radius: 999px;
    box-shadow: var(--shadow-purple);
}

.status-green { color: #22c55e; }
.status-yellow { color: #f59e0b; }
.status-red { color: #ef4444; }
.status-blue { color: #3b82f6; }
.service-card.disabled { opacity: 0.6; pointer-events: none; }
.status-warning { color: var(--text-secondary); font-weight: 600; }
.status-maint-icon { width: 16px; height: 16px; margin-right: 6px; vertical-align: -2px; color: #fff; filter: grayscale(100%); }
.theme-light .status-maint-icon { color: #000; }

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    transition: transform 0.3s ease;
}

.continue-button:hover .button-icon {
    transform: translateX(5px);
}

/* Ajustes específicos para o botão Comprar seguidores */
#buyFollowersBtn {
    text-decoration: none !important;
    padding: 0.6rem 2rem; /* Bem menor */
    min-width: 180px;
    font-size: 0.95rem;
}
#buyFollowersBtn .button-text {
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 700;
}

/* Ajustes para cards menores em Engajamento Novo */
.checkout-page #tipoSelectCard,
.checkout-page #quantidadeSelectCard {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}
.checkout-page #tipoSelectCard .card-title,
.checkout-page #quantidadeSelectCard .card-title {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.checkout-page #tipoSelectCard .select-input,
.checkout-page #quantidadeSelectCard .select-input {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* Botão de copiar estilo ícone */
.copy-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.copy-icon-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: #1d4ed8; }
.copy-icon-btn:active { transform: translateY(0); }
.copy-icon-btn svg { display:block; width: 24px; height: 24px; }
.copy-icon-btn.copied { border-color: #22c55e; }

/* Botão de alternância de tema */
.theme-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}
.theme-toggle:hover {
    border-color: var(--primary-purple);
    transform: translateY(-1px);
}
.theme-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.35);
}
/* Ícones de tema (sol/lua): desktop usa texto, mobile usa ícones
   No tema claro, mostrar lua preta (ação: escurecer)
   No tema escuro, mostrar sol claro (ação: clarear) */
.theme-toggle .icon { font-size: 1.1rem; line-height: 1; display: none; }
.theme-toggle .theme-label { display: inline; }
/* Mobile: esconder texto e mostrar ícones com cores conforme tema */
@media (max-width: 768px) {
  .theme-toggle .theme-label { display: none; }
  .theme-toggle .icon { display: inline; }
  /* Tema CLARO: ícone lua preta */
  body.theme-light .theme-toggle .icon-moon { display: inline; color: #000000 !important; }
  body.theme-light .theme-toggle .icon-sun { display: none; }
  /* Tema ESCURO: ícone sol branco */
  body:not(.theme-light) .theme-toggle .icon-sun { display: inline; color: #ffffff !important; }
  body:not(.theme-light) .theme-toggle .icon-moon { display: none; }
  /* Garantir cor nos SVGs */
  .theme-toggle .icon-sun svg { color: #ffffff !important; }
  .theme-toggle .icon-moon svg { color: #000000 !important; }
  /* Mobile: remover fundo/borda do toggle e mostrar somente ícone */
  .fixed-menu .theme-toggle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
  }
  /* Mobile + Tema CLARO: botão Cliente gradient */
   body.theme-light .fixed-menu .client-btn {
     background: var(--instagram-gradient);
     color: #ffffff;
     border: none !important;
     box-shadow: none !important;
     outline: none !important;
   }
   /* Mobile + Tema ESCURO: botão Cliente gradient */
   body:not(.theme-light) .fixed-menu .client-btn {
     background: var(--instagram-gradient);
     color: #ffffff;
     border: none !important;
     box-shadow: none !important;
     outline: none !important;
   }
  /* Mobile: reduzir padding-top para aproximar conteúdo do topo */
   body.has-fixed-menu { padding-top: 32px; }
 }
/* Tema claro: deixar theme-toggle e client-btn com paleta escura para combinar com toasts */
body.theme-light .theme-toggle { background: #0f172a; color: #ffffff; border-color: #0f172a; }
body.theme-light .theme-toggle:hover { border-color: #6B46C1; }
body.theme-light .client-btn { background: var(--instagram-gradient); color: #ffffff; border: none !important; }
body.theme-light .client-btn:hover { border: none !important; }

/* Menu fixo no topo */
.fixed-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  z-index: 2000;
}
.fixed-menu .menu-left,
.fixed-menu .menu-right { display: flex; align-items: center; gap: 0.5rem; }
.fixed-menu .site-brand { position: static; }
.fixed-menu .site-logo { width: 50px; height: 50px; }
.fixed-menu .site-brand-text { font-weight: 700; font-size: 1.2rem; letter-spacing: 0.01em; color: var(--text-primary); white-space: nowrap; }
.fixed-menu .theme-toggle { position: static; top: auto; right: auto; }
.fixed-menu .client-btn { position: static; }
.fixed-menu .whatsapp-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, filter 0.12s ease;
}
body.theme-light .fixed-menu .whatsapp-btn { border: 1px solid rgba(15, 23, 42, 0.18); }
body:not(.theme-light) .fixed-menu .whatsapp-btn { border: 1px solid rgba(255, 255, 255, 0.18); }
.fixed-menu .whatsapp-btn:hover { filter: brightness(0.95); transform: translateY(-1px); }
.fixed-menu .whatsapp-btn:active { transform: translateY(0); filter: brightness(0.92); }
.fixed-menu .whatsapp-btn:focus-visible { outline: 3px solid rgba(107, 70, 193, 0.45); outline-offset: 2px; }

/* Mobile: padronizar tamanho dos botões e reduzir fonte da marca */
@media (max-width: 768px) {
  .fixed-menu .menu-left {
    min-width: 0;
    flex: 1;
    margin-right: 4px;
    display: flex;
    align-items: center;
  }
  .fixed-menu .site-logo {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 6px;
  }
  .fixed-menu .site-brand-text {
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
  }
  .fixed-menu .menu-right {
    gap: 8px;
    flex-shrink: 0;
  }
  .fixed-menu .whatsapp-btn {
    width: 36px;
    height: 36px;
  }
  /* Cliente: menor e com borda mais arredondada */
  .fixed-menu .client-btn {
    height: 36px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }
  /* Toggle de tema: mantém dimensões padrão */
  .fixed-menu .theme-toggle {
    height: 40px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    min-width: 40px;
  }
}

@media (min-width: 1024px) {
  .fixed-menu .menu-left { margin-left: calc(2rem + 60px); }
}

/* Offset para evitar sobreposição do conteúdo */
body.has-fixed-menu { padding-top: 64px; }

/* Ajuste de visibilidade dos logos claro/escuro no menu */
.logo-dark { display: inline; }
.logo-light { display: none; }
body.theme-light .logo-dark { display: none; }
body.theme-light .logo-light { display: inline; }

/* Toggle de plataforma (Instagram/TikTok) */
.platform-toggle {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0.5rem 0 1rem;
}
.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    font-weight: 600;
}
.platform-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--primary-purple); }
.platform-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.3); }
.platform-btn.instagram,
.platform-btn.tiktok {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
}
.platform-btn svg { color: currentColor; }

.audio-player { display: flex; gap: 0.35rem; align-items: center; flex-wrap: wrap; }
.audio-element { width: 100%; display: none; }
.audio-controls { display: grid; grid-template-columns: auto 1fr auto; gap: 0.25rem; align-items: center; width: 100%; position: relative; overflow: visible; }
.audio-speed-btn { padding: 0.4rem 0.75rem; border: 1px solid var(--border-color); border-radius: 999px; background: var(--bg-secondary); color: var(--text-primary); cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.audio-speed-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); border-color: var(--primary-purple); }
.audio-speed-btn.active { border-color: var(--primary-purple); box-shadow: var(--shadow-sm); }
.audio-progress { width: 100%; height: 4px; appearance: none; background: linear-gradient(90deg, rgba(107,70,193,0.35) 0%, rgba(139,92,246,0.35) 100%); border-radius: 999px; outline: none; }
.audio-progress::-webkit-slider-runnable-track { height: 4px; background: rgba(255,255,255,0.12); border-radius: 999px; }
.audio-progress::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; background: var(--primary-purple); border-radius: 50%; margin-top: -4px; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.audio-progress::-moz-range-track { height: 4px; background: rgba(255,255,255,0.12); border-radius: 999px; }
.audio-progress::-moz-range-thumb { width: 12px; height: 12px; background: var(--primary-purple); border: none; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
.audio-time { color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.audio-speed-row { display: flex; gap: 0.35rem; margin-top: 0; }

.checkout-page #audioCard .card-content { padding: 0.45rem 0.6rem; }


/* Desktop: reduzir largura do card de áudio e posicionar tutorial acima do botão */
@media (min-width: 1024px) {
  .checkout-page #audioCard { max-width: 560px; margin: 0 auto; margin-top: -10px; }
  .checkout-page #audioCard .card-content { padding: 0.35rem 0.6rem; }
#tutorialAudio { top: auto; bottom: auto; left: 0; transform: none; }
#tutorialPlatform { top: auto; bottom: auto; left: 0; transform: none; }
}

/* Posicionar tutorial de plataforma sobre os botões */
.platform-toggle { position: relative; }
#tutorialPlatform { position: absolute; }

/* Posicionar tutoriais de usuário e validar acima dos controles */
#tutorial3Usuario { position: absolute; }
#tutorial4Validar { position: absolute; }



@media (max-width: 639px) {
  #tutorial4Validar { margin-top: 50px; }
}

/* Posicionar tutorial de finalizar acima do botão */
.action-container { position: relative; }
#tutorial5Pedido { position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%); }
.checkout-page #paymentCard .phone-field { display: flex; flex-direction: column; align-items: center; }
.checkout-page #paymentCard .phone-field .select-input { max-width: 320px; }

/* Promoções */
.promo-list { display: grid; gap: 0.75rem; }
.promo-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0.9rem; border: 1px solid var(--border-color); border-radius: 12px; background: #232336; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.promo-item:hover { border-color: var(--primary-purple); box-shadow: var(--shadow-sm); }
.promo-item input[type="checkbox"] { margin-top: 0.2rem; }
.promo-content { display: grid; gap: 0.2rem; }
.promo-highlight { font-weight: 700; color: #ffffff; background: var(--primary-purple); border: none; border-radius: 8px; padding: 0.15rem 0.5rem; text-transform: uppercase; letter-spacing: 0.02em; display: inline-block; }
.promo-title { font-weight: 600; color: var(--text-primary); }
.promo-item.warranty30 .promo-title { color: var(--primary-purple); text-transform: uppercase; }
.promo-item.warranty60 .promo-title { color: #ffffff; text-transform: none; }
.checkout-page #warranty60InfoBtn { background: var(--bg-secondary) !important; border: none !important; color: var(--text-primary) !important; box-shadow: none !important; }
.checkout-page #warranty60InfoBtn::before { display: none !important; }
.checkout-page #warranty60InfoBtn:hover { transform: none !important; box-shadow: none !important; }
.checkout-page #commentsExampleBtn { background: var(--bg-secondary) !important; border: none !important; color: var(--text-primary) !important; box-shadow: none !important; }
.checkout-page #commentsExampleBtn::before { display: none !important; }
.checkout-page #commentsExampleBtn:hover { transform: none !important; box-shadow: none !important; }
.checkout-page #warranty30InfoBtn,
.checkout-page #warrantyLifetimeInfoBtn { background: var(--bg-secondary) !important; border: none !important; color: var(--text-primary) !important; box-shadow: none !important; }
.checkout-page #warranty30InfoBtn::before,
.checkout-page #warrantyLifetimeInfoBtn::before { display: none !important; }
.checkout-page #warranty30InfoBtn:hover,
.checkout-page #warrantyLifetimeInfoBtn:hover { transform: none !important; box-shadow: none !important; }
.promo-item.warranty60 { background: #232336; border-color: var(--border-color); }
.promo-item.warrantyLifetime { background: #232336; border-color: var(--border-color); }
.promo-desc { color: var(--text-secondary); font-size: 1.02rem; font-weight: 500; line-height: 1.5; }
.promo-item.upgrade { background: #232336; border-color: var(--border-color); }
.promo-item.comments { background: #232336; border-color: var(--border-color); }
.promo-item.warranty30 { background: #232336; border-color: var(--border-color); }
.promo-prices { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }
.likes-control { display: flex; gap: 0.5rem; align-items: center; margin-top: 0.35rem; }
.likes-control .likes-arrow { padding: 0.25rem 0.5rem; border: 1px solid var(--border-color); border-radius: 999px; background: var(--bg-secondary); color: var(--text-primary); }
.likes-control .likes-qty { min-width: 48px; text-align: center; font-weight: 700; color: var(--text-primary); }
/* Balão de curtidas (usa estética dos tutorial-pop) */
.checkout-page #likesPromoTip { display: none; position: absolute; bottom: calc(100% + 6px); right: 0 !important; }
.checkout-page #likesPromoTip .tutorial-pop-text { color: var(--text-secondary); }
.promo-tip { position: absolute; right: 0; bottom: calc(100% + 6px); background: var(--bg-secondary); color: var(--text-primary); border: 1px solid var(--border-color); border-radius: 8px; padding: 6px 8px; font-size: 0.85rem; line-height: 1.2; max-width: 220px; box-shadow: var(--shadow-sm); }
@media (max-width: 640px) { .promo-tip { font-size: 0.8rem; max-width: 200px; } }
.promo-prices .old-price { color: #9ca3af; text-decoration: line-through; }
.promo-prices .discount-badge { background: rgba(34,197,94,0.18); color: #86efac; border: 1px solid rgba(34,197,94,0.35); border-radius: 999px; padding: 0.1rem 0.5rem; font-size: 0.8rem; }
.promo-prices .new-price { color: #22C55E; font-weight: 700; font-size: 0.9rem !important; }

@media (min-width: 1024px) {
  /* Desktop: aumentar 2px textos das promoções */
  .promo-title { font-size: calc(1rem + 2px); }
  .promo-desc { font-size: calc(1.02rem + 2px); }
}

/* Tipo Row Cards (servicos-instagram / curtidas / visualizacoes) */
#tipoCards { display: flex !important; flex-direction: column !important; gap: 10px !important; width: 100% !important; }
#tipoCards .tipo-row-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; border: 1.5px solid var(--border-color, #e2e8f0); background: var(--bg-secondary, #fff); cursor: pointer; transition: border-color .18s, box-shadow .18s, background .18s; user-select: none; position: relative; }
#tipoCards .tipo-row-card:hover { border-color: #a78bfa; box-shadow: 0 2px 12px rgba(139,92,246,.12); }
#tipoCards .tipo-row-card.active { border-color: #7c3aed !important; background: #faf5ff !important; box-shadow: 0 4px 16px rgba(124,58,237,.18) !important; }
body.theme-dark #tipoCards .tipo-row-card.active { background: rgba(124,58,237,.15) !important; }
#tipoCards .tipo-row-ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; font-weight: 800; }
#tipoCards .tipo-row-ic.ic-all,
#tipoCards .tipo-row-ic.ic-mistos,
#tipoCards .tipo-row-ic.ic-brs,
#tipoCards .tipo-row-ic.ic-real,
#tipoCards .tipo-row-ic.ic-views,
#tipoCards .tipo-row-ic.ic-likes { background: #f0eeff; }
#tipoCards .tipo-row-body { flex: 1; min-width: 0; }
#tipoCards .tipo-row-title { font-size: .97rem; font-weight: 700; color: var(--text-primary, #0f172a); margin-bottom: 2px; line-height: 1.25; }
#tipoCards .tipo-row-desc { font-size: .78rem; color: var(--text-secondary, #64748b); line-height: 1.35; margin-bottom: 3px; }
#tipoCards .tipo-row-price { font-size: .8rem; font-weight: 700; color: #7c3aed; }
#tipoCards .tipo-row-card.active .tipo-row-price { color: #6d28d9; }
#tipoCards .tipo-row-chev { color: #94a3b8; font-size: 1.3rem; flex-shrink: 0; transition: color .15s; }
#tipoCards .tipo-row-card.active .tipo-row-chev { color: #7c3aed; }
#tipoCards .tipo-row-badge { position: absolute; top: 10px; right: 38px; background: #7c3aed; color: #fff; font-size: .62rem; font-weight: 800; padding: 2px 7px; border-radius: 999px; letter-spacing: .04em; }
/* Oculta o dropdown de tipo pois os cards visuais assumem essa função */
#tipoSelectCard { display: none !important; }
/* Oculta o card de descrição do tipo — info já está nos tipo-row-cards */
#tipoDescCard { display: none !important; }

/* Plan Row Cards — redesign clean */
#planCards { display: flex; flex-direction: column; gap: 0; }
.pln-row-card {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
  background: var(--bg-secondary, #fff);
  cursor: pointer;
  position: relative;
  transition: background .15s;
}
.pln-row-card { border-left: 1.5px solid var(--border-color, #e2e8f0); border-right: 1.5px solid var(--border-color, #e2e8f0); border-top: none; border-radius: 0; }
#planCards .pln-row-card:first-of-type { border-radius: 14px 14px 0 0; border: 1.5px solid var(--border-color, #e2e8f0); border-bottom: 1px solid var(--border-color, #e2e8f0); }
#planCards .pln-row-card:last-of-type  { border-radius: 0 0 14px 14px; border: 1.5px solid var(--border-color, #e2e8f0); border-top: none; }
.pln-row-card:hover { background: #f8f5ff; }
.pln-row-card.pln-highlight { background: #faf5ff; }
body.theme-dark .pln-row-card.pln-highlight { background: rgba(124,58,237,.08); }
.pln-row-card.pln-active { background: #ede9fe !important; }
body.theme-dark .pln-row-card.pln-active { background: rgba(124,58,237,.2) !important; }
.pln-left { flex: 1; min-width: 0; }
.pln-name { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary, #64748b); }
.pln-row-card.pln-active .pln-name { color: #7c3aed; }
.pln-qty { font-size: 1rem; font-weight: 800; color: var(--text-primary, #0f172a); margin-top: 0; }
.pln-right { text-align: right; flex-shrink: 0; }
.pln-price { font-size: 0.88rem; font-weight: 700; color: #7c3aed; }
.pln-row-card.pln-active .pln-price { color: #5b21b6; }
.pln-old { font-size: .72rem; color: #94a3b8; text-decoration: line-through; }
.pln-chev { color: #94a3b8; font-size: 1.2rem; flex-shrink: 0; margin-left: 4px; }
.pln-row-card.pln-active .pln-chev { color: #7c3aed; }
.pln-popular {
  position: absolute; top: -10px; left: 16px;
  background: #7c3aed; color: #fff;
  font-size: .65rem; font-weight: 800;
  padding: 2px 9px; border-radius: 999px;
  letter-spacing: .05em;
}
body.theme-dark .pln-row-card { background: var(--bg-secondary); }
body.theme-dark .pln-row-card:hover { background: rgba(255,255,255,.04); }
body.theme-dark .pln-row-card:first-of-type,
body.theme-dark .pln-row-card:last-of-type,
body.theme-dark .pln-row-card:not(:first-of-type):not(:last-of-type) { border-color: var(--border-color); }

/* ─── Tema escuro: melhorias de contraste ─────────────────────────── */
/* Cards com fundo ligeiramente mais claro para destacar do fundo */
body.theme-dark .service-card {
  background: #1a1a2a;
  border-color: #3a3a55;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
body.theme-dark .service-card:hover {
  border-color: #7c3aed;
  box-shadow: 0 6px 22px rgba(124,58,237,0.3);
}
/* Títulos dos cards com mais brilho */
body.theme-dark .card-title {
  color: #f8fafc;
  font-weight: 700;
}
body.theme-dark .card-desc {
  color: #b0bec5;
}
/* Inputs com contraste maior */
body.theme-dark .select-input {
  background: #1e1e30;
  border-color: #3a3a55;
  color: #f8fafc;
}
body.theme-dark .select-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}
/* Promo items (orderbump) */
body.theme-dark .promo-item {
  background: #1e1e30;
  border-color: #3a3a55;
}
body.theme-dark .promo-item:hover {
  border-color: #7c3aed;
  background: #21213a;
}
body.theme-dark .promo-title {
  color: #f0f4f8;
}
body.theme-dark .promo-desc {
  color: #8fa3b3;
}
body.theme-dark .old-price {
  color: #7a8fa0;
}
body.theme-dark .new-price {
  color: #a78bfa;
  font-weight: 800;
}
/* FAQs */
body.theme-dark .faq-card {
  background: #1a1a2a;
}
body.theme-dark .faq-question {
  color: #e2e8f0;
}
body.theme-dark .faq-answer {
  color: #9cb3c5;
}
/* Phone/email labels */
body.theme-dark .phone-label {
  color: #e2e8f0 !important;
}
body.theme-dark .phone-hint {
  color: #6b7a8f !important;
}
/* Botão de plataforma */
body.theme-dark .platform-btn {
  background: #1e1e30;
  border-color: #3a3a55;
  color: #d1d9e6;
}
body.theme-dark .platform-btn:hover,
body.theme-dark .platform-btn[aria-pressed="true"] {
  background: #2d2d4a;
  border-color: #7c3aed;
  color: #f0ecff;
}
/* Tags / badges */
body.theme-dark .discount-badge {
  background: rgba(124,58,237,0.25);
  color: #c4b5fd;
  border: 1px solid rgba(124,58,237,0.4);
}
/* Plataforma card título */
body.theme-dark #plataformaCard .card-title {
  color: #f8fafc !important;
}
/* ─────────────────────────────────────────────────────────────────── */

/* Resumo inline do pedido (tela 3) */
#checkoutInlineSummary {
  animation: summaryFadeIn 0.3s ease;
}
@keyframes summaryFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.theme-light #checkoutInlineSummary {
  background: #f8f7ff;
  border-color: #ddd6fe;
}
body.theme-light #summaryServiceLine,
body.theme-light #summaryQtyLine,
body.theme-light #summaryExtrasLine {
  color: #374151;
}
body.theme-light #summaryTotalLine { color: #6d28d9; }

/* Depoimentos */
.testimonials-section { display: flex; justify-content: center; align-items: center; padding: 1rem 0; margin: 0.75rem 0 1.5rem; width: 100%; flex-direction: column; }
.testimonials-carousel { display: grid; grid-template-columns: auto minmax(640px, 760px) auto; gap: 0.05rem; align-items: center; }
.testimonials-title { font-family: var(--font-family); font-weight: 700; font-size: 1.25rem; color: var(--text-primary); margin-bottom: 0.6rem; }
.carousel-btn { padding: 0.5rem 0.9rem; border: 1px solid #0f172a; border-radius: 999px; background: #0f172a; color: #ffffff; cursor: pointer; font-size: 1.15rem; }
.testimonials-carousel .prev { justify-self: end; transform: translateX(14px); }
.testimonials-carousel .next { justify-self: start; transform: translateX(-14px); }
.carousel-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; display: flex; justify-content: center; }
.carousel-track { display: flex; gap: 0.5rem; align-items: center; padding: 0.25rem; justify-content: center; position: relative; width: max-content; }

@media (min-width: 1024px) {
  .audio-controls { grid-template-columns: auto 3fr auto; }
}
.carousel-item { position: relative; width: 340px; aspect-ratio: 9/16; height: auto; border-radius: 22px; overflow: hidden; transition: opacity 0.25s ease; box-shadow: none; scroll-snap-align: center; }
.carousel-item.active { width: 340px; aspect-ratio: 9/16; height: auto; opacity: 1; transform: none; box-shadow: 0 30px 70px rgba(0,0,0,0.35); z-index: 3; }
.carousel-item.pos-left, .carousel-item.pos-right { display: none; }
.carousel-item.pos-hidden-left { display: none; }
.carousel-item.pos-hidden-right { display: none; }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; image-rendering: auto; -webkit-backface-visibility: hidden; backface-visibility: hidden; }

@media (max-width: 640px) {
  .testimonials-carousel { grid-template-columns: auto minmax(340px, 94vw) auto; gap: 0.08rem; }
  .carousel-viewport { padding: 0 4px; }
  .carousel-track { gap: 0.35rem; }
  .carousel-item { width: clamp(200px, 60vw, 280px); height: auto; border-radius: 18px; }
  .carousel-item.active { width: clamp(280px, 70vw, 340px); height: auto; }
  .carousel-item.pos-left, .carousel-item.pos-right { display: none; }
  .testimonials-carousel .prev { transform: translateX(12px); }
  .testimonials-carousel .next { transform: translateX(-12px); }
  .checkout-page #warranty60InfoBtn,
  .checkout-page #commentsExampleBtn,
  .checkout-page #warranty30InfoBtn,
  .checkout-page #warrantyLifetimeInfoBtn { padding: 0.2rem 0.6rem !important; font-size: 12px !important; line-height: 1 !important; }
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 3rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.footer .footer-bar { display: flex; justify-content: center; align-items: center; gap: 1.25rem; max-width: 680px; min-width: 0; margin: 0 auto; padding: 0.85rem 1.25rem; flex-wrap: wrap; }
/* Ícone/link do Instagram removido do rodapé (desktop e mobile) */
.footer .instagram-link { display: none !important; }
@media (max-width: 640px) {
  .footer .footer-bar { max-width: 92vw; gap: 0.4rem 1rem; padding: 0.75rem 1rem; }
}
.footer .footer-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--text-secondary); text-decoration: none; }
.footer .footer-link:hover { color: var(--text-primary); }
.footer .footer-center { color: var(--text-secondary); }

/* Destaque selecionado para inputs de seleção (mobile) */
.select-input.selected { border-color: var(--primary-purple); box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.35); }

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(107, 70, 193, 0.3);
    border-top: 3px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        margin-bottom: 2rem;
    }
    
    .video-container {
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .continue-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    #checkCheckoutButton { padding: 0.875rem 2rem !important; font-size: 1rem !important; margin-left: 0 !important; }
    #checkCheckoutButton .button-icon { width: 18px !important; height: 18px !important; }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .continue-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    #checkCheckoutButton { padding: 0.75rem 1.5rem !important; font-size: 0.9rem !important; margin-left: 0 !important; }
    #checkCheckoutButton .button-icon { width: 16px !important; height: 16px !important; }
}

@media (max-width: 640px) {
  #checkCheckoutButton .button-text { font-size: 1em !important; }
}

@media (min-width: 1024px) {
  #checkCheckoutButton { padding: 0.30rem 0.52rem !important; font-size: 13px !important; }
  #checkCheckoutButton .button-icon { width: 18px !important; height: 18px !important; }
}

/* Estados de foco para acessibilidade */
.continue-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.5);
}

.video-player:focus {
    outline: 3px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Estilo para quando o vídeo está carregando */
.video-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Título mais escuro no tema claro */
body.theme-light .checkout-page .title { color: #0f172a; text-shadow: none; }
/* Tema claro: subtítulo com contraste mais alto */
body.theme-light .checkout-page .subtitle { color: #0f172a; }

/* Destaque de seleção de cards (tipo e plano) */
.checkout-page .service-card.active { border-color: var(--primary-purple); box-shadow: var(--shadow-md); }
body.theme-light .checkout-page .service-card.active { border-color: var(--primary-purple); box-shadow: var(--shadow-md); }

/* Badge de desconto mais escura no tema claro */
body.theme-light .promo-prices .discount-badge {
  background: rgba(34,197,94,0.22);
  color: #166534;
  border-color: rgba(34,197,94,0.45);
}
body.theme-light .promo-prices .new-price { color: #22C55E; }

.checkout-page .client-tools { display: none; }
@media (max-width: 640px) {
  .checkout-page .header { margin-top: -0.5rem; }
  .checkout-page .header-ticker { margin-top: -12px; margin-bottom: 4px; }
  .checkout-page .client-tools { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.5rem; }
  .checkout-page .client-tools .select-input { max-width: 220px; }
  .checkout-page.container { padding-left: 1rem; padding-right: 1rem; }
  .checkout-page .cards-grid.checkout-grid { justify-content: center; }
  .checkout-page .cards-grid.checkout-grid { padding-left: 10px; padding-right: 10px; }
  .checkout-page .section-block { padding-left: 10px; padding-right: 10px; }
  .checkout-page .cards-grid.checkout-grid { padding-left: 10px; padding-right: 10px; }
  .checkout-page.container { justify-content: center; align-items: center; }
  /* Mobile: cards especiais ocupam 100% de largura */
  .checkout-page #perfilCard, .checkout-page #orderBumpInline, .checkout-page #resumo,
  .page-instagram-services #orderBumpInline, .page-instagram-services #resumo { width: calc(100vw - 20px) !important; max-width: none !important; margin-left: calc(50% - 50vw + 10px) !important; margin-right: calc(50% - 50vw + 10px) !important; box-sizing: border-box !important; }
  .checkout-page #perfilCard .card-content, .checkout-page #orderBumpInline .card-content, .checkout-page #resumo .card-content,
  .page-instagram-services #orderBumpInline .card-content, .page-instagram-services #resumo .card-content { align-items: stretch; width: 100%; padding-left: 0; padding-right: 0; }
  .checkout-page #orderBumpInline, .checkout-page #resumo,
  .page-instagram-services #orderBumpInline, .page-instagram-services #resumo { padding-left: 10px; padding-right: 10px; }
  .checkout-page #grupoUsername #checkCheckoutButton { margin-left: 0 !important; }
  .checkout-page #grupoUsername { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 0.2rem; width: 100%; align-items: stretch; }
  .checkout-page #grupoUsername .continue-button { height: 100%; display: flex; align-items: center; justify-content: center; }
  .checkout-page .service-card { padding-left: 1rem; padding-right: 1rem; }
  .checkout-page #perfilCard { margin-left: 0; margin-right: 0; padding-left: 10px; padding-right: 10px; box-sizing: border-box; }
  .checkout-page #perfilCard .card-content { padding-left: 0; padding-right: 0; }
  .checkout-page #perfilCard .input-group { width: 100%; margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
  .checkout-page #perfilCard .select-input { box-sizing: border-box; width: 100%; padding-left: 0.75rem; padding-right: 0.75rem; border-color: var(--border-color); box-shadow: none; }
  .checkout-page #perfilCard .tutorial-highlight { width: 100%; margin-left: 0; margin-right: 0; outline: 0; box-shadow: none; border: 0; }
  .checkout-page #perfilCard .select-input.selected,
  .checkout-page #perfilCard .select-input:focus { border-color: var(--border-color) !important; box-shadow: none !important; outline: none !important; }
  .checkout-page #grupoUsername .continue-button:focus { box-shadow: none !important; outline: none !important; }
  .checkout-page #orderBumpInline, .checkout-page #resumo { width: calc(100vw - 20px) !important; margin-left: calc(50% - 50vw + 10px) !important; margin-right: calc(50% - 50vw + 10px) !important; padding-left: 10px; padding-right: 10px; }
  .checkout-page #orderBumpInline .card-desc, .checkout-page #resumo .card-desc { padding-left: 0; padding-right: 0; }
  /* Mobile: telefone maior e centralizar texto informativo */
  .phone-label { font-size: calc(1rem + 3px); }
  .phone-hint { font-size: calc(0.875rem + 3px); text-align: center; }
  .checkout-page #paymentCard .phone-field .select-input { max-width: 100%; }
  .checkout-page #paymentCard .phone-field .select-input { font-size: 16px; }

  /* Mobile: garantir afastamento das bordas para demais cards */
  .checkout-page #audioCard,
  .checkout-page #tipoDescCard,
  .checkout-page #depoimentosCard,
  .checkout-page #plataformaCard,
  .checkout-page #planCards .service-card {
    width: calc(100vw - 20px) !important;
    margin-left: calc(50% - 50vw + 10px) !important;
    margin-right: calc(50% - 50vw + 10px) !important;
  }
}

.client-btn {
    position: fixed;
    top: 64px;
    right: 16px;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #0f172a;
    background: #0f172a;
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, transform 0.2s ease;
    z-index: 3000;
}
.client-btn:hover { border-color: #6B46C1; transform: translateY(-1px); }
.client-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.35); }
/* Página de Cliente (nova tela) */
.client-page {
    position: fixed;
    inset: 0;
    display: none;
    background: var(--bg-primary);
    z-index: 1002;
}
.client-page .client-page-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.client-title { text-align: center; color: var(--text-primary); margin-bottom: 0.25rem; }
.client-desc { text-align: center; color: var(--text-secondary); margin-bottom: 1rem; }
.client-form { max-width: 460px; margin: 0.5rem auto 1rem; }
.client-actions { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.5rem; }
.client-orders { max-width: 720px; margin: 0 auto; }

/* Evitar zoom ao focar em inputs no mobile (iOS) */
.client-page .select-input, .client-page input[type=tel] { font-size: 16px; }
.refil-page .select-input, .refil-page input[type=text], .refil-page input[type=tel] { font-size: 16px; }
@media (max-width: 768px) {
  .painel-page input, .painel-page select, .painel-page textarea { font-size: 16px !important; }
}

.price-old { color: #9ca3af; text-decoration: line-through; margin-right: 6px; }
.price-new { color: #22c55e; font-weight: 700; }

.audio-controls { position: relative; }
.tutorial-pop { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 10px; box-shadow: var(--shadow-md); padding: 0.5rem 0.7rem; color: var(--text-primary); display: flex; flex-direction: column; align-items: center; gap: 0.25rem; z-index: 4000; pointer-events: none; max-width: 280px; white-space: normal; line-height: 1.3; }
.checkout-page .tutorial-pop { display: none !important; }
.checkout-page #tutorialAudio { display: block !important; pointer-events: auto; cursor: grab; user-select: none; transform: none; top: 30px !important; }
.checkout-page #tutorialPlatform { display: block !important; top: 50px !important; }
.checkout-page #tutorialAudio.hide { display: none !important; }
.checkout-page #tutorialPlatform.hide { display: none !important; }
.checkout-page #tutorial4Validar { display: block !important; transform: none !important; }
.checkout-page #tutorial4Validar.hide { display: none !important; }
.checkout-page .phone-field #tutorial4Validar { top: 140px !important; left: 448px !important; }
.checkout-page #tutorial3Usuario { display: block !important; top: 70px !important; }
.checkout-page #tutorial3Usuario.hide { display: none !important; }
.checkout-page #tutorialAudio.dragging { cursor: grabbing; }
.checkout-page #tutorialAudio { display: block !important; }
.checkout-page #tutorialAudio { transform: none; }
.tutorial-pop.hide { display: none !important; }
.tutorial-pop::after { content: ""; position: absolute; bottom: -6px; left: var(--tip-arrow-left, 50%); transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid var(--bg-secondary); }
.checkout-page #tutorial5Pedido { display: block !important; }
.checkout-page #tutorial5Pedido.hide { display: none !important; }
.checkout-page .button-container { position: relative; }
.checkout-page .button-container #tutorial5Pedido { top: calc(100% + 22px) !important; bottom: auto !important; }
@media (max-width: 640px) {
  .checkout-page .phone-field #tutorial4Validar { left: 8px !important; top: 160px !important; }
}
@media (max-width: 480px) {
  .checkout-page .phone-field #tutorial4Validar { left: 8px !important; top: 170px !important; }
}
.tutorial-pop .tutorial-pop-step { display: inline-block; background: transparent; color: var(--text-secondary); border-radius: 0; font-size: 0.75rem; padding: 0; margin: 0; }
body.theme-light .tutorial-pop .tutorial-pop-step { color: #ffffff !important; }
.tutorial-pop .tutorial-pop-text { font-size: 0.9rem; display: block; }
.tutorial-pop-input { top: auto; bottom: auto; }

/* Realce de orientação para grupos alvo */
.tutorial-highlight { outline: 2px solid rgba(107,70,193,0.45); box-shadow: 0 0 0 3px rgba(107,70,193,0.25); border-radius: 12px; }

/* Botão Voltar (página Cliente) sem gradiente/laranja */
.btn-back { background: #ffffff; color: #111827; border: 1px solid var(--border-color); box-shadow: none; }
.btn-back::before { display: none; }
.btn-back:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
body.theme-light .btn-back { background: #f9fafb; color: #111827; }

body:not(.theme-light) .theme-toggle { background: #ffffff; color: #111827; border-color: #e5e7eb; }
body:not(.theme-light) .theme-toggle:hover { border-color: #6B46C1; }

.checkout-page.container {
    max-width: 100%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: flex-start;
    align-items: stretch;
}
.checkout-page .main-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 1024px) {
  .checkout-page.container { padding-left: 2rem; padding-right: 2rem; }
  .checkout-page .main-content { max-width: 1440px; width: 100%; }
}
.checkout-page .cards-grid.checkout-grid { width: 100%; }
.checkout-page .phone-hint { font-size: 1.125rem !important; }
.checkout-page .phone-label { font-size: calc(1.125rem + 8px) !important; }
.checkout-page .button-container { margin-top: calc(2rem + 50px) !important; }
.checkout-page .subtitle { max-width: none; }
.checkout-page #perfilCard .card-title { font-size: calc(0.9rem + 1px); }
.checkout-page #perfilCard .card-desc { font-size: calc(0.95rem + 1px); }
.checkout-page #perfilCard .select-input { font-size: calc(1rem + 1px); }
.checkout-page #perfilCard .continue-button .button-text { font-size: calc(1rem + 1px); }

/* Tema claro: contraste melhor para Garantia estendida */
body.theme-light .promo-item.warranty60 .promo-title { color: #111827; }

/* Tema claro: título Plataforma em preto */
body.theme-light #plataformaCard .card-title { color: #0f172a; }
body.theme-light #plataformaCard .platform-help { color: #0f172a !important; }
body.theme-light .checkout-page .phone-hint { color: #0f172a !important; }

/* Tema claro: botões do guia de áudio na paleta do toast */
body.theme-light .audio-speed-btn { background: #0f172a; color: #ffffff; border-color: #0f172a; }
body.theme-light .audio-speed-btn:hover { border-color: #6B46C1; }

/* Modal simples para Garantia 60 */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); display: none; z-index: 1000; align-items: center; justify-content: center; }
.modal-dialog { width: 100%; max-width: 420px; margin: 0 auto; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 16px; box-shadow: var(--shadow-lg); color: var(--text-primary); height: 85vh; aspect-ratio: 9 / 16; display: flex; flex-direction: column; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1rem; border-bottom: 1px solid var(--border-color); }
.modal-title { font-weight: 700; }
.modal-close { background: transparent; border: none; color: var(--text-primary); font-size: 1rem; cursor: pointer; }
.modal-body { padding: 1rem; flex: 1; overflow: auto; }
.modal-footer { padding: 0.9rem 1rem; border-top: 1px solid var(--border-color); display: flex; justify-content: center; }
body.theme-light .modal-dialog { background: #ffffff; border-color: #e5e7eb; }

/* Centralização das dicas do perfil Instagram */
.checkout-page #perfilHints { text-align: center; }
.checkout-page #perfilHints .perfil-hint { line-height: 1.25; }
.checkout-page #perfilHints .perfil-hint.strong { font-weight: 700; color: var(--text-primary); }
.modal-image-placeholder { width: 100%; aspect-ratio: 9 / 16; }

@media (max-width: 640px) {
  .checkout-page #grupoUsername { grid-template-columns: 1fr; justify-items: center; }
  .checkout-page #grupoUsername .continue-button { height: auto; justify-self: center; margin-top: 0.25rem; }
  .checkout-page #buyFollowersBtn { width: calc(100vw - 20px); max-width: calc(100vw - 20px); margin-top: 14px !important; }
  .checkout-page #buyFollowersBtn .button-text { white-space: nowrap; }
  /* Subir o card de áudio ainda mais */
    .checkout-page #audioCard { margin-top: -16px; }
  .audio-player { gap: 0.25rem; }
  .audio-controls { gap: 0.2rem; }
  .audio-progress { height: 3px; }
  .audio-progress::-webkit-slider-runnable-track { height: 3px; }
  .audio-progress::-webkit-slider-thumb { width: 10px; height: 10px; margin-top: -4px; }
  .audio-progress::-moz-range-track { height: 3px; }
  .audio-progress::-moz-range-thumb { width: 10px; height: 10px; }
  .checkout-page #audioCard .card-content { padding: 0.3rem 0.5rem; }
  .audio-speed-btn { padding: 0.3rem 0.5rem; }
  .checkout-page .site-brand { left: 0.5rem; }
  .continue-button, .platform-btn, .likes-arrow, .carousel-btn { touch-action: manipulation; }
}

.why-oppus-slider { margin: 2rem auto; }
.slider-container { display: flex; overflow-x: auto; gap: 0.75rem; padding: 0.25rem; scroll-snap-type: x mandatory; justify-content: center; }
.slider-slide { flex: 0 0 auto; width: 260px; text-align: center; scroll-snap-align: center; transform: scale(0.9); opacity: 0.85; transition: transform 0.25s ease, opacity 0.25s ease; }
.slider-slide.active { transform: scale(1.05); opacity: 1; }
.slider-slide img { width: 100%; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: var(--shadow-md); }
.slider-slide.active img { box-shadow: var(--shadow-lg); }
.slide-title { margin-top: 0.5rem; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.slide-desc { margin-top: 0.25rem; font-size: 0.95rem; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 768px) { .slider-slide { width: 80vw; } }

.value-props { display: flex; gap: 1.6rem; justify-content: center; align-items: flex-start; margin-top: 140px; margin-bottom: 80px; flex-wrap: wrap; }
.likes-control { position: relative; }
.value-prop-item { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; background: transparent; border: none; color: var(--text-primary); }
.value-prop-row { display: inline-flex; align-items: center; gap: 0.35rem; }
.value-prop-icon { width: 94px; height: 94px; color: currentColor; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15)); background: transparent; object-fit: contain; }
.value-prop-metric { color: #C9216B; font-weight: 800; font-size: 1.8rem; letter-spacing: 0.02em; }
.value-prop-caption { color: var(--text-secondary); font-size: 1rem; text-align: center; line-height: 1.3; }
.value-prop-arrow { color: #C9216B; font-weight: 800; margin-left: 0.08rem; }
 .value-prop-caption .caption-mobile { display: none; }
 .value-prop-caption .caption-desktop { display: inline; }
/* Desktop: aproximar ícones, métricas e legendas dos dois primeiros itens */
.value-prop-item:nth-child(1) .value-prop-row { transform: translateX(-4px); }
.value-prop-item:nth-child(1) .value-prop-caption { transform: translateX(-4px); }
.value-prop-item:nth-child(2) .value-prop-row { transform: translateX(-2px); }
.value-prop-item:nth-child(2) .value-prop-caption { transform: translateX(-2px); }
@media (max-width: 640px) {
  .value-prop-icon { width: 68px; height: 68px; }
  .value-props { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 1.2rem; row-gap: 0.4rem; justify-items: center; align-items: start; margin-top: 72px; }
  .value-prop-item { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; max-width: 32vw; }
  .value-prop-row { display: flex; flex-direction: row; align-items: center; gap: 0.05rem; }
  .value-prop-item:nth-child(1) .value-prop-row { transform: translateX(-2px); }
  .value-prop-item:nth-child(1) .value-prop-caption { transform: translateX(-2px); }
  .value-prop-item:nth-child(2) .value-prop-row { transform: translateX(-2px); }
  .value-prop-item:nth-child(2) .value-prop-caption { transform: translateX(-2px); }
  .value-prop-item:nth-child(2) .value-prop-icon { transform: translateX(3px); }
  .value-prop-item:nth-child(3) .value-prop-row { transform: translateX(1px); }
  .value-prop-metric { font-size: 1.8rem; line-height: 1; }
  .value-prop-caption { font-size: 1rem; line-height: 1.2; white-space: normal; word-break: break-word; text-align: center; }
  .value-prop-caption .caption-desktop { display: none; }
  .value-prop-caption .caption-mobile { display: inline; }
}
 .faq-section { width: 100%; }
 .faq-grid { display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
 .faq-card .card-content { gap: 0.4rem; }
 .faq-question { width: 100%; display: flex; align-items: center; justify-content: flex-start; gap: 0.5rem; background: transparent; border: none; color: var(--text-primary); font-size: 1.15rem; font-weight: 700; padding: 0.2rem 0.1rem; cursor: pointer; text-align: left; }
 .faq-toggle { color: var(--text-secondary); width: 18px; height: 18px; }
 .faq-card .faq-toggle { transition: transform 0.2s ease; }
 .faq-card.open .faq-toggle { transform: rotate(180deg); }
 .faq-answer { color: var(--text-secondary); font-size: 1rem; line-height: 1.5; }
 .faq-card.open .faq-answer { display: block; }
 #faqSection .testimonials-title { font-size: calc(1rem + 11px); font-family: var(--font-family); font-weight: 700; width: 100%; box-sizing: border-box; padding: 0 1rem; word-wrap: break-word; }
#faqSection { margin-top: 3rem; font-family: var(--font-family); width: 100%; box-sizing: border-box; }
@media (min-width: 1024px) { #faqSection { max-width: 600px; margin: 5rem auto 0; } }
@media (max-width: 767px) {
  #faqSection { margin-top: 3rem; padding: 0 0.25rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .faq-card { width: 100%; max-width: 100%; }
  .faq-question { font-weight: 500; }
}
.faq-label { font-size: 1.05rem; }


/* Estilo Dourado para Cards de Destaque - ATIVO */
.service-card.gold-card {
    border: 2px solid #FFD700 !important;
    background: transparent !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.25) !important;
    transform: scale(1.02);
    z-index: 5;
}
.service-card.gold-card.active {
    border-color: #FFD700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
    background: transparent !important;
}
.service-card.gold-card .card-title,
.service-card.gold-card .card-desc,
.service-card.gold-card .price-old {
    color: inherit !important;
}
.service-card.gold-card .price-new {
    color: #22C55E !important;
}
.service-card.gold-card .plan-badge {
    background: #FFD700 !important;
    border-color: #FFD700 !important;
    color: #000000 !important; /* Black text for better contrast on Yellow */
    text-shadow: none !important;
    font-weight: 800 !important;
}

/* Coupon Section Styles */
.coupon-section {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.coupon-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.coupon-container .select-input {
    text-transform: uppercase;
    flex: 1;
    padding: 0.6rem;
    font-size: 0.9rem;
    width: auto;
}

.coupon-btn {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
    white-space: nowrap;
    border-radius: 4px !important; /* Retangular override */
    min-width: auto !important;
    height: auto !important;
    box-shadow: none !important;
}

@media (max-width: 640px) {
    .coupon-btn {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
}

.coupon-message {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

/* =========================================
   ACTIVE CARD STYLES (Preenchimento)
   ========================================= */
.service-card.active,
.option-card.active,
.plan-card.active {
    background: var(--primary-purple, #8B5CF6) !important;
    border-color: var(--primary-purple, #8B5CF6) !important;
    color: white !important;
    transition: all 0.3s ease;
}

/* Ensure text contrast inside active cards */
.service-card.active .card-title,
.service-card.active .card-desc,
.service-card.active .price-new,
.service-card.active .price-old,
.service-card.active .unit,
.service-card.active small,
.service-card.active .card-content,
.service-card.active h3,
.service-card.active p {
    color: white !important;
}

/* Maintain gold border for 'Mais Pedido' but fill with purple */
.service-card.gold-card.active {
    border: 2px solid #FFD700 !important;
    background: var(--primary-purple, #8B5CF6) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
}

/* Gold card active text colors */
.service-card.gold-card.active .price-new {
    color: white !important;
}

/* =========================================
   INPUT LABEL DARK MODE
   ========================================= */
.input-label {
    color: #334155;
    transition: color 0.3s ease;
}

body:not(.theme-light) .input-label {
    color: #ffffff !important;
}

/* =========================================
   BACK BUTTON DARK MODE
   ========================================= */
/* (Removido) Botão Voltar não tem mais fundo claro no escuro — agora é pill transparente;
   a cor clara é definida em body.theme-dark #backToStep1Btn (contraste correto). */
body:not(.theme-light) #backToStep1Btn,
body:not(.theme-light) button[id^="backToStep"] { color: #cbd5e1 !important; }
body:not(.theme-light) #backToStep1Btn svg,
body:not(.theme-light) button[id^="backToStep"] svg { stroke: currentColor !important; }


/* =========================================
   Styles ported from servicos-instagram.ejs for consistency
   ========================================= */

/* Título do Checkout com especificações fornecidas */
@media (min-width: 641px) {
  .checkout-page .title {
    font-size: clamp(2.75rem, 5.2vw, 4rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
  }
}
.checkout-page .main-content { max-width: 1440px; width: 100%; margin: 0 auto; }

/* Ampliar área de conteúdo e larguras dos cards no desktop */
@media (min-width: 1024px) {
  .checkout-page.container { max-width: 100%; width: 100%; }
  .checkout-page .main-content { max-width: 1440px; width: 100%; margin: 0 auto; }
  .checkout-page .subtitle { 
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.4rem; 
  }
  .checkout-page .service-card { width: 100%; padding: 0.55rem 0.7rem; }
  .checkout-page .card-content { gap: 0.2rem; }
  /* Desktop: reduzir levemente os cards de planos (quantidade/preço) */
  .checkout-page #planCards .service-card { min-height: 130px; }
  .checkout-page #planCards .card-title { font-size: 1.15rem; }
  .checkout-page #planCards .card-desc { font-size: 1.05rem; }
  /* Desktop: aumentar título e botões da plataforma */
  .checkout-page #plataformaCard .card-title { font-size: calc(clamp(2.75rem, 5.2vw, 3.75rem) - 2px); }
  .checkout-page #plataformaCard .card-desc { font-size: calc(1.25rem - 2px); }
  .checkout-page .platform-btn { padding: 1.2rem 1.6rem; font-size: 1.15rem; }
  .checkout-page .select-input {
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
    width: 100%;
    margin-top: 0.1rem; /* mais rente às bordas do card */
    /* aumenta área útil horizontal no desktop */
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  .checkout-page .input-group { width: 100%; }
  .checkout-page .input-group { max-width: 820px; }

  /* Desktop-only: esconder selects de tipo/quantidade e usar cards */
  #grupoTipo, #grupoQuantidade { display: none; }
  #tipoCards, #planCards { display: grid !important; }
  #tipoCards { grid-template-columns: repeat(3, 1fr) !important; gap: 0.8rem; }
  #planCards { grid-template-columns: repeat(3, 1fr) !important; gap: 0.8rem; }
  #tipoCards .card-title { font-size: 1.1rem; }
  #tipoCards .card-desc { font-size: 1rem; }
  .option-card, .plan-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0.6rem 0.8rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .option-card .card-content, .plan-card .card-content { display: flex; align-items: center; justify-content: center; flex-direction: column; width: 100%; height: 100%; text-align: center; }
  .option-card:hover, .plan-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #6B46C1; }
  .option-card.active, .plan-card.active { border-color: #6B46C1; box-shadow: var(--shadow-md); }
  .plan-card .plan-title { font-weight: 600; }
  .plan-card .plan-sub { color: var(--text-secondary); font-size: 0.95rem; }
  .site-brand { left: 16rem; }
  #audioCard .card-content { align-items: stretch; }
  #audioCard .audio-player { width: 100%; }
  #audioCard .audio-controls { width: 100%; }
  #audioCard .audio-progress { height: 6px; }
  #tipoDescCard .card-desc { font-size: calc(1rem + 2px); }
  #resumo .card-desc { font-size: calc(1rem + 2px); }
  .phone-label { font-size: calc(1rem + 2px); }
  .phone-hint { font-size: calc(0.875rem + 2px); }
}
/* Garantir largura total dos inputs no mobile e desktop */
.checkout-page .input-group { width: 100%; }
@media (min-width: 1024px) { .checkout-page .input-group { max-width: 700px; } }
.checkout-page .select-input { width: 100%; }
.cards-grid.checkout-grid { gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .cards-grid.checkout-grid { grid-template-columns: 1fr; max-width: 1440px; margin: 0 auto; } }
  /* Subtitle unified style */
  .checkout-page .subtitle { 
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.4rem; 
  }
/* Notificação de venda (toast) um pouco maior na Home */
.toast-container .toast-item { font-size: 1.05rem; padding: 0.8rem 1.05rem; }
.checkout-page .select-input option { color: #111827; }
/* Centralizar área de resultado PIX */
#pixResultado { text-align: center; }

/* Cards do checkout: usar cards em todas as visões e esconder selects originais */
#tipoSelectCard, #quantidadeSelectCard { display: none; }
#grupoTipo, #grupoQuantidade { display: none !important; }
  #tipoCards, #planCards { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
  #tipoCards .service-card, #planCards .service-card { min-height: 50px; }
@media (min-width: 640px) { #tipoCards, #planCards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { #tipoCards, #planCards { grid-template-columns: repeat(3, 1fr); } }
  .service-card.active { border-color: var(--primary-purple); box-shadow: 0 0 0 3px rgba(107,70,193,0.35); }

@media (max-width: 639px) {
  #tipoCards { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem; }
  #planCards { grid-template-columns: 1fr !important; gap: 0.5rem; }
  #tipoCards .option-card, #planCards .plan-card { width: 100%; min-height: 90px; }
  #tipoCards .card-title, #planCards .card-title { font-size: 0.9rem; line-height: 1.2; }
  #tipoCards .card-desc, #planCards .card-desc { font-size: 0.85rem; }
}
@media (min-width: 1024px) {
  #tipoCards .service-card { min-height: 120px; }
}
/* Stepper Styles */
.stepper-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.stepper-container .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  flex: 1;
}

.stepper-container .step-circle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stepper-container .step.active .step-circle {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.2);
}

.stepper-container .step-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  text-align: center;
}

.stepper-container .step.active .step-label {
  color: var(--primary-purple);
  font-weight: 600;
}

.stepper-container .step-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--border-color);
  margin: 0 10px;
  margin-bottom: 1.4rem; /* Align with circle center roughly */
}

.stepper-container .step.completed .step-circle {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: #fff;
}

.stepper-container .step.completed .step-label {
  color: var(--primary-purple);
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM — EiViralizeii inspired components
   ═══════════════════════════════════════════════════════════════ */

/* ── Badge / Pill ── */
.badge, .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--color-primary-light, #a78bfa);
  white-space: nowrap;
}
.badge-gradient {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
}
.badge-accent {
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.35);
  color: #67e8f9;
}
body.theme-light .badge, body.theme-light .pill {
  background: rgba(124,58,237,0.10);
  border-color: rgba(124,58,237,0.25);
  color: #6d28d9;
}

/* ── Hero section ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  background: var(--color-bg, #0a0a0f);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 40% 20%, rgba(124,58,237,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 70% 70%, rgba(6,182,212,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero-badge { margin-bottom: 1.25rem; }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text, #f1f5f9);
  margin-bottom: 1rem;
}
.hero-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--color-text-muted, #94a3b8);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
body.theme-light .hero { background: #f3f4f6; }
body.theme-light .hero-title { color: #0f172a; }
body.theme-light .hero-subtitle { color: #475569; }

/* ── Trust badges ── */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--color-text-muted, #94a3b8);
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-badge-item svg { flex-shrink: 0; color: var(--color-accent, #06b6d4); }
body.theme-light .trust-badges { color: #475569; }

/* ── Stats grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 680px;
  margin: 2.5rem auto;
}
.stat-item {
  background: var(--color-surface, #13131a);
  border: 1px solid var(--color-border, #2d2d3d);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted, #94a3b8);
  font-weight: 500;
}
body.theme-light .stat-item { background: #fff; border-color: #e2e8f0; }
body.theme-light .stat-label { color: #64748b; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .badge { margin-bottom: 0.75rem; }
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text, #f1f5f9);
  margin-bottom: 0.6rem;
}
.section-header p {
  color: var(--color-text-muted, #94a3b8);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  max-width: 520px;
  margin: 0 auto;
}
body.theme-light .section-header h2 { color: #0f172a; }

/* ── Pain-points / Feature rows ── */
.pain-grid, .feature-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.pain-card, .feature-card, .benefit-card {
  background: var(--color-surface, #13131a);
  border: 1px solid var(--color-border, #2d2d3d);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
}
.pain-card .card-icon-wrap, .feature-card .card-icon-wrap, .benefit-card .card-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: rgba(124,58,237,0.15);
  color: var(--color-primary-light, #a78bfa);
}
.feature-card .card-icon-wrap { background: rgba(6,182,212,0.12); color: #67e8f9; }
.benefit-card .card-icon-wrap { background: rgba(16,185,129,0.12); color: #6ee7b7; }
.pain-card h3, .feature-card h3, .benefit-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem;
  color: var(--color-text, #f1f5f9);
}
.pain-card p, .feature-card p, .benefit-card p {
  font-size: 0.9rem; color: var(--color-text-muted, #94a3b8); line-height: 1.55;
}
body.theme-light .pain-card, body.theme-light .feature-card, body.theme-light .benefit-card {
  background: #fff; border-color: #e2e8f0;
}
body.theme-light .pain-card h3, body.theme-light .feature-card h3, body.theme-light .benefit-card h3 { color: #0f172a; }

/* ── btn-primary / btn-secondary ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--color-primary-light, #a78bfa);
  border: 2px solid rgba(124,58,237,0.5);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--color-primary); background: rgba(124,58,237,0.08); transform: translateY(-2px); }
body.theme-light .btn-secondary { color: #6d28d9; border-color: rgba(124,58,237,0.4); }

/* ── Review bar animada acima do título ── */
@keyframes heroBarIn {
  0%   { opacity: 0; transform: translateY(-14px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-review-bar--animated {
  animation: heroBarIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
  margin-bottom: 3rem;
}
/* ── Seção Como Funciona ── */
.how-it-works-section { padding: 2.5rem 1rem; max-width: 860px; margin: 0 auto; }
.hiw-header { text-align: center; margin-bottom: 2rem; }
.hiw-title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: #0f172a; margin: 0.5rem 0 0.4rem; letter-spacing: -0.02em; }
body.lp-page:not(.theme-light) .hiw-title { color: #f8fafc; }
.hiw-sub { color: #64748b; font-size: 0.95rem; margin: 0; }
.hiw-cards { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hiw-cards { flex-direction: row; align-items: stretch; } }
.hiw-connector { display: none; }
@media (min-width: 640px) { .hiw-connector { display: flex; align-items: center; font-size: 1.8rem; color: #cbd5e1; flex-shrink: 0; } }
.hiw-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  position: relative;
}
body.lp-page:not(.theme-light) .hiw-card { background: #121019; border-color: #272336; }
.hiw-num {
  position: absolute; top: -12px; left: 1.25rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gradient-primary, linear-gradient(135deg,#7c3aed,#e1306c));
  color: #fff; font-size: 0.82rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.hiw-icon { width: 48px; height: 48px; border-radius: 14px; background: #f0eeff; display: flex; align-items: center; justify-content: center; color: #7c3aed; }
body.lp-page:not(.theme-light) .hiw-icon { background: rgba(124,58,237,0.15); }
.hiw-card-title { font-size: 1rem; font-weight: 800; color: #0f172a; margin: 0; }
body.lp-page:not(.theme-light) .hiw-card-title { color: #f8fafc; }
.hiw-card-desc { font-size: 0.86rem; color: #64748b; line-height: 1.55; margin: 0; }

/* ── Social-proof toast (canto inferior direito, alinhado ao WhatsApp) ── */
.social-proof-toast {
  position: fixed;
  bottom: 88px;
  right: 16px;
  left: auto;
  top: auto;
  z-index: 99998;
  max-width: 260px;
  pointer-events: auto;
}
/* Banner "Instalar app" fica colado na extremidade INFERIOR da tela (bottom:0).
   A barra inferior (Mais/Turbinar/Pedidos), a bolha do WhatsApp e o toast de venda
   sobem pela altura do banner (--pwa-bh) pra ficarem ACIMA dele. */
body.pwa-install-active .bottom-nav.app-nav,
body.pwa-install-active nav.bottom-nav { bottom: var(--pwa-bh, 56px) !important; transition: bottom .2s ease; }
body.pwa-install-active .lp-whatsapp-fab { bottom: calc(var(--pwa-bh, 56px) + 72px) !important; transition: bottom .2s ease; }
body.pwa-install-active .social-proof-toast { bottom: calc(var(--pwa-bh, 56px) + 88px) !important; }
.sp-toast-inner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  animation: spToastIn 0.35s ease;
}
.sp-toast-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
}
.sp-toast-body { flex: 1; }
.sp-toast-name { font-weight: 700; font-size: 0.8rem; color: #0f172a; }
.sp-toast-action { font-size: 0.74rem; color: #475569; margin-top: 1px; }
.sp-toast-time { font-size: 0.7rem; color: #94a3b8; margin-top: 2px; }
@keyframes spToastIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.theme-dark .sp-toast-inner {
  background: #1e293b;
  border-color: #334155;
}
body.theme-dark .sp-toast-icon { background: #0f172a; }
body.theme-dark .sp-toast-name { color: #f1f5f9; }
body.theme-dark .sp-toast-action { color: #94a3b8; }

/* ── Bottom nav (mobile) ── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--color-surface, #13131a);
  border-top: 1px solid var(--color-border, #2d2d3d);
  padding: 0.5rem 1rem calc(0.5rem + env(safe-area-inset-bottom));
  gap: 0.25rem;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 767px) { .bottom-nav { display: flex; } }
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--color-text-muted, #94a3b8);
  font-size: 0.72rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.25rem 0.5rem;
}
.bottom-nav-item.active, .bottom-nav-item:hover { color: var(--color-primary-light, #a78bfa); }
.bottom-nav-item svg { width: 22px; height: 22px; }
.bottom-nav .bottom-nav-cta {
  background: var(--gradient-primary);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
body.theme-light .bottom-nav { background: #fff; border-top-color: #e2e8f0; }
body.has-bottom-nav { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }

/* ── Promo carousel (banner strip) ── */
.promo-carousel-wrap {
  overflow: hidden;
  padding: 0.75rem 0;
  background: var(--color-surface, #13131a);
  border-top: 1px solid var(--color-border, #2d2d3d);
  border-bottom: 1px solid var(--color-border, #2d2d3d);
}
.promo-carousel-track {
  display: flex;
  gap: 1rem;
  animation: promoScroll 30s linear infinite;
  width: max-content;
}
.promo-carousel-track:hover { animation-play-state: paused; }
.promo-card-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface-2, #1e1e2e);
  border: 1px solid var(--color-border, #2d2d3d);
  border-radius: 10px;
  padding: 0.55rem 1rem;
  white-space: nowrap;
  font-size: 0.85rem;
}
.promo-card-mini .promo-icon { font-size: 1.1rem; }
.promo-card-mini .promo-name { font-weight: 600; color: var(--color-text, #f1f5f9); }
.promo-card-mini .promo-price { color: var(--color-accent, #06b6d4); font-weight: 700; }
@keyframes promoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
body.theme-light .promo-carousel-wrap { background: #f1f5f9; border-color: #e2e8f0; }
body.theme-light .promo-card-mini { background: #fff; border-color: #e2e8f0; }
body.theme-light .promo-card-mini .promo-name { color: #0f172a; }

/* ── Hero title gradient helper ── */
.title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── Animated hero badge ── */
.hero-animated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.4);
  color: #c4b5fd;
  margin-bottom: 1.25rem;
  animation: badgePulse 2.5s ease-in-out infinite;
}
.hero-animated-badge .badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent, #06b6d4);
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
  50%       { box-shadow: 0 0 0 6px rgba(124,58,237,0.12); }
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}
body.theme-light .hero-animated-badge { background: rgba(124,58,237,0.10); border-color: rgba(124,58,237,0.25); color: #6d28d9; }

/* ── Landing page section blocks ── */
.lp-section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 640px) { .lp-section { padding: 2.5rem 1rem; } }

/* ── CTA banner ── */
.cta-banner {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--color-surface, #13131a);
  border-top: 1px solid var(--color-border, #2d2d3d);
  border-bottom: 1px solid var(--color-border, #2d2d3d);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--color-text, #f1f5f9); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--color-text-muted, #94a3b8); margin-bottom: 1.75rem; }
body.theme-light .cta-banner { background: #f1f5f9; border-color: #e2e8f0; }
body.theme-light .cta-banner h2 { color: #0f172a; }

/* ── Depoimentos / testimonials atualização ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--color-surface, #13131a);
  border: 1px solid var(--color-border, #2d2d3d);
  border-radius: 16px;
  padding: 1.5rem;
}
.testimonial-card .stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-card p { font-size: 0.92rem; color: var(--color-text-muted, #94a3b8); line-height: 1.6; margin-bottom: 1rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.6rem; }
.testimonial-card .author-name { font-weight: 700; font-size: 0.88rem; color: var(--color-text, #f1f5f9); }
.testimonial-card .author-handle { font-size: 0.78rem; color: var(--color-text-muted, #94a3b8); }
body.theme-light .testimonial-card { background: #fff; border-color: #e2e8f0; }
body.theme-light .testimonial-card .author-name { color: #0f172a; }

/* ═══════════════════════════════════════════════════════════════
   TWO-COLUMN CHECKOUT LAYOUT (svc-layout) — content left, sticky resumo right
   ═══════════════════════════════════════════════════════════════ */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 1024px) {
  .svc-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 2rem;
  }
}
.svc-main { min-width: 0; }
.svc-main > .section-block { margin-top: 0; }

.svc-aside { min-width: 0; }
@media (min-width: 1024px) {
  .svc-aside {
    position: sticky;
    top: 84px;
    align-self: start;
  }
}
/* On mobile the resumo aside drops to the bottom, after the flow */
@media (max-width: 1023px) {
  .svc-layout { display: flex; flex-direction: column; }
  .svc-aside { order: 2; }
}

/* Inside the aside, the resumo card should fill the column width */
.svc-aside #resumo {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Mini trust block above the resumo */
.svc-aside-trust {
  background: var(--color-surface, #13131a);
  border: 1px solid var(--color-border, #2d2d3d);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.svc-trust-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text, #f1f5f9);
}
.svc-trust-row svg { flex-shrink: 0; color: var(--color-accent, #06b6d4); }
body.theme-light .svc-aside-trust { background: #fff; border-color: #e2e8f0; }
body.theme-light .svc-trust-row { color: #0f172a; }
@media (max-width: 1023px) { .svc-aside-trust { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   LANDING / APP PAGES — tema escuro só quando NÃO está em theme-light
   (claro por padrão; escuro via botão de alternar tema)
   ═══════════════════════════════════════════════════════════════ */
body.lp-page:not(.theme-light) {
  background: #07070b;
  color: #f1f5f9;
  /* paleta escura mais profunda para as páginas app */
  --color-bg: #07070b;
  --color-surface: #121019;
  --color-surface-2: #1a1726;
  --color-border: #272336;
  --color-text: #f1f5f9;
  --color-text-muted: #9aa3b2;
  --bg-dark: #07070b;
  --bg-secondary: #121019;
  --text-primary: #f1f5f9;
  --text-secondary: #9aa3b2;
  --border-color: #272336;
}
body.lp-page .container { background: transparent; }
body.lp-page:not(.theme-light) .fixed-menu {
  background: rgba(10,9,16,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1c1928;
}
body.lp-page:not(.theme-light) .fixed-menu .site-brand-text { color: #f1f5f9; }
body.lp-page:not(.theme-light) .footer { background: #0a0912; border-top: 1px solid #1c1928; }

/* Bottom nav app — variante clara (tema claro) */
body.theme-light .bottom-nav.app-nav { background: #ffffff; border-top: 1px solid #e2e8f0; }
body.theme-light .bottom-nav.app-nav .bottom-nav-item { color: #64748b; }
body.theme-light .bottom-nav.app-nav .bottom-nav-item.active,
body.theme-light .bottom-nav.app-nav .bottom-nav-item.active svg,
body.theme-light .bottom-nav.app-nav .bottom-nav-item:hover { color: #7c3aed; }

/* Cards de serviço do engajamento — contraste no tema escuro */
body.lp-page:not(.theme-light) #engajamentoServiceCards .service-card {
  background: var(--color-surface, #121019) !important;
  border-color: var(--color-border, #272336) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45) !important;
}
body.lp-page:not(.theme-light) #engajamentoServiceCards .card-title { color: #f1f5f9 !important; }
body.lp-page:not(.theme-light) #engajamentoServiceCards .card-subtitle,
body.lp-page:not(.theme-light) #engajamentoServiceCards .card-security,
body.lp-page:not(.theme-light) #engajamentoServiceCards .card-hint,
body.lp-page:not(.theme-light) #engajamentoServiceCards .card-price span:first-child { color: #9aa3b2 !important; }

/* ── Grid de categorias de serviço (engajamento) — 2 colunas ── */
#engajamentoServiceCards.svc-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 !important;
}
@media (min-width: 768px) {
  #engajamentoServiceCards.svc-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 20px !important; max-width: 900px !important; }
}
.svc-cat-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  padding: 1rem 0.9rem 0.9rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 150px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
  .svc-cat-card { padding: 1.4rem 1.2rem 1.1rem; min-height: 180px; border-radius: 22px; }
}
.svc-cat-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary, #7c3aed);
  box-shadow: 0 10px 24px rgba(124,58,237,0.15);
}
.svc-cat-card.active {
  border-color: var(--color-primary, #7c3aed);
  background: linear-gradient(180deg, rgba(124,58,237,0.07) 0%, #fff 60%);
}
.svc-cat-ic {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: #6b7280;
}
@media (min-width: 768px) {
  .svc-cat-ic { width: 42px; height: 42px; }
  .svc-cat-ic svg { width: 34px !important; height: 34px !important; }
}
.svc-cat-ic svg { width: 26px; height: 26px; }
.svc-cat-card.active .svc-cat-ic { color: var(--color-primary, #7c3aed); }
.svc-cat-title { font-size: 1rem; font-weight: 800; color: #0f172a; margin: 0.15rem 0 0; letter-spacing: -0.01em; }
@media (min-width: 768px) {
  .svc-cat-title { font-size: 1.15rem; }
}
.svc-cat-price { font-size: 0.78rem; color: #64748b; margin: 0 0 0.3rem; line-height: 1.4; }
@media (min-width: 768px) { .svc-cat-price { font-size: 0.85rem; } }
.svc-cat-price strong { color: var(--color-primary, #7c3aed); font-weight: 800; }
.svc-cat-platforms { display: flex; gap: 0.35rem; margin-top: auto; flex-wrap: wrap; }
.pf-chip {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.pf-chip svg { width: 12px; height: 12px; }
.pf-chip.pf-ig { background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%); }
.pf-chip.pf-tt { background: #000; }
.pf-chip.pf-yt { background: #ff0000; }

/* Dark theme */
body.lp-page:not(.theme-light) .svc-cat-card {
  background: var(--color-surface, #121019) !important;
  border-color: var(--color-border, #272336) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4) !important;
}
body.lp-page:not(.theme-light) .svc-cat-card.active {
  background: linear-gradient(180deg, rgba(124,58,237,0.22) 0%, var(--color-surface, #121019) 60%) !important;
  border-color: var(--color-primary-light, #a78bfa) !important;
}
body.lp-page:not(.theme-light) .svc-cat-title { color: var(--color-text, #f1f5f9) !important; }
body.lp-page:not(.theme-light) .svc-cat-price { color: var(--color-text-muted, #9aa3b2) !important; }
body.lp-page:not(.theme-light) .svc-cat-price strong { color: var(--color-primary-light, #a78bfa) !important; }
body.lp-page:not(.theme-light) .svc-cat-ic { color: #9aa3b2 !important; }
body.lp-page:not(.theme-light) .svc-cat-card.active .svc-cat-ic { color: var(--color-primary-light, #a78bfa) !important; }

/* Esconder chips de plataforma nos cards de categoria */
.svc-cat-platforms { display: none !important; }

/* FAQ — estreita e compacta */
.faq-section .faq-grid {
  max-width: clamp(280px, 88%, 460px) !important;
}
.faq-section .faq-question { padding: 0.85rem 1rem !important; font-size: 0.92rem !important; }
.faq-section .faq-answer { padding: 0 1rem 0.9rem !important; font-size: 0.85rem !important; }
.faq-section .faq-toggle { width: 14px !important; height: 14px !important; }

/* Cards de serviço (engajamento) — alturas iguais e proporções consistentes */
.svc-cat-card {
  height: 100% !important;
  min-height: 160px !important;
  box-sizing: border-box !important;
}
.svc-cat-card .svc-cat-title { line-height: 1.25; }
.svc-cat-card .svc-cat-price { line-height: 1.4; }
#engajamentoServiceCards.svc-cat-grid { grid-auto-rows: 1fr !important; }

/* ── Refil — atualizar hero pra paleta Instagram + sumir o azul ── */
/* Hero do refil SEM caixa colorida: fundo transparente, herda o fundo da página */
body.refil-page .refil-hero {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0.5rem 1rem 1.25rem !important;
  margin-bottom: 1rem !important;
}
body.refil-page .refil-hero::before,
body.refil-page .refil-hero::after { display: none !important; }
/* Ícone: tinta roxa no claro, branco translúcido no escuro */
body.refil-page.theme-light .refil-hero-icon { background: rgba(124,58,237,0.10) !important; border-color: rgba(124,58,237,0.22) !important; }
body.refil-page:not(.theme-light) .refil-hero-icon { background: rgba(255,255,255,0.10) !important; border-color: rgba(255,255,255,0.18) !important; }
body.refil-page.theme-light .refil-hero-icon svg { stroke: #7c3aed !important; }
body.refil-page:not(.theme-light) .refil-hero-icon svg { stroke: #c4b5fd !important; }
/* Botões/links do refil em azul → trocar pra primária */
body.refil-page .refil-action-btn,
body.refil-page button.refil-action-btn,
body.refil-page a.refil-action-btn,
body.refil-page #refilSubmitBtn,
body.refil-page button#refilSubmitBtn { background: var(--gradient-primary) !important; color: #fff !important; }

/* Background da página de refil no tema claro: branco (sem o cinza claro) */
body.refil-page.theme-light { background: #ffffff !important; }
body.refil-page.theme-light .refil-main-card { background: #ffffff !important; border: 1px solid #e2e8f0 !important; }

/* Regras de reposição mais discreta (já que agora fica no rodapé do form) */
body.refil-page .refil-accordion-wrap .refil-info-accordion {
  background: transparent !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: none !important;
}
body.refil-page .refil-accordion-wrap .refil-info-toggle {
  padding: 0.7rem 1rem !important;
  font-size: 0.88rem !important;
  background: transparent !important;
  color: #64748b !important;
}
body.refil-page .refil-accordion-wrap .info-icon {
  background: rgba(124,58,237,0.12) !important;
  color: var(--color-primary, #7c3aed) !important;
  width: 22px !important; height: 22px !important;
  font-size: 0.75rem !important;
}
body.refil-page .refil-accordion-wrap .info-title { color: #0f172a !important; font-weight: 600 !important; }

/* ── Refil — regras como lista de cards (substituem o accordion) ── */
.refil-rule-list { display: flex; flex-direction: column; gap: 10px; margin-top: 1.25rem; }
.refil-rule-card {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.refil-rule-ic {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.refil-rule-ic svg { width: 18px; height: 18px; }
.refil-rule-text { flex: 1; min-width: 0; }
.refil-rule-title { font-size: 0.95rem; font-weight: 800; color: #0f172a; margin-bottom: 0.15rem; }
.refil-rule-desc { font-size: 0.82rem; color: #64748b; line-height: 1.45; }
body.refil-page:not(.theme-light) .refil-rule-card { background: var(--color-surface, #13131a); border-color: var(--color-border, #2d2d3d); }
body.refil-page:not(.theme-light) .refil-rule-title { color: var(--color-text, #f1f5f9); }
body.refil-page:not(.theme-light) .refil-rule-desc { color: var(--color-text-muted, #9aa3b2); }

/* ── Refil — TEMA ESCURO (o CSS inline da view é todo claro/hardcoded) ── */
body.refil-page:not(.theme-light) { background: #07070b !important; }
body.refil-page:not(.theme-light) .refil-main-card,
body.refil-page:not(.theme-light) .refil-history-card,
body.refil-page:not(.theme-light) .refil-info-accordion,
body.refil-page:not(.theme-light) .refil-info-toggle,
body.refil-page:not(.theme-light) .refil-info-content {
  background: #15151f !important;
  border-color: #2a2a3a !important;
}
body.refil-page:not(.theme-light) .refil-card-title,
body.refil-page:not(.theme-light) .refil-history-title,
body.refil-page:not(.theme-light) .refil-info-toggle,
body.refil-page:not(.theme-light) .refil-info-toggle .info-title { color: #f1f5f9 !important; }
body.refil-page:not(.theme-light) .refil-field-label { color: #9aa3b2 !important; }
body.refil-page:not(.theme-light) .refil-info-content { border-top-color: #2a2a3a !important; }
body.refil-page:not(.theme-light) .refil-info-content li { color: #c2c9d6 !important; }
body.refil-page:not(.theme-light) #refilUsernameInput,
body.refil-page:not(.theme-light) input[type="text"],
body.refil-page:not(.theme-light) input[type="tel"] {
  background: #1e1e2e !important;
  color: #f8fafc !important;
  border-color: #2f2f45 !important;
}
body.refil-page:not(.theme-light) input::placeholder { color: #6b7280 !important; }

/* ── Refil — TEMA CLARO: fundo branco + fonte escura ── */
body.refil-page.theme-light { background: #ffffff !important; }
body.refil-page.theme-light .refil-card-title,
body.refil-page.theme-light .refil-history-title,
body.refil-page.theme-light .refil-info-toggle,
body.refil-page.theme-light .refil-info-toggle .info-title { color: #0f172a !important; }

/* ── Refil hero — título/subtítulo/badge adaptados ao tema (sem caixa) ── */
body.refil-page .refil-hero h1 {
  font-weight: 800 !important;
  text-shadow: none !important;
  letter-spacing: -0.02em;
}
body.refil-page.theme-light .refil-hero h1 { color: #0f172a !important; }
body.refil-page:not(.theme-light) .refil-hero h1 { color: #f1f5f9 !important; }
body.refil-page .refil-hero p { text-shadow: none !important; }
body.refil-page.theme-light .refil-hero p { color: #475569 !important; }
body.refil-page:not(.theme-light) .refil-hero p { color: rgba(255,255,255,0.78) !important; }
/* Badge legível nos dois temas */
body.refil-page.theme-light .refil-access-badge.active {
  background: rgba(16,185,129,0.12) !important;
  color: #059669 !important;
  border: 1px solid rgba(16,185,129,0.35) !important;
}
body.refil-page:not(.theme-light) .refil-access-badge.active {
  background: rgba(16,185,129,0.18) !important;
  color: #6ee7b7 !important;
  border: 1px solid rgba(16,185,129,0.40) !important;
}
body.refil-page.theme-light .refil-access-badge.expired {
  background: rgba(239,68,68,0.10) !important;
  color: #dc2626 !important;
  border: 1px solid rgba(239,68,68,0.32) !important;
}
body.refil-page:not(.theme-light) .refil-access-badge.expired {
  background: rgba(239,68,68,0.18) !important;
  color: #fca5a5 !important;
  border: 1px solid rgba(239,68,68,0.40) !important;
}

/* ── Toast de venda menor ── */
body.lp-page .toast-container .toast {
  max-width: 240px !important;
  padding: 0.55rem 1.6rem 0.55rem 0.6rem !important;
  border-radius: 12px !important;
  gap: 0.55rem !important;
}
body.lp-page .toast-container .toast .toast-platform { width: 30px !important; height: 30px !important; padding: 6px; }
body.lp-page .toast-container .toast .toast-title { font-size: 0.78rem !important; line-height: 1.25; }
body.lp-page .toast-container .toast .toast-desc { font-size: 0.71rem !important; line-height: 1.3; }
body.lp-page .toast-container .toast .toast-time { font-size: 0.66rem !important; }

/* ── Botões do hero menores no mobile (Ver pacotes / Como funciona) ── */
@media (max-width: 767px) {
  .lp-btn-primary {
    padding: 0.85rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
  .lp-btn-primary svg { width: 16px !important; height: 16px !important; }
  .lp-btn-primary .lp-btn-arrow { font-size: 1.05rem !important; }
  .lp-btn-ghost {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.92rem !important;
  }
}

/* ── FAQ um pouco mais larga (estava muito apertada) ── */
.faq-section .faq-grid {
  max-width: clamp(280px, 92%, 580px) !important;
}

/* ── Scroll suave nas âncoras (Ver pacotes → #engajamentoServiceCards etc.) ── */
html { scroll-behavior: smooth; }
#engajamentoServiceCards, [id] { scroll-margin-top: 80px; }

/* ── Títulos dos cards de serviço — menos negrito ── */
.svc-cat-title { font-weight: 700 !important; }

/* ── Hero title menos negrito (mais leve) ── */
.lp-hero-title { font-weight: 600 !important; }

/* ── Trust bar (pílulas online · vendidos · clientes) ── */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  color: #475569;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust-pill strong { color: #0f172a; font-weight: 800; }
.trust-pill .trust-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,0.18); }
body.lp-page:not(.theme-light) .trust-pill {
  background: var(--color-surface, #13131a);
  border-color: var(--color-border, #2d2d3d);
  color: var(--color-text-muted, #9aa3b2);
}
body.lp-page:not(.theme-light) .trust-pill strong { color: var(--color-text, #f1f5f9); }

/* ── Review bar (avatares + estrelas) ── */
.hero-review-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 1.25rem auto 2rem;
  max-width: 420px;
  flex-wrap: wrap;
}
.review-avatars { display: flex; align-items: center; }
.ra-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.78rem;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  /* Animação: surge da esquerda escalando */
  animation: raPop 0.5s cubic-bezier(.34,1.56,.64,1) backwards;
}
.ra-avatar:first-child { margin-left: 0; }
.ra-avatar:nth-child(1) { animation-delay: 0.05s; }
.ra-avatar:nth-child(2) { animation-delay: 0.18s; }
.ra-avatar:nth-child(3) { animation-delay: 0.31s; }
.ra-avatar:nth-child(4) { animation-delay: 0.44s; }
@keyframes raPop {
  from { opacity: 0; transform: translateX(-14px) scale(0.6); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
body.lp-page:not(.theme-light) .ra-avatar { border-color: var(--color-surface, #13131a); }
.review-text { text-align: left; font-size: 0.82rem; line-height: 1.35; }
.review-line1 { color: #0f172a; font-weight: 700; }
.review-line1 strong { font-weight: 900; }
.review-line2 { display: flex; align-items: center; gap: 0.35rem; color: #64748b; font-size: 0.78rem; margin-top: 0.1rem; flex-wrap: wrap; }
.review-line2 .stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; }
.review-line2 strong { color: #0f172a; font-weight: 800; }
.review-count { font-weight: 500; color: #94a3b8; }
body.lp-page:not(.theme-light) .review-line1, body.lp-page:not(.theme-light) .review-line2 strong { color: var(--color-text, #f1f5f9); }
body.lp-page:not(.theme-light) .review-line2, body.lp-page:not(.theme-light) .review-count { color: var(--color-text-muted, #9aa3b2); }

/* ── Cards do FAQ um pouco menores (estavam grandes ainda) ── */
.faq-section .faq-question { padding: 0.7rem 0.9rem !important; font-size: 0.85rem !important; }
.faq-section .faq-answer { padding: 0 0.9rem 0.75rem !important; font-size: 0.8rem !important; line-height: 1.5 !important; }
.faq-section .faq-toggle { width: 12px !important; height: 12px !important; }
.faq-section .faq-card { border-radius: 12px !important; }

/* ── Toast de venda: esconder o ícone (logo do Instagram) ── */
body.lp-page .toast-container .toast .toast-platform { display: none !important; }
body.lp-page .toast-container .toast { padding-left: 0.85rem !important; }

/* ── Section header dos serviços (Selecione a categoria) ── */
.svc-section-header { text-align: center; margin: 0 auto 1.25rem; max-width: 720px; }
.svc-section-title { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 900; letter-spacing: -0.02em; color: #0f172a; margin: 0 0 0.35rem; line-height: 1.15; }
.svc-section-grad { background: linear-gradient(90deg,#f09433 0%, #dc2743 55%, #bc1888 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.svc-section-sub { font-size: 0.95rem; color: #64748b; margin: 0; }
body.lp-page:not(.theme-light) .svc-section-title { color: var(--color-text, #f1f5f9); }
body.lp-page:not(.theme-light) .svc-section-sub { color: var(--color-text-muted, #9aa3b2); }

/* ── Cards de serviço um pouco menores ── */
.svc-cat-card { padding: 0.85rem 0.8rem !important; min-height: 130px !important; gap: 0.35rem !important; border-radius: 14px !important; }
.svc-cat-title { font-size: 0.9rem !important; }
.svc-cat-price { font-size: 0.72rem !important; }
.svc-cat-ic { width: 28px !important; height: 28px !important; }
.svc-cat-ic svg { width: 22px !important; height: 22px !important; }
@media (min-width: 768px) {
  .svc-cat-card { padding: 1.1rem 1rem !important; min-height: 160px !important; }
  .svc-cat-title { font-size: 1rem !important; }
  .svc-cat-price { font-size: 0.78rem !important; }
  .svc-cat-ic { width: 32px !important; height: 32px !important; }
  .svc-cat-ic svg { width: 24px !important; height: 24px !important; }
}

/* ── Why-us: SLIDER no desktop (volta a deslizar), grid 2x no mobile ── */
@media (min-width: 768px) {
  .why-choose-us-section .why-us-track {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem !important;
    padding: 0.5rem 0.5rem 1rem !important;
    max-width: 900px !important;
    scrollbar-width: thin;
  }
  .why-choose-us-section .why-us-card {
    flex: 0 0 280px !important;
    scroll-snap-align: start;
    padding: 1.25rem 1.2rem !important;
  }
  .why-choose-us-section .why-us-card h3 { font-size: 1rem !important; }
  .why-choose-us-section .why-us-card p { font-size: 0.85rem !important; }
  .why-choose-us-section .why-us-icon-box { width: 40px !important; height: 40px !important; border-radius: 12px !important; margin-bottom: 0.65rem !important; }
  .why-choose-us-section .why-us-dots { display: flex !important; justify-content: center; margin-top: 0.5rem; }
}

/* ── Theme toggle: só ícone no desktop também (sem texto) ── */
@media (min-width: 769px) {
  .theme-toggle .theme-label { display: none !important; }
  .theme-toggle .icon { display: inline-flex !important; }
  body:not(.theme-light) .theme-toggle .icon-sun { display: inline-flex !important; }
  body:not(.theme-light) .theme-toggle .icon-moon { display: none !important; }
  body.theme-light .theme-toggle .icon-moon { display: inline-flex !important; }
  body.theme-light .theme-toggle .icon-sun { display: none !important; }
  .theme-toggle { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0.35rem !important; min-width: 36px; }
  .theme-toggle:hover { background: rgba(124,58,237,0.08) !important; border-radius: 8px; }
}

/* ── Menu superior: nav de âncoras (só desktop) ── */
.menu-anchor-nav { display: none; }
/* Mobile: mostra apenas o botão "Cliente" no menu superior (igual ao desktop) */
@media (max-width: 1023px) {
  .menu-anchor-nav { display: flex !important; align-items: center; margin-left: auto; margin-right: 0.5rem; gap: 0; }
  .menu-anchor-nav a:not(.menu-cliente-link) { display: none !important; }
  .menu-cliente-link { padding: 0.32rem 0.7rem !important; font-size: 0.8rem !important; }
}
@media (min-width: 1024px) {
  .menu-anchor-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
  }
  .menu-anchor-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 0.4rem 0.2rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  .menu-anchor-nav a:hover { color: #7c3aed; border-bottom-color: #7c3aed; }
  body.lp-page:not(.theme-light) .menu-anchor-nav a { color: #cbd5e1; }
  body.lp-page:not(.theme-light) .menu-anchor-nav a:hover { color: #a78bfa; border-bottom-color: #a78bfa; }
  /* Menu desktop: âncoras mais para a direita (perto do tema toggle) */
  .fixed-menu { justify-content: space-between; }
  .menu-anchor-nav { margin-left: auto !important; margin-right: 1.25rem !important; justify-content: flex-end !important; flex: none !important; }
}

/* ── Why-us slider mais bonito no desktop ── */
@media (min-width: 768px) {
  .why-choose-us-section .why-us-slider-container {
    position: relative;
    padding: 0 0.5rem;
    overflow: visible;
  }
  .why-choose-us-section .why-us-track {
    padding: 0.75rem 0.25rem 1.5rem !important;
    scroll-padding-inline: 0.5rem;
    scrollbar-width: none !important;
  }
  /* Sem scrollbar visível no desktop (estilo diferente) */
  .why-choose-us-section .why-us-track::-webkit-scrollbar { display: none !important; height: 0 !important; }
  /* Cards mais bonitos: gradiente sutil + hover */
  .why-choose-us-section .why-us-card {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    background: #ffffff !important;
  }
  .why-choose-us-section .why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(124,58,237,0.15) !important;
    border-color: rgba(124,58,237,0.30) !important;
  }
  .why-choose-us-section .why-us-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
  }
  /* Ícone com glow sutil */
  .why-choose-us-section .why-us-icon-box {
    box-shadow: 0 6px 16px rgba(124,58,237,0.30);
  }
  /* Indicadores (fade nas bordas pra dar sensação de peek) */
  .why-choose-us-section .why-us-slider-container::before,
  .why-choose-us-section .why-us-slider-container::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 2;
  }
  .why-choose-us-section .why-us-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0));
  }
  .why-choose-us-section .why-us-slider-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.95), rgba(255,255,255,0));
  }
  body.lp-page:not(.theme-light) .why-choose-us-section .why-us-slider-container::before { background: linear-gradient(90deg, rgba(7,7,11,0.95), rgba(7,7,11,0)); }
  body.lp-page:not(.theme-light) .why-choose-us-section .why-us-slider-container::after { background: linear-gradient(270deg, rgba(7,7,11,0.95), rgba(7,7,11,0)); }
  body.lp-page:not(.theme-light) .why-choose-us-section .why-us-card { background: var(--color-surface, #13131a) !important; }
}

/* ── FAQ mais larga no desktop ── */
@media (min-width: 768px) {
  .faq-section .faq-grid { max-width: clamp(560px, 80%, 820px) !important; }
  .faq-section .faq-question { padding: 0.95rem 1.2rem !important; font-size: 0.95rem !important; }
  .faq-section .faq-answer { padding: 0 1.2rem 1rem !important; font-size: 0.9rem !important; }
}

/* ── CTA pós-FAQ (estilo hero secundário — sem fundo roxo no light) ── */
.cta-back-section {
  margin: 3rem auto 1.5rem;
  padding: 2rem 1rem;
  width: 100%;
  max-width: 760px;
  position: relative;
  box-sizing: border-box;
}
.cta-back-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1rem 1.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-back-title { font-size: clamp(1.6rem, 4.5vw, 2.4rem); font-weight: 600; color: #0f172a; margin: 0 0 0.65rem; letter-spacing: -0.015em; line-height: 1.2; }
/* "diferente" usa mesma cor laranja-rosa do título principal */
.cta-back-title .g-cyan { background: linear-gradient(90deg, #f09433, #e1306c) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; }
.cta-back-sub { font-size: 1rem; color: #475569; margin: 0 0 1.5rem; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.cta-back-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--gradient-primary);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(124,58,237,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-back-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(124,58,237,0.55); }

/* Dark mode: fundo navy profundo (estilo hero secundário) */
body.lp-page:not(.theme-light) .cta-back-section {
  background: radial-gradient(120% 80% at 50% 30%, #1a1033 0%, #0a0a14 60%, #07070b 100%);
}
body.lp-page:not(.theme-light) .cta-back-title { color: #f8fafc; }
body.lp-page:not(.theme-light) .cta-back-sub { color: #9aa3b2; }

/* ── Slide "+100 avaliações" antes do form ── */
.review-count-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
  border: 2px solid rgba(124,58,237,0.25);
  border-radius: 16px;
  padding: 1.2rem 1rem;
}
.rc-stars-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(245,158,11,0.12);
  color: #b45309;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.rc-stars-pill .stars { color: #f59e0b; font-size: 0.78rem; letter-spacing: 1px; }
.rc-big {
  font-size: 2.5rem; font-weight: 900; line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rc-label { font-size: 0.88rem; color: #475569; font-weight: 600; margin-bottom: 0.5rem; }
.rc-btn {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(124,58,237,0.35);
  transition: transform 0.15s ease;
}
.rc-btn:hover { transform: translateY(-2px); }
body.lp-page:not(.theme-light) .review-count-slide {
  background: linear-gradient(135deg, var(--color-surface, #13131a) 0%, #1a1726 100%);
  border-color: rgba(124,58,237,0.4);
}
body.lp-page:not(.theme-light) .rc-label { color: var(--color-text-muted, #9aa3b2); }

/* ── "Qual tipo de seguidores?" — 3 cards de opções ── */
.follower-types-section { margin: 2rem auto 1rem; padding: 0 1rem; max-width: 720px; }
.ft-header { text-align: center; margin-bottom: 1.25rem; }
.ft-title { font-size: clamp(1.3rem, 3.8vw, 1.75rem); font-weight: 800; color: #0f172a; margin: 0 0 0.3rem; letter-spacing: -0.02em; }
.ft-grad { background: linear-gradient(90deg, #f09433 0%, #dc2743 60%, #bc1888 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ft-sub { font-size: 0.92rem; color: #64748b; margin: 0; }
.ft-cards { display: flex; flex-direction: column; gap: 0.7rem; }
.ft-card {
  display: flex; align-items: center; gap: 0.85rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.ft-card:hover { transform: translateY(-2px); border-color: rgba(124,58,237,0.45); box-shadow: 0 10px 22px rgba(124,58,237,0.15); }
.ft-card-pro { border-color: rgba(225,48,108,0.4) !important; }
.ft-card-pro:hover { border-color: rgba(225,48,108,0.65) !important; box-shadow: 0 10px 22px rgba(225,48,108,0.2) !important; }

.ft-card-ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 800; font-size: 1rem;
}
.ft-card-ic svg { width: 22px; height: 22px; }
.ft-ic-promo { background: rgba(245,158,11,0.15); color: #f59e0b; }
.ft-ic-br {
  background: linear-gradient(135deg, #009c3b 0%, #ffdf00 50%, #002776 100%);
  color: #fff; font-weight: 900;
}
.ft-ic-real { background: rgba(124,58,237,0.12); color: #7c3aed; }

.ft-card-body { flex: 1; min-width: 0; }
.ft-card-title { font-size: 0.95rem; font-weight: 800; color: #0f172a; margin: 0 0 0.15rem; }
.ft-card-desc { font-size: 0.78rem; color: #64748b; margin: 0 0 0.35rem; line-height: 1.4; }
.ft-card-price { font-size: 0.82rem; color: #475569; }
.ft-card-price strong { color: var(--color-primary, #7c3aed); font-weight: 800; }
.ft-card-chev { font-size: 1.4rem; color: #cbd5e1; flex-shrink: 0; line-height: 1; }
.ft-badge-pro {
  position: absolute;
  top: -10px; right: 16px;
  background: linear-gradient(90deg, #dc2743, #bc1888);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(225,48,108,0.35);
}
body.lp-page:not(.theme-light) .ft-card { background: var(--color-surface, #13131a); border-color: var(--color-border, #2d2d3d); }
body.lp-page:not(.theme-light) .ft-title, body.lp-page:not(.theme-light) .ft-card-title { color: var(--color-text, #f1f5f9); }
body.lp-page:not(.theme-light) .ft-sub, body.lp-page:not(.theme-light) .ft-card-desc, body.lp-page:not(.theme-light) .ft-card-price { color: var(--color-text-muted, #9aa3b2); }

/* ── Setas do carrossel de depoimentos (mais bonitas) ── */
#testimonialsCarousel .carousel-btn {
  width: 40px !important; height: 40px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
  display: flex !important; align-items: center; justify-content: center;
  font-size: 0 !important;          /* esconde o caractere antigo se sobrar */
  box-shadow: 0 6px 18px rgba(0,0,0,0.12) !important;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
#testimonialsCarousel .carousel-btn svg { width: 18px; height: 18px; }
#testimonialsCarousel .carousel-btn:hover { transform: scale(1.08); color: #7c3aed !important; box-shadow: 0 10px 24px rgba(124,58,237,0.25) !important; }
#testimonialsCarousel .carousel-btn:active { transform: scale(0.96); }
body.lp-page:not(.theme-light) #testimonialsCarousel .carousel-btn {
  background: var(--color-surface, #13131a) !important;
  border-color: var(--color-border, #2d2d3d) !important;
  color: #f1f5f9 !important;
}

/* ── Nova seção de avaliações ── */
.reviews-section {
  max-width: 920px;
  margin: 2.5rem auto 2rem;
  padding: 0 1rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.reviews-slider-wrap { min-width: 0; width: 100%; position: relative; }
.reviews-header { text-align: center; margin-bottom: 1.5rem; }
.reviews-title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: #0f172a; margin: 0.5rem 0 0.4rem; letter-spacing: -0.02em; }
.reviews-sub { color: #64748b; font-size: 0.95rem; margin: 0; }
/* ── Slider de avaliações (cards + form como último slide) ── */
.reviews-slider-wrap {
  position: relative;
  padding: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reviews-slider-wrap .reviews-slider { flex: 1; min-width: 0; }
.reviews-slider-wrap .reviews-arrow { position: static; transform: none; flex-shrink: 0; align-self: center; }
.reviews-slider {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 1rem;
  scrollbar-width: none;
  margin-bottom: 0.5rem;
}
.reviews-slider::-webkit-scrollbar { display: none; }
.review-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  box-sizing: border-box;
}
@media (min-width: 640px) { .review-slide { flex-basis: calc(50% - 6px); } }
@media (min-width: 1024px) { .review-slide { flex-basis: calc(33.333% - 8px); } }

/* Setas do slider de avaliações */
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  z-index: 3;
  transition: transform 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.reviews-arrow svg { width: 18px; height: 18px; }
.reviews-arrow.prev { left: -8px; }
.reviews-arrow.next { right: -8px; }
.reviews-arrow:hover { transform: translateY(-50%) scale(1.08); color: #7c3aed; box-shadow: 0 10px 24px rgba(124,58,237,0.25); }
@media (max-width: 640px) {
  .reviews-arrow.prev { left: -4px; }
  .reviews-arrow.next { right: -4px; }
}
body.lp-page:not(.theme-light) .reviews-arrow { background: var(--color-surface, #13131a); border-color: var(--color-border, #2d2d3d); color: #f1f5f9; }

.review-card {
  background: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  box-shadow: none;
  display: flex; flex-direction: column; gap: 0.35rem;
  height: fit-content;
  align-self: flex-start;
}
.review-card .review-comment { font-size: 0.82rem; }
.review-card .review-stars { font-size: 0.9rem; }

/* Card em destaque — sem borda, sem transform */
.review-slide.featured .review-card,
.review-card.featured {
  background: #ffffff;
  border: none;
  box-shadow: none;
  z-index: 2;
}
body.lp-page:not(.theme-light) .review-slide.featured .review-card,
body.lp-page:not(.theme-light) .review-card.featured {
  background-image: linear-gradient(var(--color-surface), var(--color-surface)), linear-gradient(135deg, #7c3aed, #e1306c, #f09433);
}
.review-head { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.95rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; color: #0f172a; line-height: 1.2; }
.review-date { font-size: 0.75rem; color: #94a3b8; margin-top: 0.1rem; }
.review-stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 1.5px; }
.review-comment { font-size: 0.88rem; color: #475569; line-height: 1.55; margin: 0; }
.review-card-new { animation: rcIn 0.4s ease; border-color: rgba(124,58,237,0.35) !important; box-shadow: 0 6px 18px rgba(124,58,237,0.18) !important; }
@keyframes rcIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

body.lp-page:not(.theme-light) .review-card { background: var(--color-surface, #13131a); border-color: var(--color-border, #2d2d3d); }
body.lp-page:not(.theme-light) .reviews-title, body.lp-page:not(.theme-light) .review-name { color: var(--color-text, #f1f5f9); }
body.lp-page:not(.theme-light) .reviews-sub, body.lp-page:not(.theme-light) .review-comment, body.lp-page:not(.theme-light) .review-date { color: var(--color-text-muted, #9aa3b2); }

/* Botão CTA no card de avaliação */
.rf-open-btn {
  margin-top: auto;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(124,58,237,0.35);
  background: transparent;
  color: #7c3aed;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background .15s, color .15s;
  text-align: center;
  width: 100%;
}
.rf-open-btn:hover { background: #f5f3ff; }
/* Formulário abaixo do slider */
.rf-form-wrap {
  margin-top: 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
body.lp-page:not(.theme-light) .rf-form-wrap {
  background: #121019;
  border-color: #272336;
}
/* Formulário "Deixe sua avaliação" (último slide do slider) */
.review-form-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(225,48,108,0.06) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 18px;
  padding: 1.1rem 1rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.review-form-title { font-size: 1.15rem; font-weight: 800; color: #0f172a; margin: 0 0 0.25rem; }
.review-form-sub { font-size: 0.88rem; color: #64748b; margin: 0 0 1rem; }
.review-form { display: flex; flex-direction: column; gap: 0.75rem; }
.rf-input, .rf-textarea {
  width: 100%; box-sizing: border-box;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rf-input:focus, .rf-textarea:focus { border-color: rgba(124,58,237,0.5); box-shadow: 0 0 0 3px rgba(124,58,237,0.12); }
.rf-textarea { resize: vertical; min-height: 80px; }
.rf-rating { display: flex; gap: 0.15rem; justify-content: flex-start; align-items: center; padding: 0 0.15rem; }
.rf-star {
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: #d1d5db;
  padding: 0.1rem 0.15rem;
  transition: color 0.12s ease, transform 0.12s ease;
}
.rf-star:hover { transform: scale(1.15); }
.rf-star.on { color: #f59e0b; }
.rf-submit {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 0.25rem;
}
.rf-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.rf-submit:active { transform: translateY(0); }
.rf-thanks {
  display: flex; align-items: center; gap: 0.6rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.rf-thanks svg { width: 20px; height: 20px; color: #10b981; flex-shrink: 0; }

body.lp-page:not(.theme-light) .review-form-card { background: linear-gradient(135deg, rgba(124,58,237,0.10) 0%, rgba(225,48,108,0.08) 100%); border-color: rgba(124,58,237,0.30); }
body.lp-page:not(.theme-light) .review-form-title { color: var(--color-text, #f1f5f9); }
body.lp-page:not(.theme-light) .review-form-sub { color: var(--color-text-muted, #9aa3b2); }
body.lp-page:not(.theme-light) .rf-input, body.lp-page:not(.theme-light) .rf-textarea {
  background: rgba(0,0,0,0.25); border-color: var(--color-border, #2d2d3d); color: var(--color-text, #f1f5f9);
}
body.lp-page:not(.theme-light) .rf-thanks { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); color: #6ee7b7; }

/* ── Cards de tipo de seguidor (.option-card) estilo image 2 ── */
.option-cards#tipoCards {
  display: grid !important;
  gap: 12px !important;
  max-width: 560px;
  margin: 0 auto;
}
.option-cards#tipoCards .option-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.1rem 1.1rem;
  cursor: pointer;
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem;
  min-height: 78px;
  text-align: left !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.option-cards#tipoCards .option-card::before {
  content: '';
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: inline-block;
  opacity: 0.9;
}
.option-cards#tipoCards .option-card .card-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: left !important;
  flex: 1;
  gap: 0.15rem;
}
.option-cards#tipoCards .option-card .card-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  text-align: left !important;
  color: #0f172a !important;
  margin: 0 !important;
}
.option-cards#tipoCards .option-card.active {
  border-color: var(--color-accent, #e1306c) !important;
  background: linear-gradient(180deg, rgba(225,48,108,0.08) 0%, #fff 50%) !important;
  box-shadow: 0 0 0 3px rgba(225,48,108,0.18) !important;
  transform: translateY(-1px);
}
.option-cards#tipoCards .option-card[data-tipo="organicos"]::after,
.option-cards#tipoCards .option-card[data-tipo="curtidas_organicos"]::after {
  content: 'PRO';
  position: absolute;
  top: -8px; right: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}
/* Tema escuro */
body.lp-page:not(.theme-light) .option-cards#tipoCards .option-card {
  background: var(--color-surface, #13131a) !important;
  border-color: var(--color-border, #2d2d3d) !important;
}
body.lp-page:not(.theme-light) .option-cards#tipoCards .option-card .card-title { color: var(--color-text, #f1f5f9) !important; }
body.lp-page:not(.theme-light) .option-cards#tipoCards .option-card.active {
  border-color: var(--color-accent, #e1306c) !important;
  background: linear-gradient(180deg, rgba(225,48,108,0.18) 0%, var(--color-surface, #13131a) 60%) !important;
}

/* Hero CLARO no tema claro: fundo branco, sem fundo escuro, sem linhas diagonais */
body.theme-light .lp-hero,
body.theme-light .checkout-page > .header.lp-hero {
  background: #ffffff !important;
  box-shadow: none !important;
  border: none !important;
  margin-bottom: 1rem !important;
}
body.theme-light .lp-hero::before,
body.theme-light .checkout-page > .header.lp-hero::before { content: none !important; display: none !important; }
body.theme-light .lp-hero-lines,
body.theme-light .lp-hero-glow { display: none !important; }
body.theme-light .lp-hero-title { color: #0f172a !important; }
body.theme-light .lp-hero-sub { color: #475569 !important; }
body.theme-light .lp-hero-badge {
  background: rgba(124,58,237,0.08) !important;
  border-color: rgba(124,58,237,0.22) !important;
  color: #6d28d9 !important;
}
body.theme-light .lp-btn-ghost {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  color: #475569 !important;
}
body.theme-light .lp-btn-ghost:hover { border-color: rgba(124,58,237,0.45) !important; background: #f8fafc !important; }
/* Ticker "Preços Justos" no tema claro */
body.theme-light .checkout-page > .header.lp-hero .header-ticker {
  background: rgba(124,58,237,0.08) !important;
  border-color: rgba(124,58,237,0.22) !important;
}
body.theme-light .checkout-page > .header.lp-hero .ticker-item { color: #6d28d9 !important; }
/* Garantir que o body atrás do hero seja branco (não cinza claro) no tema claro lp-page */
body.theme-light.lp-page { background: #ffffff !important; }
body.theme-light.lp-page .fixed-menu { background: #ffffff !important; border-bottom: 1px solid #f1f5f9 !important; }

/* Sem "quebra de cor" no tema claro: todas as seções transparentes sobre o body branco */
body.theme-light.lp-page .container,
body.theme-light.lp-page .checkout-page,
body.theme-light.lp-page .main-content,
body.theme-light.lp-page .section-block,
body.theme-light.lp-page .testimonials-section,
body.theme-light.lp-page .why-choose-us-section,
body.theme-light.lp-page .faq-section,
body.theme-light.lp-page #howItWorksSection { background: transparent !important; }
body.theme-light.lp-page .cards-grid.checkout-grid { background: transparent !important; }

/* ── Sheet "Mais" — novo layout com seções (Serviços / Recursos) ── */
.nav-sheet-panel {
  max-height: 85vh;
  overflow-y: auto;
  padding: 0.5rem 0 calc(1.5rem + env(safe-area-inset-bottom)) !important;
}
.nav-sheet-header { padding: 0.4rem 1.25rem 1rem; }
.nav-sheet-header h2 { font-size: 1.75rem; font-weight: 900; margin: 0 0 0.25rem; color: var(--color-text, #f1f5f9); letter-spacing: -0.02em; }
.nav-sheet-header p { font-size: 0.85rem; color: var(--color-primary-light, #a78bfa); margin: 0; }
.nav-sheet-group {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 16px;
  margin: 0 1rem 0.85rem;
  padding: 0.25rem 0.4rem;
}
.nav-sheet-group-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-text-muted, #9aa3b2);
  padding: 0.7rem 0.6rem 0.5rem;
  text-transform: uppercase;
}
.nav-sheet-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text, #f1f5f9);
  transition: background 0.15s ease;
}
.nav-sheet-row + .nav-sheet-row { border-top: 1px solid rgba(124,58,237,0.12); }
.nav-sheet-row:hover, .nav-sheet-row:active { background: rgba(124,58,237,0.10); }
.nav-sheet-row .nav-sheet-ic {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(124,58,237,0.16);
  color: var(--color-primary-light, #a78bfa);
  display: flex; align-items: center; justify-content: center;
}
.nav-sheet-row .nav-sheet-ic svg { width: 20px; height: 20px; }
.nav-sheet-row-text { flex: 1; min-width: 0; }
.nav-sheet-row-title { font-size: 0.95rem; font-weight: 700; color: var(--color-text, #f1f5f9); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.nav-sheet-row-desc { font-size: 0.78rem; color: var(--color-text-muted, #9aa3b2); margin-top: 0.1rem; line-height: 1.4; }
.nav-sheet-chev { flex-shrink: 0; font-size: 1.4rem; color: var(--color-text-muted, #9aa3b2); font-weight: 400; line-height: 1; }
.badge-novo {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
}

/* Tema claro do sheet */
body.theme-light .nav-sheet-header h2 { color: #0f172a; }
body.theme-light .nav-sheet-header p { color: #7c3aed; }
body.theme-light .nav-sheet-group { background: rgba(124,58,237,0.04); border-color: rgba(124,58,237,0.14); }
body.theme-light .nav-sheet-row { color: #0f172a; }
body.theme-light .nav-sheet-row + .nav-sheet-row { border-top-color: rgba(124,58,237,0.10); }
body.theme-light .nav-sheet-row:hover, body.theme-light .nav-sheet-row:active { background: rgba(124,58,237,0.08); }
body.theme-light .nav-sheet-row .nav-sheet-ic { background: rgba(124,58,237,0.10); color: #7c3aed; }
body.theme-light .nav-sheet-row-title { color: #0f172a; }
body.theme-light .nav-sheet-row-desc { color: #64748b; }
body.theme-light .nav-sheet-chev { color: #94a3b8; }

/* ── Desktop: ajustar tamanhos no engajamento (why-us + svc-cat) ── */
@media (min-width: 768px) {
  .why-choose-us-section { max-width: 1000px !important; margin-left: auto !important; margin-right: auto !important; }
  #engajamentoServiceCards.svc-cat-grid { max-width: 880px !important; grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
}

/* ── Bottom nav 3 itens: item central (Seguidores) em destaque ── */
.bottom-nav.app-nav { overflow: visible; justify-content: space-around; align-items: flex-end; }
.bottom-nav.app-nav .bottom-nav-center {
  background: var(--gradient-primary);
  color: #fff !important;
  border-radius: 18px;
  padding: 0.5rem 1.5rem 0.45rem;
  margin: 0 0.25rem;
  transform: translateY(-16px);
  box-shadow: 0 10px 24px rgba(124,58,237,0.5);
  font-weight: 800;
}
.bottom-nav.app-nav .bottom-nav-center svg { width: 26px !important; height: 26px !important; color: #fff !important; }
.bottom-nav.app-nav .bottom-nav-center span { font-size: 0.72rem !important; color: #fff !important; font-weight: 800; }
/* mantém o central branco também no tema claro / estado active */
body.theme-light .bottom-nav.app-nav .bottom-nav-center,
body.theme-light .bottom-nav.app-nav .bottom-nav-center span,
body.theme-light .bottom-nav.app-nav .bottom-nav-center.active,
body.theme-light .bottom-nav.app-nav .bottom-nav-center.active svg { color: #fff !important; }

/* ── Heros full-bleed (preenche a largura toda, sem moldura/card) ── */
.lp-hero,
.checkout-page > .header.lp-hero,
body.lp-page .insta-checkout-hero {
  border-radius: 0 !important;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}
.checkout-page > .header.lp-hero { margin-top: 0 !important; }

/* ── Notificação de venda: canto inferior direito, acima do bottom-nav ── */
body.lp-page .toast-container,
body.lp-page .checkout-page .toast-container {
  right: 16px !important;
  left: auto !important;
  bottom: calc(78px + env(safe-area-inset-bottom)) !important;
  z-index: 99998 !important;
  max-width: 280px !important;
}
/* toast fica sempre no topo esquerdo, independente do bottom-nav */

/* ── Botão "Mais" (button na nav) + sheet de serviços ── */
.bottom-nav.app-nav button.bottom-nav-item { background: none; border: none; cursor: pointer; font-family: inherit; }
.nav-sheet { position: fixed; inset: 0; z-index: 3000; }
.nav-sheet[hidden] { display: none; }
.nav-sheet-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; transition: opacity 0.25s ease; }
.nav-sheet.open .nav-sheet-backdrop { opacity: 1; }
.nav-sheet-panel {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--color-surface, #13131a);
  border-top-left-radius: 22px; border-top-right-radius: 22px;
  padding: 0.6rem 1rem calc(1.25rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -12px 32px rgba(0,0,0,0.45);
  max-width: 520px; margin: 0 auto;
}
.nav-sheet.open .nav-sheet-panel { transform: translateY(0); }
.nav-sheet-handle { width: 42px; height: 4px; border-radius: 999px; background: var(--color-border, #2d2d3d); margin: 0.25rem auto 0.85rem; }
.nav-sheet-title { font-size: 0.95rem; font-weight: 700; color: var(--color-text, #f1f5f9); margin: 0 0 0.4rem; padding: 0 0.25rem; }
.nav-sheet-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.8rem 0.5rem; border-radius: 12px; text-decoration: none; color: var(--color-text, #f1f5f9); font-weight: 600; font-size: 0.95rem; }
.nav-sheet-item:hover, .nav-sheet-item:active { background: rgba(124,58,237,0.14); }
.nav-sheet-ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px; background: rgba(124,58,237,0.16); color: #a78bfa; display: flex; align-items: center; justify-content: center; }
.nav-sheet-ic svg { width: 20px; height: 20px; }
body.theme-light .nav-sheet-panel { background: #fff; }
body.theme-light .nav-sheet-title, body.theme-light .nav-sheet-item { color: #0f172a; }
body.theme-light .nav-sheet-ic { background: rgba(124,58,237,0.1); color: #7c3aed; }

/* ── Novo layout do toast de venda ── */
body.lp-page .toast-container .toast {
  display: flex !important; align-items: center; gap: 0.7rem;
  background: var(--color-surface, #13131a) !important;
  color: var(--color-text, #f1f5f9) !important;
  border: 1px solid var(--color-border, #2d2d3d) !important;
  border-left: 3px solid var(--color-primary, #7c3aed) !important;
  border-radius: 14px !important;
  padding: 0.7rem 1.9rem 0.7rem 0.75rem !important;
  max-width: 290px !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45) !important;
}
body.lp-page .toast-container .toast .toast-platform { width: 38px !important; height: 38px !important; padding: 8px; border-radius: 50%; background: var(--gradient-primary); color: #fff !important; flex-shrink: 0; }
body.lp-page .toast-container .toast .toast-title { font-weight: 700 !important; font-size: 0.85rem !important; color: var(--color-text, #f1f5f9) !important; }
body.lp-page .toast-container .toast .toast-desc { font-size: 0.78rem !important; color: var(--color-text-muted, #9aa3b2) !important; }
body.lp-page .toast-container .toast .toast-time { font-size: 0.72rem !important; color: var(--color-accent, #06b6d4) !important; }
body.lp-page .toast-container .toast .toast-dot { background: #10b981 !important; }
body.lp-page .toast-container .toast .toast-close { color: var(--color-text-muted, #9aa3b2) !important; }
body.theme-light.lp-page .toast-container .toast { background: #fff !important; color: #0f172a !important; border-color: #e2e8f0 !important; }
body.theme-light.lp-page .toast-container .toast .toast-title { color: #0f172a !important; }
body.theme-light.lp-page .toast-container .toast .toast-desc { color: #475569 !important; }

/* ── "Por que somos a escolha certa" — grid compacto, sem slider ── */
.why-us-gradient-text {
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: transparent !important;
}
.why-choose-us-section .why-us-slider-container { overflow: visible; }
.why-choose-us-section .why-us-track {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.6rem !important;
  transform: none !important;
  overflow: visible !important;
  padding: 0.5rem 0 0.75rem !important;
  width: 100% !important;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
}
.why-choose-us-section .why-us-card {
  flex: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  background: var(--color-surface, #13131a) !important;
  border: 1px solid var(--color-border, #2d2d3d) !important;
  border-radius: 14px !important;
  padding: 0.85rem 0.85rem !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.20) !important;
  min-height: 0 !important;
}
.why-choose-us-section .why-us-card h3 {
  font-size: 0.92rem !important;
  margin: 0.5rem 0 0.25rem !important;
  color: var(--color-text, #f1f5f9) !important;
}
.why-choose-us-section .why-us-card p {
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  color: var(--color-text-muted, #9aa3b2) !important;
}
.why-choose-us-section .why-us-icon-box {
  width: 34px !important; height: 34px !important; border-radius: 10px !important;
  background: var(--gradient-primary) !important;
  color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0 !important;
}
.why-choose-us-section .why-us-icon-box svg { width: 18px !important; height: 18px !important; }
.why-choose-us-section .why-us-dots { display: none !important; }  /* sumir dots (não é mais slider) */
body.theme-light .why-choose-us-section .why-us-card { background: #fff !important; border-color: #e2e8f0 !important; box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important; }
body.theme-light .why-choose-us-section .why-us-card h3 { color: #0f172a !important; }
body.theme-light .why-choose-us-section .why-us-card p { color: #475569 !important; }
@media (min-width: 768px) {
  /* Desktop: vira slider horizontal com swipe */
  .why-choose-us-section .why-us-track {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem !important;
    padding: 0.5rem 0.5rem 1.25rem !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    scrollbar-width: thin;
  }
  .why-choose-us-section .why-us-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    scroll-snap-align: start;
    padding: 1.25rem 1.2rem !important;
  }
  .why-choose-us-section .why-us-card h3 { font-size: 1rem !important; }
  .why-choose-us-section .why-us-card p { font-size: 0.85rem !important; }
  .why-choose-us-section .why-us-icon-box { width: 40px !important; height: 40px !important; border-radius: 12px !important; margin-bottom: 0.65rem !important; }
  .why-choose-us-section .why-us-dots { display: flex !important; justify-content: center; margin-top: 0.5rem; }
}

/* ── Novo layout da FAQ (acordeão limpo, 1 coluna) ── */
.faq-section .faq-grid { display: flex !important; flex-direction: column; gap: 0.75rem; max-width: 720px; margin: 0 auto; grid-template-columns: none !important; }
.faq-section .faq-card { background: var(--color-surface, #13131a) !important; border: 1px solid var(--color-border, #2d2d3d) !important; border-radius: 14px !important; box-shadow: none !important; overflow: hidden; }
.faq-section .faq-card .card-content { padding: 0 !important; }
.faq-section .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: none; border: none; cursor: pointer; padding: 1.1rem 1.25rem; text-align: left; font-size: 1rem; font-weight: 700; color: var(--color-text, #f1f5f9); font-family: inherit; }
.faq-section .faq-toggle { flex-shrink: 0; transition: transform 0.25s ease; color: var(--color-primary-light, #a78bfa); }
.faq-section .faq-question[aria-expanded="true"] { color: var(--color-primary-light, #a78bfa); }
.faq-section .faq-question[aria-expanded="true"] .faq-toggle { transform: rotate(180deg); }
.faq-section .faq-answer { padding: 0 1.25rem 1.2rem; color: var(--color-text-muted, #9aa3b2); font-size: 0.92rem; line-height: 1.6; }
body.theme-light .faq-section .faq-card { background: #fff !important; border-color: #e2e8f0 !important; }
body.theme-light .faq-section .faq-question { color: #0f172a; }
body.theme-light .faq-section .faq-answer { color: #475569; }

/* ── Hero ── */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 1.5rem 3rem;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% -10%, #1a1033 0%, #0b0a14 45%, #07070b 100%);
}
.lp-hero-glow {
  position: absolute;
  left: 50%; top: 30%;
  width: 460px; height: 460px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, rgba(124,58,237,0) 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.lp-hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(115deg, transparent 48%, rgba(124,58,237,0.25) 49%, rgba(124,58,237,0) 50%),
    linear-gradient(115deg, transparent 64%, rgba(6,182,212,0.18) 65%, rgba(6,182,212,0) 66%);
  background-size: 100% 100%;
}
.lp-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 360px;
  justify-content: center;
  padding: 0.7rem 1rem;
  margin: 0 auto 1.75rem;
  border-radius: 16px;
  background: rgba(124,58,237,0.10);
  border: 1px solid rgba(124,58,237,0.30);
  color: #c9b8ff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.lp-hero-badge svg { color: #a78bfa; flex-shrink: 0; }

.lp-hero-title {
  font-size: clamp(2.3rem, 9vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: #f8fafc;
  margin: 0 0 1.25rem;
}
.g-cyan {
  background: linear-gradient(90deg, #f09433, #e1306c);  /* laranja → rosa Instagram (era ciano) */
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.g-purple {
  background: linear-gradient(90deg, #a855f7, #d946ef);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lp-hero-sub {
  font-size: clamp(1rem, 3.6vw, 1.12rem);
  color: #9aa3b2;
  line-height: 1.6;
  max-width: 30ch;
  margin: 0 auto 2rem;
}

.lp-hero-ctas { display: flex; flex-direction: column; gap: 0.9rem; max-width: 420px; margin: 0 auto; }
.lp-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%;
  padding: 1.15rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee 0%, #7c3aed 55%, #c026d3 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  box-shadow: 0 10px 30px rgba(124,58,237,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(124,58,237,0.55); }
.lp-btn-primary .lp-btn-arrow { font-size: 1.2rem; line-height: 1; }
.lp-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 1.1rem 1.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.lp-btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(124,58,237,0.45); }

@media (min-width: 768px) {
  .lp-hero { padding: 5rem 1.5rem 4rem; }
  .lp-hero-badge { font-size: 0.74rem; }
  .lp-hero-ctas { flex-direction: row; max-width: none; justify-content: center; }
  .lp-btn-primary, .lp-btn-ghost { width: auto; min-width: 220px; }
}

/* ── WhatsApp flutuante ── */
.lp-whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(72px + env(safe-area-inset-bottom));
  z-index: 2100;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.15s ease;
}
.lp-whatsapp-fab:hover { transform: scale(1.06); }
@media (min-width: 768px) { .lp-whatsapp-fab { bottom: 1.25rem; width: 58px; height: 58px; } }

/* ── Bottom nav estilo app (5 itens) ── */
.bottom-nav.app-nav {
  display: flex;
  background: rgba(13,11,20,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid #1f1b2e;
  /* mais baixo: menos padding vertical e conteúdo coladinho na base */
  padding: 0.28rem 1rem calc(0.2rem + env(safe-area-inset-bottom)) !important;
}
.bottom-nav.app-nav .bottom-nav-item {
  flex: 1;
  gap: 0.2rem;
  font-size: 0.66rem;
  color: #8b93a4;
  padding: 0.18rem 0.15rem;
}
.bottom-nav.app-nav .bottom-nav-item svg { width: 22px; height: 22px; }
.bottom-nav.app-nav .bottom-nav-item.active { color: #a78bfa; }
.bottom-nav.app-nav .bottom-nav-item.active svg { color: #a78bfa; }
.bottom-nav.app-nav .bottom-nav-item:hover { color: #c4b5fd; }
/* app-nav: somente no mobile (escondido no desktop) */
body.lp-page .bottom-nav.app-nav { display: flex; }
@media (min-width: 768px) {
  .bottom-nav.app-nav,
  body.lp-page .bottom-nav.app-nav { display: none !important; }
  body.has-bottom-nav { padding-bottom: 0 !important; }
}

/* Quando o hero é aplicado dentro do .header (engajamento/checkout), vencer overrides antigos */
.checkout-page > .header.lp-hero {
  background: radial-gradient(120% 80% at 50% -10%, #1a1033 0%, #0b0a14 45%, #07070b 100%) !important;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  padding: 3rem 1.25rem 3rem !important;
  text-align: center;
}
.checkout-page > .header.lp-hero::before { content: none !important; }
.checkout-page > .header.lp-hero .header-ticker {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  display: inline-block;
}

/* Hero banner — APENAS no tema escuro */
body.lp-page:not(.theme-light) .insta-checkout-hero {
  background: radial-gradient(120% 90% at 50% -10%, #1a1033 0%, #0b0a14 55%, #07070b 100%) !important;
  border: 1px solid #241d36 !important;
}
body.lp-page:not(.theme-light) .insta-checkout-hero::before {
  background: radial-gradient(ellipse at 50% 30%, rgba(124,58,237,0.25) 0%, transparent 60%) !important;
}
body.lp-page:not(.theme-light) .insta-checkout-hero .hero-badge {
  background: rgba(124,58,237,0.15) !important;
  border: 1px solid rgba(124,58,237,0.35) !important;
  color: #c9b8ff !important;
}
body.lp-page:not(.theme-light) .insta-checkout-hero h2 { color: #f8fafc !important; }
body.lp-page:not(.theme-light) .insta-checkout-hero h2 .g-cyan,
body.lp-page:not(.theme-light) .insta-checkout-hero h2 .g-purple { display: inline; }
body.lp-page:not(.theme-light) .insta-checkout-hero p { color: #9aa3b2 !important; }

/* Acentos roxos no lugar do azul nas páginas de serviço quando escuras */
body.lp-page.page-instagram-services .step.active .step-circle { background: var(--color-primary, #7c3aed) !important; box-shadow: 0 0 0 3px rgba(124,58,237,0.25) !important; }
body.lp-page.page-instagram-services .step-circle { background: #2a2440 !important; }
body.lp-page.page-instagram-services .step-line.active { background: var(--color-primary, #7c3aed) !important; }
body.lp-page.page-instagram-services .service-card.active { border-color: var(--color-primary, #7c3aed) !important; box-shadow: 0 0 0 3px rgba(124,58,237,0.25) !important; }
body.lp-page.page-instagram-services #tipoCards .service-card.active { background: var(--color-primary, #7c3aed) !important; border-color: var(--color-primary, #7c3aed) !important; }

/* Página do cliente (consulta de pedidos) em modo escuro */
body.lp-page.cliente-body:not(.theme-light) { background: #07070b !important; }
body.lp-page:not(.theme-light) .cliente-hero {
  background: radial-gradient(120% 90% at 50% -10%, #1a1033 0%, #0b0a14 55%, #07070b 100%) !important;
  border: 1px solid #241d36 !important;
}
body.lp-page:not(.theme-light) .cliente-hero-icon { background: rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.35); }
body.lp-page.theme-light .cliente-hero { background: #fff !important; border: 1px solid #e2e8f0 !important; }
body.lp-page:not(.theme-light) .cliente-card { background: #121019; border-color: #272336; box-shadow: none; }
body.lp-page:not(.theme-light) .cliente-field-label { color: #9aa3b2; }
body.lp-page:not(.theme-light) .cliente-input-wrap .field-icon { color: #7c7f8c; }
body.lp-page .cliente-consult-btn { background: var(--gradient-primary); }
body.lp-page:not(.theme-light) #clientPageBackBtn { background: rgba(124,58,237,0.12); color: #c9b8ff; border-color: rgba(124,58,237,0.3); }
body.lp-page:not(.theme-light) #clientPageBackBtn:hover { background: var(--color-primary, #7c3aed); color: #fff; border-color: var(--color-primary, #7c3aed); }
body.lp-page.theme-light #clientPageBackBtn { background: #f1f5f9 !important; color: #475569 !important; border-color: #e2e8f0 !important; }
body.lp-page.theme-light #clientPageBackBtn:hover { background: #e2e8f0 !important; color: #0f172a !important; }

/* Card de descrição do tipo */
#tipoDescCard .card-desc p { margin: 0.4rem 0; }
#tipoDescCard .card-desc ul { margin: 0.5rem 0 0.25rem; padding-left: 1rem; }
#tipoDescCard .card-desc li { margin: 0.2rem 0; }

/* Centralizar texto nos cards de seguidores (tipo) */
#tipoCards .card-content { text-align: center; }
#tipoCards .card-title { text-align: center; }
#tipoCards .card-desc { text-align: center; }





/* ===== Servicos: somente PIX (sem cartao de credito) ===== */
.page-instagram-services #optionCard,
.page-instagram-services #cardPaymentContent,
.page-instagram-services #payWithCardBtn,
.page-instagram-services #stripeBadgeCard,
.page-instagram-services #pagarmeBadgeCard { display: none !important; }
.page-instagram-services #paymentMethodSelector { display: none !important; }
.page-instagram-services #optionPix { max-width: none !important; }
