/* ==============================================================
   SEGUIDORES.COM — MASTER DESIGN SYSTEM SAAS ELITE 2026
   Tipografia: Roboto (Google Fonts)
   Paleta: Indigo Real (#4F46E5), Roxo Vibrante (#7C3AED), Esmeralda Pix (#10B981), Slate (#0F172A)
   Canvas: Branco Puro (#FFFFFF) com contraste sutil (#FAFAFC, #F1F5F9)
   Header & Footer: Full Width (Sem cápsula flutuante)
   Pesos: h1 max 500, h2 max 400
   ============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Caveat:wght@400..700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400;1,700&display=swap');

:root {
    /* Tipografia Master */
    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-script: 'Caveat', cursive;
    
    /* Cores da Marca (Roxo Oficial #6701E6 & Violeta SaaS) */
    --primary: #6701E6;
    --primary-hover: #5601C2;
    --primary-dark: #4701A1;
    --primary-light: #8327FE;
    --primary-soft: #F4EBFF;
    --primary-border: #E0CBFA;
    --primary-gradient: linear-gradient(135deg, #811BFE 0%, #6701E6 100%);
    
    /* Esmeralda & Mint (Pix Instantâneo & Conversão) */
    --emerald: #10B981;
    --emerald-hover: #059669;
    --emerald-dark: #047857;
    --emerald-soft: #ECFDF5;
    --emerald-border: #A7F3D0;
    --emerald-gradient: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    
    /* Âmbar & Alertas */
    --amber: #F59E0B;
    --amber-soft: #FEF3C7;
    --amber-border: #FDE68A;
    --rose: #F43F5E;
    --rose-soft: #FFE4E6;
    
    /* Escala Slate Neutra de Alto Contraste */
    --slate-950: #0B0F19;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    
    /* Canvas & Superfícies */
    --bg-page: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-subtle: #F8FAFC;
    --bg-subtle-2: #F1F5F9;
    
    --border: #E2E8F0;
    --border-subtle: rgba(226, 232, 240, 0.8);
    --border-focus: rgba(103, 1, 230, 0.4);
    
    /* Sombras Difusas em Camadas (Anti-Vibecode) */
    --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 20px 25px -5px rgba(103, 1, 230, 0.04);
    --shadow-xl: 0 20px 35px -8px rgba(15, 23, 42, 0.08), 0 10px 20px -6px rgba(103, 1, 230, 0.08);
    --shadow-glow-primary: 0 10px 30px -5px rgba(103, 1, 230, 0.4);
    
    /* Curvas de Animação & Mola */
    --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.15s ease;
    --transition-base: all 0.25s var(--ease-spring);
    --transition-smooth: all 0.35s var(--ease-spring);
    
    /* Raios de Borda */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
}

/* ==============================================================
   RESET GLOBAL & BASE TIPOGRÁFICA
   ============================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-page);
    color: var(--slate-800);
    max-width: 100vw;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-main) !important;
    background-color: var(--bg-page) !important;
    color: var(--slate-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
    font-weight: 400;
}

/* Títulos H1 e H2 com Bricolage Grotesque */
h1, .hero-title {
    font-family: var(--font-heading) !important;
    color: var(--slate-900);
    font-weight: 700 !important;
    font-size: clamp(2.3rem, 4.4vw, 3.6rem);
    letter-spacing: -0.035em;
    line-height: 1.16;
}

h2, .section-title, h2.section-title, .senja-purple-title {
    font-family: var(--font-heading) !important;
    color: var(--slate-900);
    font-weight: 700 !important;
    font-size: clamp(1.85rem, 3.6vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.22;
}

h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    color: var(--slate-900);
    font-weight: 700;
}

/* Eyebrows e Textos Antes dos Títulos com Caveat Script */
.section-eyebrow-script, .section-eyebrow, .script-eyebrow, .hero-script-tag, .internal-hero-script-tag {
    font-family: var(--font-script) !important;
    font-size: 1.65rem;
    font-weight: 700;
    color: #A46AF0 !important;
    line-height: 1.2;
    display: inline-block;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
}

/* ==============================================================
   DESTAQUES DE COR ESTILO MARCA-TEXTO (IMAGENS 1 & 3)
   ============================================================== */
.marker-h1 {
    background-color: rgba(224, 203, 250, 0.65);
    color: #0F172A !important;
    padding: 1px 8px;
    border-radius: 4px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: inherit;
    line-height: inherit;
}

.marker-yellow, .highlight-yellow, .marker-highlight {
    background-color: #FEF3C7;
    color: #1E293B;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: inherit;
}

.marker-purple, .highlight-purple {
    background-color: #EDE9FE;
    color: #4C1D95;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: inherit;
}

.marker-emerald, .highlight-emerald, .marker-green {
    background-color: #D1FAE5;
    color: #065F46;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: inherit;
}

.marker-rose, .highlight-rose {
    background-color: #FFE4E6;
    color: #9F1239;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: inherit;
}

h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    color: var(--slate-900);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    letter-spacing: -0.02em;
}

p {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.purple-underline {
    background: linear-gradient(135deg, #811BFE 0%, #6701E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

/* ==============================================================
   1. TOP BANNER DE AVISO (FIXO NO TOPO / STICKY #6701E6)
   ============================================================== */
.site-top-banner {
    width: 100%;
    background: #6701E6;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 9px 0;
    position: sticky;
    top: 0;
    z-index: 10002;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(103, 1, 230, 0.3);
}

.site-top-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.site-top-banner__text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.site-top-banner__text i {
    color: #FFFFFF;
    font-size: 0.875rem;
}

/* ==============================================================
   2. HEADER PRINCIPAL (FULL WIDTH FIXO STICKY / NÃO FLUTUANTE)
   ============================================================== */
.site-master-header {
    width: 100%;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 37px;
    z-index: 10000;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 34px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-brand:hover .brand-logo-img,
.footer-brand-logo:hover .brand-logo-img,
.brand-logo:hover .brand-logo-img,
.brand-logo-split:hover .brand-logo-img {
    transform: scale(1.03);
    opacity: 0.95;
}

.header-brand__spark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.header-nav-desktop {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: var(--transition-fast);
}

.header-nav-link:hover {
    color: var(--primary);
}

.header-actions-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header-track {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--slate-100);
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.btn-header-track:hover {
    background: var(--slate-200);
    color: var(--slate-900);
    border-color: var(--slate-300);
}

.btn-header-menu {
    display: none;
    align-items: center;
    gap: 6px;
    background: var(--slate-100);
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-full);
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-header-menu:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

/* ==============================================================
   3. DRAWER MENU OFF-CANVAS
   ============================================================== */
.drawer-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: none;
}

.drawer-menu-backdrop.is-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.drawer-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-spring);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 100000;
}

.drawer-menu-backdrop.is-open .drawer-menu-panel {
    transform: translateX(0);
}

.drawer-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--slate-200);
}

.drawer-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--slate-100);
    color: var(--slate-700);
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.drawer-menu-close:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

.drawer-menu-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.drawer-section-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-400);
    margin-bottom: 12px;
}

.drawer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.drawer-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: var(--slate-50);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.drawer-link-item:hover {
    background: var(--primary-soft);
    border-color: var(--primary-border);
    transform: translateX(3px);
}

.drawer-link-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-xs);
}

.drawer-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--slate-200);
    background: var(--slate-50);
}

/* ==============================================================
   4. HERO SECTION (ESTILO SENJA 2026 — IMAGENS 4 & 5)
   ============================================================== */
.hero-section {
    padding: 64px 0 88px;
    background: radial-gradient(100% 70% at 50% 0%, #FAF5FF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-centered-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Floating Sparkle Stars */
.hero-sparkle-star {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-sparkle-star--left {
    top: -10px;
    left: -40px;
    width: 44px;
    height: 44px;
    opacity: 0.85;
    animation: floatSlow 4s ease-in-out infinite;
}

.hero-sparkle-star--right {
    top: 10px;
    right: -40px;
    width: 70px;
    height: 24px;
    opacity: 0.85;
    animation: floatSlow 4s ease-in-out infinite 2s;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
}

.hero-title--centered {
    font-size: clamp(2.2rem, 4.4vw, 3.8rem) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    color: #0F172A !important;
    margin-bottom: 24px;
    letter-spacing: -0.035em;
    max-width: 920px;
}

.hero-author-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    padding: 6px 18px 6px 8px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.hero-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-border);
}

.hero-author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.hero-author-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-900);
}

.hero-author-role {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.hero-subtitle--centered {
    font-size: 1.1875rem;
    line-height: 1.65;
    color: var(--slate-600);
    max-width: 680px;
    margin: 0 auto 32px;
}

.hero-checklist-centered {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 28px;
    margin-bottom: 36px;
}

.hero-check-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500 !important;
    color: var(--slate-800);
}

.hero-check-item i {
    color: var(--emerald);
    font-size: 0.95rem;
}

.hero-cta-wrap-centered {
    margin-bottom: 36px;
}

.btn-hero-mega {
    font-size: 1.15rem !important;
    padding: 18px 44px !important;
    border-radius: var(--radius-full) !important;
}

.hero-social-proof-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-avatars-row {
    display: flex;
    align-items: center;
}

.hero-avatars-row img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #FFFFFF;
    margin-left: -10px;
    box-shadow: var(--shadow-xs);
    transition: transform 0.2s ease;
}

.hero-avatars-row img:first-child {
    margin-left: 0;
}

.hero-avatars-row img:hover {
    transform: translateY(-4px) scale(1.15);
    z-index: 10;
}

.hero-proof-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
}

.hero-stars-row {
    display: inline-flex;
    gap: 2px;
    color: #F59E0B;
    font-size: 0.85rem;
}

/* ==============================================================
   BOTÃO CTA OFICIAL COM ANIMAÇÃO DA COBRINHA (IMAGENS 1, 2 & 3)
   ============================================================== */
@keyframes cta-snake-beam {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 1. Container Externo (Ring) com Rastro da Cobrinha */
.btn-cta-ring {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3.5px;
    border-radius: 19px;
    overflow: hidden !important;
    isolation: isolate;
    box-shadow: 0 .6px 1.08px -.83px #0000000d, 0 2.29px 4.12px -1.67px #0000000d, 0 10px 18px -2.5px #0000000d;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring);
    max-width: 100%;
}

/* Feixe Giratório da Cobrinha na Borda (::before) */
.btn-cta-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 480px;
    min-width: 480px;
    min-height: 480px;
    transform: translate(-50%, -50%) rotate(0deg);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 250deg,
        rgba(103, 1, 230, 0.4) 280deg,
        #6701E6 315deg,
        #A855F7 335deg,
        #FFFFFF 355deg,
        transparent 360deg
    );
    animation: cta-snake-beam 3s linear infinite !important;
    pointer-events: none;
    z-index: 1;
}

.btn-cta-ring--dark::before {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 250deg,
        rgba(255, 255, 255, 0.4) 280deg,
        #FFFFFF 330deg,
        rgba(224, 203, 250, 0.95) 350deg,
        transparent 360deg
    );
}

/* Corpo Interno do Ring com Recuo de 1.5px (::after) */
.btn-cta-ring::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: 17.5px;
    background: #FAF8FF;
    z-index: 2;
    transition: background 0.25s ease;
}

.btn-cta-ring--dark::after {
    background: rgba(40, 15, 80, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-cta-ring:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 1, 230, 0.2), 0 12px 28px -4px rgba(103, 1, 230, 0.35);
}

.btn-cta-ring--dark:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 16px 36px -4px rgba(0, 0, 0, 0.5);
}

/* 2. Botão Roxo Interno (Imagem 1 & 3) */
.btn-cta-senja,
.btn-hero-mega,
.btn-primary-pulse,
.btn-border-beam,
.btn-border-beam--purple,
.hero-cta-btn {
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg, #811BFE 0%, #6701E6 100%) !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading) !important;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(103, 1, 230, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
    margin: 0 !important;
}

.btn-cta-senja:hover,
.btn-hero-mega:hover,
.btn-primary-pulse:hover,
.btn-border-beam:hover,
.btn-border-beam--purple:hover,
.hero-cta-btn:hover {
    background: linear-gradient(180deg, #8C2CFE 0%, #7002FA 100%) !important;
    box-shadow: 0 8px 24px rgba(103, 1, 230, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px);
}

.btn-cta-senja i,
.btn-hero-mega i,
.btn-primary-pulse i,
.hero-cta-btn i {
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.btn-cta-ring:hover .btn-cta-senja i,
.btn-cta-ring:hover .btn-hero-mega i,
.btn-hero-mega:hover i,
.btn-primary-pulse:hover i,
.hero-cta-btn:hover i {
    transform: translateX(4px);
}

/* 3. Botão Branco Interno para Seções Escuras (Estilo Senja com Sparkles & Beam) */
.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
}

.hero-cta.white {
    color: #FFFFFF;
}

/* Sparkles Cintilantes */
.hero-cta .sparkles {
    position: absolute;
    inset: -22px -32px;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.hero-cta .sparkles svg {
    position: absolute;
    color: rgba(255, 255, 255, 0.75);
    animation: sparkle-twinkle 2.5s infinite ease-in-out;
}

.hero-cta.white .sparkles.layer-b svg {
    color: rgba(224, 203, 250, 0.9);
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.15;
        transform: scale(0.6) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.25) rotate(45deg);
    }
}

/* Ring Translúcido Externo */
.hero-cta .ring {
    background: rgba(255, 255, 255, 0.1);
    border: 0.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 19px;
    padding: 4px;
    display: inline-flex;
    position: relative;
    box-shadow: 0 0.6px 1.08px -0.83px rgba(0, 0, 0, 0.08), 
                0 2.29px 4.12px -1.67px rgba(0, 0, 0, 0.08), 
                0 10px 18px -2.5px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring);
    z-index: 2;
}

.hero-cta:hover .ring {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 12px 28px -4px rgba(255, 255, 255, 0.3);
}

/* Feixe Giratório no Ring (Beam) */
.hero-cta .beam {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 480px;
    min-width: 480px;
    min-height: 480px;
    transform: translate(-50%, -50%) rotate(0deg);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 250deg,
        rgba(255, 255, 255, 0.4) 280deg,
        #FFFFFF 330deg,
        rgba(224, 203, 250, 0.95) 350deg,
        transparent 360deg
    );
    animation: cta-snake-beam 3s linear infinite !important;
    pointer-events: none;
    z-index: 1;
}

/* Botão Branco Interno */
.hero-cta .btn,
.hero-cta .btn-senja-white,
.btn-purple-white-cta,
.btn-border-beam--white,
.btn-cta-senja--white {
    position: relative;
    z-index: 3;
    background: #FFFFFF !important;
    color: #4C0099 !important;
    font-family: var(--font-heading) !important;
    font-size: 1.125rem;
    font-weight: 800;
    padding: 15px 36px;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.95) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), inset 0 1px 0 #FFFFFF !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.01em;
    margin: 0 !important;
}

.hero-cta:hover .btn,
.hero-cta:hover .btn-senja-white,
.hero-cta:hover .btn-cta-senja--white,
.btn-purple-white-cta:hover,
.btn-border-beam--white:hover,
.btn-cta-senja--white:hover {
    background: #FAF8FF !important;
    color: #380072 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.45) !important;
}

.hero-cta .btn i,
.hero-cta .btn-senja-white i,
.hero-cta .btn-cta-senja--white i {
    font-size: 0.95rem;
    transition: transform 0.2s ease;
    color: #4C0099 !important;
}

.hero-cta:hover .btn i,
.hero-cta:hover .btn-senja-white i,
.hero-cta:hover .btn-cta-senja--white i {
    transform: translateX(4px);
}

.btn-capsule-split {
    display: inline-flex;
    align-items: center;
    background: var(--primary-gradient);
    color: #FFFFFF !important;
    border-radius: var(--radius-full);
    padding: 3px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-decoration: none;
    animation: cta-pulse-glow 2.4s infinite ease-in-out;
}

.btn-capsule-split--purple {
    background: var(--primary-gradient);
}

.btn-capsule-split .btn-capsule-body {
    padding: 8px 18px 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-capsule-split .btn-capsule-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-capsule-split:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-glow-primary);
}

.btn-capsule-split:hover .btn-capsule-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

/* ==============================================================
   HERO DE ALTA CONVERSÃO PARA PÁGINAS INTERNAS (ESTILO SENJA — IMAGEM 3)
   ============================================================== */
.internal-page-hero-senja {
    position: relative;
    padding: 72px 0 96px;
    background: radial-gradient(ellipse 90% 70% at 50% 0%, #430485 0%, #200247 50%, #0D0022 100%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.internal-hero-content {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.internal-hero-script-tag {
    font-family: var(--font-script) !important;
    font-size: 1.85rem;
    font-weight: 700;
    color: #A46AF0 !important;
    margin-bottom: 8px;
    display: inline-block;
}

.internal-hero-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(2.3rem, 4.4vw, 3.6rem);
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}

.internal-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
    color: #DDD6FE;
    max-width: 660px;
    margin: 0 auto 30px;
}

.internal-hero-cta-wrap {
    margin-bottom: 28px;
}

.internal-hero-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.internal-hero-avatars {
    display: flex;
    align-items: center;
}

.internal-hero-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #200247;
    margin-left: -10px;
}

.internal-hero-avatars img:first-child {
    margin-left: 0;
}

.internal-hero-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DDD6FE;
    font-size: 0.875rem;
    font-weight: 600;
}

.internal-hero-stars-row .stars-icons {
    color: #FBBF24;
    letter-spacing: 1px;
}

/* Floating Window Mockup / Glass Card transition */
.internal-hero-mockup-wrapper {
    position: relative;
    max-width: 1060px;
    margin: -40px auto 60px;
    padding: 0 24px;
    z-index: 5;
}

.internal-hero-window-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.8);
    overflow: hidden;
    padding: 36px 32px;
}

.hero-guarantees {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
}

.hero-guarantees span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-guarantees i {
    color: var(--emerald);
}

/* Card Visual da Hero */
.hero-video-card {
    background: #FFFFFF;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    padding: 12px;
    box-shadow: var(--shadow-xl);
    position: relative;
    transition: var(--transition-smooth);
}

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

.hero-video-preview {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: var(--slate-900);
}

.hero-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.hero-video-card:hover .hero-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--emerald);
}

.hero-video-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px 8px;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -8px;
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.hero-rating {
    text-align: right;
}

.hero-rating span {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--slate-800);
}

.hostinger-trust-stars-svg {
    display: flex;
    gap: 3px;
    justify-content: flex-end;
}

/* ==============================================================
   5. NA MÍDIA
   ============================================================== */
.media-section {
    padding: 32px 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    background: #FFFFFF;
}

.media-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 20px;
}

.media-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.media-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-400);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.media-logo-text:hover {
    color: var(--slate-800);
    transform: translateY(-1px);
}

/* ==============================================================
   6. SLIDER DE PACOTES DE PREÇO (4 POR VEZ / 1 MOBILE COM FOCO NO MAIS VENDIDO)
   ============================================================== */
.packages-section {
    padding: 80px 0;
    background: var(--bg-subtle);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.section-title {
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate-600);
}

/* ==============================================================
   SEÇÃO COMPARATIVA: SEGUIDORES REAIS VS ATIVOS (IPHONE MOCKUPS)
   ============================================================== */
.follower-types-section {
    padding: 80px 0 60px;
    background: #F8FAFC;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.follower-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

.ft-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 32px 28px 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.ft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.08);
}

.ft-card--real {
    border: 2px solid #6701E6;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF8FF 100%);
    box-shadow: 0 8px 30px -4px rgba(103, 1, 230, 0.12);
}

.ft-card--real:hover {
    box-shadow: 0 16px 40px -4px rgba(103, 1, 230, 0.2);
}

.ft-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.ft-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.ft-badge--active {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.ft-badge--real {
    background: linear-gradient(135deg, #6701E6 0%, #8B5CF6 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(103, 1, 230, 0.3);
}

.ft-card-title {
    font-family: var(--font-heading) !important;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.ft-card-subtitle {
    font-size: 0.925rem;
    color: var(--slate-600);
    line-height: 1.5;
}

/* Mockup do iPhone Conectado na Base do Widget */
.ft-iphone-mockup {
    width: 100%;
    max-width: 320px;
    margin: auto auto 0 auto;
    background: #FFFFFF;
    border-top: 3.5px solid #94A3B8;
    border-left: 3.5px solid #94A3B8;
    border-right: 3.5px solid #94A3B8;
    border-bottom: none !important;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding: 12px 14px 20px;
    box-shadow: 0 -8px 24px -4px rgba(0, 0, 0, 0.06);
    position: relative;
    box-sizing: border-box;
}

.ft-iphone-mockup--real {
    border-top-color: #6701E6;
    border-left-color: #6701E6;
    border-right-color: #6701E6;
    border-bottom: none !important;
    box-shadow: 0 -8px 30px -4px rgba(103, 1, 230, 0.16);
}

/* Dynamic Island / Notch */
.ft-iphone-island {
    width: 80px;
    height: 14px;
    background: #94A3B8;
    border-radius: 20px;
    margin: 0 auto 8px;
}

.ft-iphone-mockup--real .ft-iphone-island {
    background: #6701E6;
}

/* Instagram Header Bar */
.ft-ig-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 2px 10px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
}

.ft-ig-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-ig-header-left i {
    font-size: 12px;
    color: #475569;
}

.ft-ig-header-count {
    font-size: 11.5px;
    color: #64748B;
    font-weight: 500;
}

/* Instagram Search Bar */
.ft-ig-search {
    background: #F1F5F9;
    border-radius: 10px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 12px;
    font-size: 11.5px;
    color: #94A3B8;
}

.ft-ig-search i {
    font-size: 11px;
}

/* Instagram Follower List */
.ft-ig-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-ig-user-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 0;
}

.ft-ig-user-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

/* Avatar Normal (Ativos) */
.ft-ig-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #E2E8F0;
    flex-shrink: 0;
    border: 1px solid #CBD5E1;
}

/* Avatar com Story Ativo (Reais) */
.ft-ig-avatar-wrap-story {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ft-ig-avatar-wrap-story img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
}

.ft-ig-user-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ft-ig-username {
    font-size: 12.5px;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.ft-ig-fullname {
    font-size: 11px;
    color: #64748B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.ft-ig-stat-pill {
    font-size: 10px;
    color: #94A3B8;
    margin-top: 1px;
}

.ft-ig-stat-pill--real {
    color: #6701E6;
    font-weight: 600;
}

.ft-ig-btn-following {
    background: #EFEFEF;
    color: #0F172A;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    border: none;
    cursor: default;
    flex-shrink: 0;
}

.ft-ig-mockup-footer {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px dashed #E2E8F0;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.ft-ig-mockup-footer--active {
    color: #D97706;
}

.ft-ig-mockup-footer--real {
    color: #6701E6;
}

/* Specs */
.ft-specs-list {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ft-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--slate-700);
    line-height: 1.55;
    padding: 14px 0;
    border-bottom: 1.5px dashed #E2E8F0;
}

.ft-spec-item:first-child {
    padding-top: 0;
}

.ft-spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ft-spec-item i {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ft-spec-svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.ft-spec-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ft-spec-item strong,
.ft-spec-label {
    font-family: var(--font-heading) !important;
    font-size: 0.98rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.01em;
    margin-right: 4px;
}

/* Bloco de Conclusão / Transparência & CTA */
.ft-conclusion-box {
    text-align: center;
    max-width: 860px;
    margin: 40px auto 10px;
    padding: 0 16px;
}

.ft-conclusion-title {
    font-family: var(--font-heading) !important;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.4;
    margin-bottom: 12px;
}

.ft-conclusion-text {
    font-size: 1.05rem;
    color: var(--slate-600);
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .follower-types-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ft-card {
        padding: 24px 18px 0;
    }
    
    .ft-conclusion-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .ft-conclusion-text {
        font-size: 0.95rem;
    }
}

.minimal-promo-timer-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.minimal-promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--slate-900);
    color: #FFFFFF;
    padding: 6px 18px 6px 8px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.timer-pill-tag {
    background: #E11D48;
    color: #FFFFFF;
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.timer-pill-text {
    color: rgba(255, 255, 255, 0.9);
}

.packages-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.packages-slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 16px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.packages-slider-container::-webkit-scrollbar {
    display: none;
}

/* Setas do Slider SEM Círculos */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--slate-400);
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 10;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-nav-btn:hover {
    color: var(--primary);
    transform: translateY(-50%) scale(1.2);
    background: none !important;
    box-shadow: none !important;
}

.slider-nav-btn--prev { left: -44px; }
.slider-nav-btn--next { right: -44px; }

/* Dots em Formato de Linhas */
.packages-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.slider-dot-line {
    width: 24px;
    height: 4px;
    border-radius: 4px;
    background: var(--slate-200);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.slider-dot-line.is-active {
    width: 44px;
    background: var(--primary);
}

/* Cards de Pacote */
.package-card-wrapper {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card-wrapper--popular .popular-top-bar {
    background: var(--primary-gradient);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: -1px;
}

.package-card-wrapper--popular .popular-top-bar svg {
    width: 14px;
    height: 14px;
}

.package-card {
    background: #FFFFFF;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    flex: 1;
}

.package-card-wrapper--popular .package-card {
    border: 2px solid var(--primary);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: var(--shadow-glow-primary);
}

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

.package-card__qty-hero {
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--slate-100);
    margin-bottom: 18px;
}

.qty-hero-icon svg {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}

/* Número da Quantidade de Cada Pacote em Cor Roxa */
.qty-hero-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary) !important;
    line-height: 1;
    letter-spacing: -0.04em;
}

.qty-hero-label-row {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-500);
    margin-top: 4px;
}

.package-bonus-section {
    background: var(--emerald-soft);
    border: 1px solid var(--emerald-border);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    margin-bottom: 18px;
    text-align: center;
}

.package-bonus-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--emerald-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.package-card__bonus-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.bonus-pill {
    background: #FFFFFF;
    color: var(--emerald-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    border: 1px solid var(--emerald-border);
}

.package-card__features-list,
.package-features-list,
.package-card ul {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.package-card__features-list li,
.package-feature-item,
.package-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
}

.package-card__features-list li svg,
.package-feature-item svg,
.package-card ul li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.package-card__pricing-box,
.package-pricing-row {
    text-align: center;
    margin-bottom: 18px;
}

.package-card__old-price,
.package-price-old {
    font-size: 0.9rem;
    color: #E11D48;
    text-decoration: line-through;
    margin-bottom: 2px;
    font-weight: 600;
    display: block;
}

.package-card__price,
.package-price-current {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1;
    letter-spacing: -0.03em;
}

.package-card__price .currency,
.package-price-current small {
    font-size: 1.15rem;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
}

.btn-buy-package,
.package-card__cta {
    width: 100%;
    background: var(--slate-900);
    color: #FFFFFF;
    padding: 14px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-base);
}

.package-card-wrapper--popular .btn-buy-package,
.package-card-wrapper--popular .package-card__cta {
    background: linear-gradient(180deg, #811BFE 0%, #6701E6 100%);
    box-shadow: 0 4px 16px rgba(103, 1, 230, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-buy-package:hover,
.package-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.package-card-wrapper--popular .btn-buy-package:hover,
.package-card-wrapper--popular .package-card__cta:hover {
    box-shadow: var(--shadow-glow-primary);
    transform: translateY(-3px) scale(1.02);
}

.btn-buy-package:active,
.package-card__cta:active {
    transform: translateY(0px) scale(0.98);
}

.package-card__pix-note,
.package-footer-security {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-500);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==============================================================
   7. WIDGETS HOSTINGER
   ============================================================== */
.hostinger-widgets-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.hostinger-widgets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 32px;
}

.hostinger-widget-purple {
    background: var(--primary-gradient);
    color: #FFFFFF;
    border-radius: var(--radius-2xl);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-glow-primary);
    position: relative;
    min-height: 280px;
}

.hostinger-neon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #D4FF00;
    color: #0F172A;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(212, 255, 0, 0.4);
    margin-bottom: 24px;
}

.hostinger-widget-purple-title {
    color: #FFFFFF;
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

.hostinger-widget-purple-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

.hostinger-widget-photo {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    min-height: 280px;
    box-shadow: var(--shadow-lg);
}

.hostinger-widget-photo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hostinger-widget-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.hostinger-widget-photo-content {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
}

.hostinger-photo-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
    display: block;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hostinger-photo-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.hostinger-widget-dark {
    background: var(--slate-900);
    color: #FFFFFF;
    border-radius: var(--radius-2xl);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-xl);
    min-height: 280px;
}

.hostinger-shield-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: #34D399;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.hostinger-shield-cursor {
    position: absolute;
    bottom: -6px;
    right: -6px;
    font-size: 1rem;
    color: #FFFFFF;
}

.hostinger-widget-dark-title {
    color: #FFFFFF;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.hostinger-widget-dark-desc {
    color: var(--slate-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Barra Trustpilot Refatorada (Mobile e Desktop) */
.hostinger-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    max-width: fit-content;
    margin: 0 auto;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--slate-700);
    flex-wrap: wrap;
    text-align: center;
}

.trust-stars-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-count-text {
    color: var(--slate-700);
}

/* ==============================================================
   8. COMO FUNCIONA (3 PASSOS LIMPOS)
   ============================================================== */
.steps-section {
    padding: 80px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-clean-card {
    background: #FFFFFF;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.step-clean-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

.step-clean-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step-clean-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: monospace;
}

.step-clean-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.step-clean-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-clean-desc {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ==============================================================
   9. 4 PILARES DE SEGURANÇA (BENTO GRID)
   ============================================================== */
.why-choose-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.bento-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bento-pillar-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    padding: 32px;
    transition: var(--transition-base);
}

.bento-pillar-card:hover {
    background: #FFFFFF;
    border-color: var(--primary-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.bento-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
}

.bento-pillar-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.bento-pillar-desc {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* ==============================================================
   10. DARK STATS SECTION (DESIGN AURORA ROXO ESCURO - IMAGEM 2)
   ============================================================== */
.hostinger-dark-stats-section {
    padding: 64px 0;
    background: #FFFFFF;
}

.hostinger-dark-stats-grid {
    background: radial-gradient(130% 120% at 50% 120%, #4C1D95 0%, #2E1065 40%, #0F0728 75%, #05010C 100%);
    color: #FFFFFF;
    border-radius: var(--radius-2xl);
    padding: 56px 36px 44px 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    box-shadow: 0 24px 60px -12px rgba(76, 29, 149, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hostinger-dark-stats-grid::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 15%;
    right: 15%;
    height: 140px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0) 100%);
    filter: blur(35px);
    pointer-events: none;
}

.hostinger-dark-stat-col {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.hostinger-dark-stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.hostinger-dark-stat-intro {
    font-size: 0.85rem;
    font-weight: 500;
    color: #C4B5FD;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.hostinger-dark-stat-number {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #34D399;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 2px 16px rgba(52, 211, 153, 0.35);
}

.hostinger-dark-stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    line-height: 1.4;
}

.hostinger-dark-stats-cta-wrapper {
    text-align: center;
    margin-top: 36px;
    position: relative;
    z-index: 2;
}

/* ==============================================================
   11. CASOS DE USO ("O QUE VOCÊ QUER ALCANÇAR?")
   ============================================================== */
.hostinger-usecases-section {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.hostinger-usecases-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}

.hostinger-usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hostinger-usecase-card {
    background: #FFFFFF;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.hostinger-usecase-social-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.social-circle-pill {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--slate-100);
    color: var(--slate-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.social-circle-pill--insta { color: #E1306C; background: #FFE4E6; }
.social-circle-pill--meta { color: #0081FB; background: #E0F2FE; }
.social-circle-pill--reels { color: #E11D48; background: #FFE4E6; }
.social-circle-pill--tiktok { color: #000000; background: #F1F5F9; }

.hostinger-usecase-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* ==============================================================
   FLOATING AMBIENT ICONS SVG/FONTAWESOME (IMAGEM 1)
   ============================================================== */
.floating-bg-icons-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-bg-icon {
    position: absolute;
    color: #8B5CF6;
    opacity: 0.18;
    transition: transform 0.3s ease;
}

.floating-bg-icon--1 { top: 8%; left: 3%; font-size: 52px; transform: rotate(-15deg); animation: floatSlow 8s ease-in-out infinite; }
.floating-bg-icon--2 { top: 46%; left: 2%; font-size: 60px; transform: rotate(10deg); animation: floatSlow 10s ease-in-out infinite 1s; }
.floating-bg-icon--3 { bottom: 12%; left: 4%; font-size: 44px; transform: rotate(-8deg); animation: floatSlow 9s ease-in-out infinite 2s; }
.floating-bg-icon--4 { top: 10%; right: 3%; font-size: 54px; transform: rotate(12deg); animation: floatSlow 9s ease-in-out infinite 0.5s; }
.floating-bg-icon--5 { top: 48%; right: 2%; font-size: 48px; transform: rotate(-12deg); animation: floatSlow 11s ease-in-out infinite 1.5s; }
.floating-bg-icon--6 { bottom: 10%; right: 4%; font-size: 58px; transform: rotate(15deg); animation: floatSlow 8s ease-in-out infinite 2.5s; }

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(4deg); }
}

/* ==============================================================
   ESTILO TWICSY/SAAS 2026 / TABELA DE PREÇOS MINIMALISTA (IMAGENS 1 & 2)
   ============================================================== */
.pricing-tw-section {
    padding: 70px 0 90px;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.pricing-tw-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

/* COLUNA DA ESQUERDA: CARDS DE CATEGORIA */
.pricing-tw-left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card Ativo da Categoria (Topo Roxo + Corpo Branco com Linhas Finas) */
.tw-cat-card-active {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
}

.tw-cat-header-purple {
    background: #6701E6;
    color: #FFFFFF;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.tw-cat-header-purple h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.tw-cat-header-purple p {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.tw-cat-check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    background: #FFFFFF;
    color: #6701E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.tw-cat-features-list {
    padding: 8px 20px;
}

.tw-cat-feature-row {
    padding: 14px 0;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 400 !important;
    color: #1E293B;
}

.tw-cat-feature-row span {
    font-weight: 400 !important;
}

.tw-cat-feature-row:last-child {
    border-bottom: none;
}

.tw-cat-feature-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tw-cat-feature-left span {
    font-weight: 400 !important;
}

.tw-cat-feature-left .tw-feat-svg {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tw-cat-feature-left .tw-feat-svg svg {
    width: 18px;
    height: 18px;
    display: block;
}

.tw-cat-diff-link {
    font-size: 11.5px;
    font-weight: 400 !important;
    color: #6701E6;
    text-decoration: underline;
    white-space: nowrap;
}

/* Cards Inativos de Outras Categorias */
.tw-cat-card-inactive {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tw-cat-card-inactive:hover {
    border-color: #6701E6;
    background: #FDFBFF;
}

.tw-cat-inactive-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: #64748B;
    margin: 0 0 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tw-cat-inactive-info p {
    font-size: 12px;
    color: #94A3B8;
    margin: 0;
}

.tw-cat-radio-box {
    width: 22px;
    height: 22px;
    border: 2px solid #CBD5E1;
    border-radius: 6px;
    flex-shrink: 0;
}

.tw-badge-coming-soon {
    background: #EDE9FE;
    color: #6701E6;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* COLUNA DA DIREITA: BOX PRINCIPAL DE COMPRA */
.pricing-tw-right-box {
    background: #FFFFFF;
    border: 2.5px solid #6701E6;
    border-radius: 24px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Header de Valor / Quantidade */
.tw-pricing-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #F1F5F9;
    align-items: center;
}

.tw-pricing-col-buy {
    border-right: 1px solid #F1F5F9;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}

.tw-pricing-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #64748B;
    margin-top: 4px;
}

.tw-pricing-big-qty {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

.tw-pricing-col-pay {
    display: flex;
    flex-direction: column;
}

.tw-pricing-pay-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.tw-green-save-badge {
    background: #22C55E;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tw-pricing-big-price {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

.tw-pricing-big-price .currency {
    font-size: 1.6rem;
    font-weight: 700;
}

/* Grid de Pacotes (5 colunas desktop / 3 colunas mobile) - ESTILO IMAGEM 2 */
.tw-packages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.tw-package-card {
    background: #FFFFFF;
    border: 1.5px solid #E8E0FA;
    border-radius: 14px;
    padding: 16px 6px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.18s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tw-package-card:hover {
    border-color: #7430ED;
    background: #FAF7FF;
}

.tw-package-card.active {
    border: 2.5px solid #7430ED !important;
    background: #FAF7FF !important;
}

.tw-card-popular-tag {
    position: absolute;
    top: -10px;
    background: #7430ED;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2.5px 8px;
    border-radius: 4px;
    border: none;
}

.tw-package-card.active .tw-card-popular-tag {
    background: #7430ED;
    color: #FFFFFF;
    border: none;
}

.tw-card-qty-num {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: #0A1835;
    line-height: 1;
    margin-bottom: 8px;
}

.tw-package-card.active .tw-card-qty-num {
    color: #0A1835;
}

.tw-card-divider {
    width: 78%;
    height: 1px;
    background-color: #EDE8F8;
    margin: 0 auto 9px auto;
}

.tw-card-discount-tag {
    font-size: 11.5px;
    font-weight: 400 !important;
    color: #0A1835;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Botão de Compra Primário com Borda Animada */
.tw-btn-cta-wrapper {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
}

.tw-btn-cta-ring {
    width: 100% !important;
    display: flex !important;
}

.btn-tw-get-started {
    background: #6701E6;
    color: #FFFFFF;
    border: none;
    border-radius: 16px;
    padding: 17px 24px;
    font-size: 16px;
    font-weight: 800;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 3;
    letter-spacing: -0.01em;
}

.btn-tw-get-started:hover {
    background: #5200BD;
    transform: none !important;
}

/* Box de Prova Social em Tempo Real (Inferior) */
.tw-social-proof-box {
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.tw-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.tw-proof-badge-pink {
    background: #FDF2F8;
    color: #DB2777;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.tw-proof-badge-yellow {
    background: #FEF3C7;
    color: #D97706;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.tw-proof-badge-green {
    background: #DCFCE7;
    color: #15803D;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.tw-proof-divider {
    width: 1px;
    height: 24px;
    background: #E2E8F0;
}

/* Widget de Prova Social e Avaliações (Estilo Twicsy) */
.pricing-reviews-proof-widget {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 16px 20px;
}

.pricing-reviews-proof-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1.15rem;
    color: #1E293B;
    font-weight: 500;
    line-height: 1.3;
}

.pricing-reviews-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pricing-reviews-stars svg {
    width: 22px;
    height: 22px;
    display: block;
}

.pricing-reviews-proof-row a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pricing-reviews-proof-row a:hover {
    color: var(--primary, #6701E6);
}

.pricing-reviews-counter-row {
    font-size: 1.15rem;
    color: #1E293B;
    font-weight: 400;
    line-height: 1.3;
}

.pricing-reviews-counter-row strong {
    font-weight: 800;
    color: #0F172A;
}

@media (max-width: 640px) {
    .pricing-reviews-proof-widget {
        margin-top: 24px;
        gap: 6px;
        padding: 10px;
    }
    .pricing-reviews-proof-row {
        font-size: 0.98rem;
        gap: 8px;
    }
    .pricing-reviews-stars svg {
        width: 18px;
        height: 18px;
    }
    .pricing-reviews-counter-row {
        font-size: 0.98rem;
    }
}

/* Responsividade Mobile */
@media (max-width: 992px) {
    .pricing-tw-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-tw-right-box {
        padding: 20px;
        border-radius: 20px;
    }
    
    .tw-packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .tw-package-card {
        padding: 12px 4px 10px;
    }

    .tw-card-qty-num {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .tw-card-divider {
        margin: 0 auto 6px auto;
    }

    .tw-card-discount-tag {
        font-size: 9.5px;
        gap: 3px;
    }

    .tw-card-discount-tag i {
        font-size: 9px;
    }
    
    .tw-pricing-header-row {
        gap: 12px;
    }
    
    .tw-pricing-big-qty,
    .tw-pricing-big-price {
        font-size: 2.2rem;
    }
    
    .tw-social-proof-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .tw-proof-divider {
        display: none;
    }
}

/* Modal de Comparativo de Categorias ("Qual a diferença?") */
.diff-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.diff-modal-backdrop.open {
    display: flex !important;
    opacity: 1 !important;
}

.diff-modal-container {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1.5px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.diff-modal-header {
    padding: 22px 24px 18px;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.diff-modal-eyebrow {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6701E6;
    display: block;
    margin-bottom: 2px;
}

.diff-modal-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
}

.diff-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #F1F5F9;
    border: none;
    color: #64748B;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.diff-modal-close:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.diff-modal-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.diff-plan-card {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    padding: 18px 20px;
    position: relative;
}

.diff-plan-card.featured {
    background: #FBF8FF;
    border-color: #6701E6;
}

.diff-plan-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.diff-plan-title h4 {
    font-size: 15.5px;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
}

.diff-plan-desc {
    font-size: 12.5px;
    color: #64748B;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.diff-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.diff-metric-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 10px 12px;
    border-radius: 10px;
}

.diff-plan-card.featured .diff-metric-item {
    background: #FFFFFF;
    border-color: #EDE9FE;
}

.diff-metric-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.diff-metric-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.diff-metric-content {
    display: flex;
    flex-direction: column;
}

.diff-metric-label {
    font-family: var(--font-heading) !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #475569;
    margin-bottom: 2px;
}

.diff-metric-val {
    font-size: 12px;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.35;
}

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

.diff-modal-footer {
    padding: 14px 24px 20px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    justify-content: flex-end;
}

.btn-diff-modal-close {
    background: #6701E6;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-diff-modal-close:hover {
    background: #5200BD;
}

@media (max-width: 600px) {
    .diff-plan-checklist {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================
   SEÇÃO SHOWCASE SENJA: RASTREIO REAL DO PEDIDO (TRACK.PHP - DESKTOP + IPHONE)
   ============================================================== */
.senja-showcase-section {
    padding: 80px 0 90px;
    background: #F8FAFC;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.senja-showcase-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 36px;
    position: relative;
}

.senja-showcase-stars {
    display: inline-flex;
    gap: 4px;
    color: #7C3AED;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.senja-showcase-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.senja-showcase-subtitle {
    font-size: 1.05rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.senja-showcase-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.senja-showcase-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
}

.senja-showcase-pill i {
    color: #10B981;
    font-size: 1rem;
}

/* Container do Showcase */
.track-showcase-container {
    position: relative;
    max-width: 920px;
    margin: 36px auto 0;
}

/* 1. Navegador Desktop: Visível apenas no Desktop */
.track-desktop-browser {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.track-browser-topbar {
    background: #F1F5F9;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #E2E8F0;
}

.track-browser-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.track-browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.track-browser-dot--red { background: #EF4444; }
.track-browser-dot--yellow { background: #F59E0B; }
.track-browser-dot--green { background: #10B981; }

.track-browser-url {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 440px;
    margin: 0 auto;
    font-family: monospace;
}

/* Interior Desktop do Rastreio (Exata página track.php) */
.track-mockup-inner {
    background: #FAF8FF;
}

.track-mockup-hero {
    background: linear-gradient(135deg, #1E0038 0%, #130026 100%);
    padding: 36px 24px 44px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

.track-mockup-hero .internal-hero-script-tag {
    font-family: var(--font-script);
    font-size: 1.25rem;
    color: #A46AF0 !important;
    display: block;
    margin-bottom: 6px;
}

.track-mockup-hero h3 {
    font-family: var(--font-heading) !important;
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.track-mockup-hero p {
    font-size: 0.925rem;
    color: #E9D5FF;
    max-width: 520px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.track-mockup-search-form {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: var(--radius-full);
    padding: 6px 8px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.track-mockup-search-form input {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    width: 100%;
    background: transparent;
    padding: 0 10px;
}

.track-mockup-search-form button {
    background: var(--primary-gradient);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.track-mockup-body {
    padding: 28px 24px;
    max-width: 780px;
    margin: -18px auto 0;
    position: relative;
    z-index: 2;
}

/* ==============================================================
   ESTILOS DO CARD DE RASTREAMENTO OFICIAL (ORDER-RESULT-CARD)
   ============================================================== */
.order-result-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.order-result-header {
    background: #1E1B4B;
    color: #FFFFFF;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-status-badge {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.order-status-badge.status-paid { 
    background: #ECFDF5; 
    color: #059669; 
}
.order-status-badge.status-pending { 
    background: #F5F3FF; 
    color: var(--primary); 
}
.order-status-badge.status-completed { 
    background: #ECFDF5; 
    color: #059669; 
}

/* Progress Steps com Setas Indicadoras */
.order-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
}

.progress-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.progress-step__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    font-size: 13px;
    margin-bottom: 22px;
    padding: 0 6px;
    transition: color 0.3s ease;
}

.progress-step__arrow.completed {
    color: #10B981;
}

.progress-step__arrow.active {
    color: #6701E6;
}

.progress-step__dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin: 0 auto 8px auto;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active .progress-step__dot {
    background: #6701E6;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(103, 1, 230, 0.35);
}

.progress-step.completed .progress-step__dot {
    background: #10B981;
    color: #FFFFFF;
}

.progress-step__label {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    display: block;
    white-space: nowrap;
}

.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 24px;
    gap: 16px;
    font-size: 14px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-info-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-info-value {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
}

/* ==============================================================
   2. MOCKUP IPHONE (EXIBIDO APENAS NO MOBILE)
   ============================================================== */
.track-mobile-iphone {
    display: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 4px solid #475569;
    border-radius: 40px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.track-iphone-island {
    width: 80px;
    height: 14px;
    background: #475569;
    border-radius: 20px;
    margin: 8px auto 6px;
}

.track-iphone-screen {
    background: #FAF8FF;
    overflow: hidden;
    font-size: 12px;
}

.track-iphone-hero {
    background: linear-gradient(135deg, #1E0038 0%, #130026 100%);
    padding: 20px 16px 26px;
    text-align: center;
    color: #FFFFFF;
}

.track-iphone-hero h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 4px 0 6px 0;
    color: #FFFFFF;
}

.track-iphone-hero p {
    font-size: 11px;
    color: #E9D5FF;
    margin: 0 0 14px 0;
    line-height: 1.4;
}

.track-iphone-search {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 5px 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.track-iphone-search input {
    border: none;
    outline: none;
    font-size: 12px;
    font-weight: 600;
    color: #0F172A;
    width: 100%;
    background: transparent;
    padding: 0 8px;
}

.track-iphone-search button {
    background: var(--primary-gradient);
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.track-iphone-body {
    padding: 16px 12px 20px;
    margin-top: -12px;
    position: relative;
    z-index: 2;
}

.track-iphone-order-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.track-iphone-order-header {
    background: #1E1B4B;
    color: #FFFFFF;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.track-iphone-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 10px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.track-iphone-info {
    padding: 16px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==============================================================
   RESPONSIVIDADE (DESKTOP MOSTRA BROWSER / MOBILE MOSTRA IPHONE)
   ============================================================== */
@media (max-width: 768px) {
    .track-desktop-browser {
        display: none !important;
    }
    
    .track-mobile-iphone {
        display: block !important;
    }
}

/* ==============================================================
   12. AUTORIDADE INTERATIVA — ESTILO EDITORIAL DIRETO NO CANVAS
   ============================================================== */
.authority-stat-section {
    padding: 80px 0;
    background: #FAFAFC;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.editorial-interactive-wrap {
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.editorial-line {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--slate-900);
    letter-spacing: -0.025em;
    margin: 0;
    transition: opacity 0.25s ease;
}

.editorial-interactive-wrap:hover .editorial-line:not(:hover) {
    opacity: 0.6;
}

.editorial-line--highlight {
    color: var(--slate-800);
}

.editorial-stat-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #FFFFFF;
    font-weight: 800;
    padding: 0.08em 0.4em;
    border-radius: var(--radius-full);
    font-size: 0.95em;
    line-height: 1;
    vertical-align: 0.05em;
    margin-right: 0.15em;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.emoji-gif {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: -5px;
    object-fit: contain;
    margin: 0 3px;
    pointer-events: none;
    user-select: none;
}

/* Pílulas de Ícones Inline Proporcionais e Alinhadas */
.inline-icon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25em;
    height: 1.25em;
    border-radius: 7px;
    vertical-align: -0.15em;
    margin: 0 0.1em;
    font-size: 0.62em;
    line-height: 1;
    background: #F1F5F9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.inline-icon-pill:hover {
    transform: translateY(-2px) scale(1.12);
    box-shadow: 0 6px 14px -2px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

/* Tooltip Micro-Interativo */
.inline-icon-pill::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--slate-950);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    z-index: 20;
}

.inline-icon-pill::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: var(--slate-950) transparent transparent transparent;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
}

.inline-icon-pill:hover::after,
.inline-icon-pill:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Variações de Cores Temáticas para Cada Ícone */
.inline-icon-pill.icon-shield {
    background: #ECFDF5;
    color: #059669;
    border-color: #A7F3D0;
}

.inline-icon-pill.icon-users {
    background: #F5F3FF;
    color: #7C3AED;
    border-color: #DDD6FE;
}

.inline-icon-pill.icon-insta {
    background: linear-gradient(135deg, #FFF1F2 0%, #F5F3FF 100%);
    color: #E1306C;
    border-color: #FECDD3;
}

.inline-icon-pill.icon-eye {
    background: #ECFEFF;
    color: #0891B2;
    border-color: #BAE6FD;
}

.inline-icon-pill.icon-handshake {
    background: #EEF2FF;
    color: #4F46E5;
    border-color: #C7D2FE;
}

.inline-icon-pill.icon-direct {
    background: #EFF6FF;
    color: #2563EB;
    border-color: #BFDBFE;
}

.inline-icon-pill.icon-close {
    background: #FFF1F2;
    color: #E11D48;
    border-color: #FECDD3;
}

.inline-icon-pill.icon-sparkles {
    background: #FEF3C7;
    color: #D97706;
    border-color: #FDE68A;
}

.inline-icon-pill.icon-money {
    background: #ECFDF5;
    color: #10B981;
    border-color: #A7F3D0;
}

.inline-icon-pill.icon-bolt {
    background: #F5F3FF;
    color: #7C3AED;
    border-color: #DDD6FE;
}

.inline-icon-pill.icon-br {
    background: #ECFDF5;
    color: #047857;
    border-color: #A7F3D0;
}

@media (max-width: 640px) {
    .editorial-interactive-card {
        padding: 32px 20px;
    }
    .editorial-line {
        font-size: 1.15rem;
        line-height: 1.6;
    }
    .inline-icon-pill {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        vertical-align: -6px;
        margin: 0 2px;
    }
    .editorial-stat-pill {
        font-size: 1.1rem;
        padding: 2px 10px;
    }
}

.authority-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.authority-compare-card {
    border-radius: var(--radius-2xl);
    padding: 28px;
    border: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.authority-compare-card:hover {
    transform: translateY(-4px);
}

.authority-compare-card--bad {
    background: #FFFFFF;
    border-color: #FEE2E2;
    box-shadow: 0 4px 20px -2px rgba(239, 68, 68, 0.06);
}

.authority-compare-card--good {
    background: #FFFFFF;
    border: 2px solid #C4B5FD;
    box-shadow: 0 8px 30px -4px rgba(124, 58, 237, 0.12);
}

.compare-card-gif-wrap {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--slate-100);
}

.compare-card-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.authority-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    margin: 4px 0 8px;
}

.authority-compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.authority-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
}

.authority-compare-item--bad {
    color: var(--slate-700);
}

.authority-compare-item--bad i {
    color: #EF4444;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.authority-compare-item--good {
    color: var(--slate-800);
}

.authority-compare-item--good i {
    color: #10B981;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==============================================================
   SEÇÃO ROXA COM WATERMARK SVGS (ESTILO SENJA — IMAGEM 2)
   ============================================================== */
.senja-purple-cta-section {
    position: relative;
    background: #673DE6;
    padding: 96px 0;
    color: #FFFFFF;
    overflow: hidden;
    border-radius: 0;
}

.purple-watermark-quotes {
    position: absolute;
    top: 20px;
    left: 24px;
    width: 140px;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.purple-watermark-stamp {
    position: absolute;
    bottom: 40px;
    right: 48px;
    pointer-events: none;
    z-index: 1;
    animation: rotateSlow 25s linear infinite;
}

.purple-stamp-svg {
    width: 110px;
    height: 110px;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.purple-watermark-heart-bg {
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 340px;
    height: 340px;
    pointer-events: none;
    z-index: 0;
}

.senja-purple-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.senja-purple-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(2.1rem, 4vw, 3.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.2;
    color: #FFFFFF !important;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.senja-purple-subtitle {
    font-size: 1.125rem;
    line-height: 1.65;
    color: #E9D5FF;
    max-width: 680px;
    margin-bottom: 32px;
}

.senja-purple-checklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}

.senja-check-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.senja-check-item i {
    color: #34D399;
    font-size: 1.1rem;
}

.senja-purple-inner .btn-cta-ring {
    margin-bottom: 32px;
}

.senja-purple-avatars-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.senja-avatar-stack {
    display: flex;
    align-items: center;
}

.senja-avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #673DE6;
    margin-left: -8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.senja-avatar-stack img:first-child {
    margin-left: 0;
}

.senja-avatars-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #DDD6FE;
    font-weight: 600;
}

.senja-stars-mini {
    display: inline-flex;
    gap: 2px;
    color: #FBBF24;
}

/* ==============================================================
   DOODLES / ÍCONES INCLINADOS NO FINAL DO FOOTER (IMAGEM 3)
   ============================================================== */
.footer-doodles-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 38px 0 16px;
    margin-top: 36px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
    width: 100%;
}

.footer-doodle-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-spring);
    cursor: pointer;
}

.footer-doodle-item:hover {
    transform: scale(1.2) rotate(0deg) !important;
}

.footer-doodle-item svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(2px 4px 0px rgba(124, 58, 237, 0.45));
}

@media (max-width: 768px) {
    .footer-doodles-strip {
        gap: 12px;
        justify-content: space-around;
        padding: 24px 0;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-doodle-item svg {
        width: 44px;
        height: 44px;
    }
}

/* ==============================================================
   STICKY MOBILE QUICK-BUY BOTTOM SHEET (IMAGEM 3)
   ============================================================== */
.mobile-sticky-quickbuy {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-quickbuy {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        background: #FFFFFF;
        border-top: 1.5px solid #E2E8F0;
        border-radius: 20px 20px 0 0;
        padding: 14px 16px 16px;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.14);
        transform: translateY(120%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        isolation: isolate;
    }

    .mobile-sticky-quickbuy.is-active {
        transform: translateY(0);
    }

    .mobile-sticky-close {
        position: absolute;
        top: 6px;
        right: 10px;
        background: transparent;
        border: none;
        font-size: 20px;
        color: #94A3B8;
        cursor: pointer;
        line-height: 1;
        padding: 4px 8px;
    }

    .mobile-sticky-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 10px;
    }

    .mobile-sticky-options {
        display: flex;
        align-items: center;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-right: 4px;
    }

    .mobile-sticky-options::-webkit-scrollbar {
        display: none;
    }

    .sticky-option-chip {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 8px;
        border-radius: 8px;
        background: #F8FAFC;
        border: 1.5px solid #E2E8F0;
        font-size: 11px;
        font-weight: 500;
        color: #475569;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.2s ease;
    }

    .sticky-option-chip.active {
        background: #F5F3FF;
        border-color: #6701E6;
        color: #6701E6;
        font-weight: 700;
    }

    .chip-checkbox {
        width: 13px;
        height: 13px;
        border-radius: 3.5px;
        border: 1.5px solid #CBD5E1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 8px;
        color: transparent;
        background: #FFFFFF;
        transition: all 0.2s ease;
    }

    .sticky-option-chip.active .chip-checkbox {
        background: #6701E6;
        border-color: #6701E6;
        color: #FFFFFF;
    }

    .mobile-sticky-price-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        line-height: 1.15;
        flex-shrink: 0;
    }

    .mobile-sticky-price {
        font-family: var(--font-heading) !important;
        font-size: 16px;
        font-weight: 800;
        color: #0F172A;
    }

    .mobile-sticky-old-price {
        font-size: 11px;
        color: #94A3B8;
        text-decoration: line-through;
    }

    .mobile-sticky-action-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }

    .mobile-sticky-stepper {
        display: flex;
        align-items: center;
        background: #F1F5F9;
        border-radius: 12px;
        padding: 3px;
        flex: 1;
        max-width: 145px;
        justify-content: space-between;
    }

    .stepper-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        color: #0F172A;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.15s ease;
    }

    .stepper-btn:active {
        transform: scale(0.92);
        background: #E2E8F0;
    }

    .stepper-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.1;
        padding: 0 4px;
    }

    .stepper-center strong {
        font-family: var(--font-heading) !important;
        font-size: 14px;
        font-weight: 800;
        color: #0F172A;
    }

    .stepper-center span {
        font-size: 9px;
        color: #64748B;
        font-weight: 500;
    }

    .btn-sticky-buy {
        flex: 1.5;
        height: 42px;
        background: linear-gradient(180deg, #811BFE 0%, #6701E6 100%);
        color: #FFFFFF;
        border: none;
        border-radius: 12px;
        font-family: var(--font-heading) !important;
        font-size: 14px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        box-shadow: 0 4px 14px rgba(103, 1, 230, 0.35);
        transition: all 0.2s ease;
    }

    .btn-sticky-buy:active {
        transform: scale(0.98);
    }

    .mobile-sticky-rating-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 10.5px;
        color: #64748B;
    }

    .mobile-sticky-stars {
        display: flex;
        align-items: center;
        gap: 2px;
    }
}

/* ==============================================================
   13. COMPARATIVO DIRETO (SEGUIDORES.COM VS OUTROS SITES)
   ============================================================== */
.comparison-clean-section {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.clean-compare-card {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}

.clean-compare-card--recommended {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow-primary);
}

.clean-compare-card--competitors {
    border: 1px solid var(--slate-200);
    opacity: 0.85;
}

.clean-compare-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--slate-100);
}

.clean-compare-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.clean-compare-badge--rec {
    background: var(--primary-soft);
    color: var(--primary);
}

.clean-compare-badge--comp {
    background: var(--slate-100);
    color: var(--slate-600);
}

.clean-compare-title {
    font-size: 1.45rem;
}

.clean-compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.clean-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.clean-compare-item i.fa-circle-check {
    color: var(--emerald);
    font-size: 1.15rem;
    margin-top: 2px;
}

.clean-compare-item i.fa-circle-xmark {
    color: var(--rose);
    font-size: 1.15rem;
    margin-top: 2px;
}

/* ==============================================================
   14. DEPOIMENTOS EM VÍDEO (STORIES / REELS)
   ============================================================== */
.testimonials-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.story-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: var(--slate-900);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.story-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.story-card img.bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-card:hover img.bg {
    transform: scale(1.06);
}

.story-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-card__play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin: 0 auto;
    transition: var(--transition-fast);
}

.story-card:hover .story-card__play {
    background: var(--primary);
    transform: scale(1.1);
}

.story-card__author {
    color: #FFFFFF;
}

.story-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
}

.story-card__handle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

/* Badges de Louros e Autoridade (Depoimentos) */
.testimonials-laurel-badges-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 56px;
    margin-top: 48px;
    padding: 12px 0 6px 0;
}

.laurel-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0F1119;
}

.laurel-branch {
    height: 48px;
    width: auto;
    flex-shrink: 0;
    color: #0F1119;
}

.laurel-branch-left {
    transform: scaleX(-1);
}

.laurel-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.laurel-badge-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.laurel-badge-stars svg {
    width: 15px;
    height: 14px;
    display: block;
}

.laurel-badge-title {
    font-family: var(--font-heading, inherit);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0F1119;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .testimonials-laurel-badges-container {
        gap: 28px;
        margin-top: 32px;
    }
    
    .laurel-badge-item {
        gap: 10px;
    }
    
    .laurel-branch {
        height: 38px;
    }
    
    .laurel-badge-stars svg {
        width: 13px;
        height: 12px;
    }
    
    .laurel-badge-title {
        font-size: 10px;
        letter-spacing: 0.08em;
    }
}

/* ==============================================================
   15. GARANTIA BLINDADA DE 30 DIAS (RESPONSIVO E CLEAN)
   ============================================================== */
.clean-guarantee-section {
    padding: 64px 0;
    background: #FFFFFF;
}

.clean-guarantee-card {
    background: linear-gradient(135deg, var(--slate-50) 0%, rgba(245, 243, 255, 0.6) 100%);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-2xl);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: var(--shadow-md);
}

.clean-guarantee-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
    flex-shrink: 0;
}

.clean-guarantee-body h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.clean-guarantee-body p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 18px;
}

.clean-guarantee-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.clean-guarantee-pill {
    background: #FFFFFF;
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==============================================================
   16. FAQ ACCORDION
   ============================================================== */
/* ==============================================================
   16. FAQ ACCORDION (ESTILO SENJA CLEAN CARD — IMAGEM 2)
   ============================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #F1F5F9;
    transition: background-color 0.2s ease;
}

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

.faq-item:hover {
    background-color: #FAFAFC;
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #334155;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--slate-950);
}

.faq-icon-toggle {
    font-size: 1.15rem;
    color: #94A3B8;
    font-weight: 400;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.open .faq-question {
    font-weight: 600;
    color: var(--slate-950);
    padding-bottom: 12px;
}

.faq-item.open .faq-icon-toggle {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 28px 24px 64px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ==============================================================
   17. DESTAQUES DO BLOG & ARTIGOS
   ============================================================== */
.blog-card {
    background: #FFFFFF;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-2xl);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.blog-category-badge {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.blog-card__title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--slate-900);
}

.blog-card__desc {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--slate-500);
    border-top: 1px solid var(--slate-100);
    padding-top: 14px;
}

/* ==============================================================
   18. FOOTER PRINCIPAL (THEME BRANCO CLEAN / HIGH CONTRAST)
   ============================================================== */
.site-master-footer {
    width: 100%;
    background: #FFFFFF;
    color: var(--slate-800);
    padding: 64px 0 32px;
    border-top: 1px solid var(--slate-200);
}

.master-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand-desc {
    color: var(--slate-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-security-badges span {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.master-footer-heading {
    color: var(--slate-950);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.master-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.master-footer-links a {
    color: var(--slate-600);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
}

.master-footer-links a:hover {
    color: var(--primary);
    transform: translateX(2px);
}

.footer-link-badge {
    background: #10B981;
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.footer-newsletter-desc {
    color: var(--slate-600);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #FFFFFF !important;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: var(--transition-fast);
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.footer-newsletter-box {
    display: flex;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-full);
    padding: 4px;
}

.footer-newsletter-input {
    background: transparent;
    border: none;
    color: var(--slate-900);
    padding: 8px 14px;
    font-size: 0.85rem;
    flex: 1;
    outline: none;
}

.footer-newsletter-input::placeholder {
    color: var(--slate-400);
}

.footer-newsletter-btn {
    background: var(--primary-gradient);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-newsletter-btn:hover {
    box-shadow: var(--shadow-glow-primary);
}

.master-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--slate-100);
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.footer-copyright-row a {
    color: var(--slate-500);
    margin-left: 14px;
    text-decoration: none;
}

.footer-copyright-row a:hover {
    color: var(--primary);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    color: var(--slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--slate-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-social-icons a:hover {
    background: var(--primary);
    color: #FFFFFF;
}

/* ==============================================================
   19. MODAL DE CHECKOUT
   ============================================================== */
.checkout-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.checkout-modal {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    width: 100%;
    max-width: 460px;
    padding: 32px 28px;
    box-shadow: var(--shadow-xl);
    position: relative;
    text-align: center;
    animation: modalPop 0.3s var(--ease-spring);
}

@keyframes modalPop {
    0% { transform: scale(0.95) translateY(10px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.checkout-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--slate-100);
    border: none;
    color: var(--slate-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.checkout-modal__close:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

.checkout-modal__icon-top {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.checkout-btn-pay {
    width: 100%;
    background: var(--primary-gradient);
    color: #FFFFFF;
    padding: 14px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-glow-primary);
    transition: var(--transition-base);
}

.checkout-btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.45);
}

.checkout-btn-pay:active {
    transform: translateY(0px) scale(0.98);
}

/* ==============================================================
   20. TOAST SOCIAL PROOF & WHATSAPP WIDGET
   ============================================================== */
#toast-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #FFFFFF;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 12px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9998;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s var(--ease-spring), opacity 0.4s ease;
    pointer-events: none;
}

#toast-notification.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.toast-text-row {
    font-size: 0.8125rem;
    color: var(--slate-700);
    line-height: 1.4;
}

.toast-text-row strong {
    color: var(--slate-900);
}

.toast-time {
    font-size: 0.75rem;
    color: var(--emerald-dark);
    font-weight: 700;
}

.whatsapp-floating-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: var(--transition-base);
    text-decoration: none;
}

.whatsapp-floating-widget:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ==============================================================
   RESPONSIVIDADE MASTER (TABLET & MOBILE)
   ============================================================== */
@media (max-width: 992px) {
    .header-nav-desktop {
        display: none;
    }
    
    .btn-header-menu {
        display: inline-flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-guarantees {
        justify-content: center;
    }
    
    .package-card-wrapper {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .slider-nav-btn--prev { left: -10px; }
    .slider-nav-btn--next { right: -10px; }
    
    .hostinger-widgets-grid,
    .steps-cards-grid,
    .stories-grid,
    .hostinger-usecases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bento-pillars-grid,
    .authority-compare-grid,
    .comparison-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hostinger-dark-stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .hostinger-dark-stat-col:not(:last-child)::after {
        display: none;
    }
    
    .hostinger-dark-stat-col:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 24px;
    }
    
    .master-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    
    .clean-guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .clean-guarantee-pills {
        justify-content: center;
    }
    
    .hostinger-usecases-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        height: 64px;
    }
    
    .header-brand {
        font-size: 1.1rem;
    }
    
    .header-brand__spark {
        width: 28px;
        height: 28px;
    }
    
    .btn-header-track {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    
    .btn-header-track span {
        display: none;
    }
    
    .btn-header-menu {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    
    .hero-section {
        padding: 36px 0 56px;
    }
    
    /* Mobile: 1 Card por Vez com Scroll Snap */
    .packages-slider-container {
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 12px 4px;
    }
    
    .package-card-wrapper {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center;
    }
    
    .slider-nav-btn {
        display: none; /* Em mobile o usuário desliza com touch e usa os line dots */
    }
    
    .packages-section,
    .hostinger-widgets-section,
    .steps-section,
    .why-choose-section,
    .hostinger-usecases-section,
    .authority-stat-section,
    .comparison-clean-section,
    .testimonials-section,
    .faq-section {
        padding: 52px 0;
    }
    
    /* Ajustes Mobile para a Barra Trustpilot (Imagem 1 do usuário) */
    .hostinger-trust-bar {
        border-radius: var(--radius-lg);
        padding: 12px 16px;
        gap: 8px;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
    
    /* Ajustes Mobile para o Card de Garantia (Imagem 2 do usuário) */
    .clean-guarantee-card {
        padding: 28px 20px;
        gap: 20px;
    }
    
    .clean-guarantee-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .clean-guarantee-pills {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .clean-guarantee-pill {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .master-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .master-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==============================================================
   19. PÁGINAS INTERNAS DESIGN SYSTEM (TRACK, BLOG, ARTIGO, SERVIÇO)
   ============================================================== */

/* --- BLOG & ARTIGOS --- */
.blog-header-section {
    background: #FFFFFF;
    padding: 56px 0 32px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.blog-search-box {
    max-width: 580px;
    margin: 24px auto 0 auto;
    display: flex;
    gap: 10px;
}

.blog-search-input {
    flex: 1;
    height: 48px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0 20px;
    font-size: 14.5px;
    font-weight: 500;
    outline: none;
    background: #FFFFFF;
    color: var(--slate-900);
    transition: var(--transition-fast);
}

.blog-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 36px 0;
}

.cat-pill {
    background: #FFFFFF;
    border: 1px solid var(--border);
    color: var(--slate-600);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.cat-pill.active, .cat-pill:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.blog-article-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

/* --- LEITOR DE ARTIGO --- */
.article-container {
    max-width: 820px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
}

.article-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 24px;
}

.article-breadcrumbs a {
    color: var(--slate-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.article-breadcrumbs a:hover {
    color: var(--primary);
}

.article-header {
    margin-bottom: 32px;
}

.article-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500 !important;
    line-height: 1.25;
    color: var(--slate-900);
    margin: 14px 0;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 500;
}

.article-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-700);
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 400 !important;
    color: var(--slate-900);
    margin: 36px 0 16px 0;
    letter-spacing: -0.01em;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--slate-900);
    margin: 28px 0 12px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 0 0 24px 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    border-left: 4px solid var(--primary);
    background: var(--primary-soft);
    padding: 18px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--slate-800);
}

/* --- RASTREIO DE PEDIDOS (TRACK.PHP) --- */
.track-page-container {
    max-width: 820px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
}

.track-search-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.track-input-group {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.track-input {
    flex: 1;
    height: 52px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0 22px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: var(--transition-fast);
}

.track-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.btn-track-submit {
    background: var(--primary-gradient);
    color: #FFFFFF;
    padding: 0 30px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow-primary);
    transition: var(--transition-fast);
    animation: cta-pulse-glow 2.5s infinite ease-in-out;
}

.btn-track-submit:hover {
    transform: translateY(-2px);
}

