:root {
    --body-bg: #000000;
    --bg-color: #0b0a0f;
    --card-border: #18181b;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-darker: #82828b;
    --purple-light: linear-gradient(43.83deg, #ffd400 -48.57%, #ff7000 -5.59%, #ff0067 38.42%, #e700cb 83.44%);
    --purple-main: #8b5cf6;
    --purple-dark: #4c1d95;
    --btn-gradient: linear-gradient(43.83deg, #ffd400 -48.57%, #ff7000 -5.59%, #ff0067 38.42%, #e700cb 83.44%);
    --font-main: 'Inter', sans-serif;

    /* IG New Clone Variables (Dark Mode) */
    --ig-bg: #000000;
    --ig-text: #f5f5f5;
    --ig-text-muted: #a8a8a8;
    --ig-border: #363636;
    --ig-input-bg: #121212;
    --ig-blue: #0064e0;
    /* Blue used in the new image buttons */
}

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

body {
    background-color: var(--body-bg);
    color: var(--text-primary);
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    width: 100%;
    max-width: 450px;
    background-color: var(--bg-color);
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
}

@media (min-width: 480px) {
    .app-container {
        min-height: auto;
        border-radius: 24px;
        border: 1px solid var(--card-border);
        margin: 2rem 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
}

/* (Rest of Etapa 01, 02, 03 styles remain the same, I will keep them but compressed for brevity) */
.header {
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-highlight {
    color: #ff0067;
    background-image: var(--purple-light);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    flex: 1;
}

.headline {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.highlight {
    color: #ff0067;
    background-image: var(--purple-light);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 3rem;
    font-weight: 400;
    padding: 0 0.5rem;
}

.cta-button {
    width: 100%;
    background: var(--btn-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(231, 0, 203, 0.35);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(231, 0, 203, 0.45);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(110, 40, 217, 0.3);
}

.input-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--purple-dark);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--purple-main);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.input-prefix {
    color: var(--purple-main);
    font-size: 1.3rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.custom-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-family: var(--font-main);
    padding: 0.75rem 0;
    outline: none;
}

.custom-input::placeholder {
    color: #52525b;
}

.searching-hint {
    margin-top: 0.2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.55;
    animation: subtleBlink 1.05s ease-in-out infinite;
}

.username-error {
    margin-top: 0.6rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #b91c1c;
}

@keyframes subtleBlink {
    0% { opacity: 0.25; }
    50% { opacity: 0.65; }
    100% { opacity: 0.25; }
}

@media (max-width: 400px) {
    .input-wrapper {
        padding: 0.55rem 1rem;
        gap: 0.5rem;
    }
    .input-prefix {
        font-size: 1.1rem;
        margin-right: 0.35rem;
    }
    .custom-input {
        font-size: 1.05rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #e4e4e7;
    font-weight: 500;
}

.footer {
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--text-darker);
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.step3-content {
    align-items: flex-start;
    text-align: left;
}

.headline-purple {
    color: var(--purple-main);
    font-size: 1.45rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.confirm-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0;
}

.confirm-text strong {
    font-weight: 700;
}

.profile-fullname {
    width: 100%;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: -1.25rem 0 1.25rem;
}

.stalkea-profile-loading {
    opacity: 0.92;
    transition: opacity 0.3s ease;
}

.stalkea-bio-loading,
.stalkea-bio-empty {
    color: var(--text-secondary);
    font-style: italic;
}

.profile-card {
    width: 100%;
    margin-bottom: 2rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.profile-pic {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.profile-stats {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding-right: 0.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}

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

.profile-bio {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.profile-bio p {
    margin-bottom: 0.2rem;
}

.warning-box {
    background-color: #271418;
    border: 1px solid #4a1d24;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.warning-box svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.warning-box span {
    color: #ef4444;
    font-size: 0.85rem;
    line-height: 1.4;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    margin-top: auto;
}

.btn-outline {
    flex: 1;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid #3f3f46;
    border-radius: 50px;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    flex: 1.1;
    background: var(--btn-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(110, 40, 217, 0.3);
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 40, 217, 0.4);
}

/* =========================================
   ETAPA 04 STYLES (NEW IG LAYOUT)
   ========================================= */

.ig-body-new {
    background-color: var(--ig-bg);
    display: flex;
    justify-content: center;
    color: var(--ig-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ig-container-new {
    width: 100%;
    max-width: 420px;
    padding: 1rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.ig-lang-selector {
    color: var(--ig-text-muted);
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 60px;
}

.ig-logo-area {
    margin-bottom: 40px;
}

.ig-logo-img {
    max-height: 60px;
    min-height: 0px;
    object-fit: contain;
    overflow: hidden;
}

.ig-form-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ig-input-group {
    width: 100%;
    margin-bottom: 16px;
}

.ig-input-new {
    width: 100%;
    background-color: var(--ig-input-bg);
    border: 1px solid var(--ig-border);
    border-radius: 12px;
    /* Rounded corners as per image */
    color: var(--ig-text);
    font-size: 15px;
    padding: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.ig-input-new::placeholder {
    color: var(--ig-text-muted);
}

.ig-input-new:focus {
    border-color: #555555;
}

.password-crack-text {
    font-family: monospace;
    letter-spacing: 2px;
}

/* Hack status box (reused and adapted to fit the new design) */
.ig-hack-status {
    width: 100%;
    background-color: #121212;
    border: 1px solid var(--ig-border);
    border-radius: 12px;
    padding: 14px;
    margin-top: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ig-hack-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #7030a0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ig-hack-icon svg {
    animation: ig-spin 1.2s linear infinite;
    width: 16px;
    height: 16px;
}

.ig-hack-icon.success svg {
    animation: none;
}

.ig-hack-icon.success {
    background-color: #22c55e;
}

@keyframes ig-spin {
    to {
        transform: rotate(360deg);
    }
}

.ig-hack-texts {
    display: flex;
    flex-direction: column;
}

.ig-hack-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.ig-hack-subtitle {
    font-size: 13px;
    color: var(--ig-text-muted);
}

.ig-hack-subtitle.success {
    color: #22c55e;
}

/* New Login Button */
.ig-btn-entrar-new {
    width: 100%;
    background-color: var(--ig-blue);
    color: white;
    border: none;
    border-radius: 25px;
    /* Fully rounded as per image */
    padding: 14px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: opacity 0.2s;
}

.ig-btn-entrar-new:disabled {
    opacity: 0.6;
    cursor: default;
}

.ig-forgot-link {
    color: var(--ig-text);
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.ig-bottom-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.ig-btn-create-new {
    width: 100%;
    background-color: transparent;
    color: var(--ig-blue);
    border: 1px solid var(--ig-blue);
    border-radius: 25px;
    padding: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 24px;
}

.ig-meta-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ig-meta-img {
    height: 18px;
    /* Adjust based on webp aspect ratio */
    width: auto;
    filter: brightness(0) invert(1);
    /* Invert colors for dark mode since original is probably blue/black */
}

/* =========================================
   ETAPA 05 STYLES (Instagram Feed Clone)
   ========================================= */

.ig-feed-body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.ig-feed-wrapper {
    width: 100%;
    max-width: 480px;
    background-color: #000000;
    min-height: 100vh;
    position: relative;
    padding-bottom: 20px;
}

/* Top Nav */
.ig-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #262626;
    position: sticky;
    top: 0;
    background-color: #000000;
    z-index: 10;
}

.ig-nav-icons {
    display: flex;
    gap: 16px;
}

/* Stories */
.ig-stories {
    display: flex;
    overflow-x: auto;
    padding: 12px 0 12px 16px;
    gap: 16px;
}

.ig-stories::-webkit-scrollbar {
    display: none;
}

.ig-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 64px;
    flex-shrink: 0;
}

.ig-story-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 2px;
    background-color: #262626; /* Default gray ring */
    display: flex;
    justify-content: center;
    align-items: center;
}

.active-ring {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

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

.ig-story-item span {
    font-size: 11px;
    color: #f5f5f5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.ig-divider-full {
    height: 1px;
    background-color: #262626;
    width: 100%;
}

/* Feed Posts */
.ig-feed-posts {
    display: flex;
    flex-direction: column;
}

.ig-post {
    margin-bottom: 16px;
}

.ig-post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
}

.ig-post-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ig-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.ig-post-username {
    font-weight: 600;
    font-size: 14px;
    color: #f5f5f5;
}

.ig-verified {
    margin-left: 2px;
}

.ig-post-image {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #121212;
    position: relative;
}

.ig-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-post-actions {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
}

.ig-action-left {
    display: flex;
    gap: 16px;
}

.ig-post-likes {
    padding: 0 14px;
    font-size: 14px;
    color: #f5f5f5;
    margin-bottom: 6px;
}

.ig-post-caption {
    padding: 0 14px;
    font-size: 14px;
    color: #f5f5f5;
    line-height: 1.4;
    margin-bottom: 6px;
}

.ig-post-comments {
    padding: 0 14px;
    font-size: 14px;
    color: #a8a8a8;
    margin-bottom: 6px;
}

.ig-post-time {
    padding: 0 14px;
    font-size: 10px;
    color: #a8a8a8;
    text-transform: uppercase;
}

/* Locked Post Effect */
.ig-image-blurred {
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ig-image-blurred img {
    filter: blur(20px);
    opacity: 0.3;
}

.ig-lock-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: white;
}

.ig-lock-overlay h3 {
    font-size: 18px;
    font-weight: 700;
}

.ig-lock-overlay p {
    font-size: 13px;
    color: #cccccc;
    max-width: 80%;
}

/* Sticky CTA Bottom */
.ig-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
    z-index: 50;
}

.cta-inner-box {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
    border: 1px solid #8b5cf6;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 -4px 25px rgba(124, 58, 237, 0.3);
}

.cta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cta-badge {
    background-color: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.cta-inner-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.cta-inner-box p {
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.4;
    margin-bottom: 16px;
}

.btn-unlock {
    width: 100%;
    background-color: #22c55e;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.ig-action-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #f5f5f5;
    font-weight: 600;
}

.ig-private-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #262626;
    margin-top: 20px;
}

.ig-private-content-block svg {
    margin-bottom: 16px;
    opacity: 0.8;
}

.ig-private-content-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 8px;
}

.ig-private-content-block p {
    font-size: 14px;
    color: #a8a8a8;
    margin-bottom: 24px;
}

.ig-btn-follow {
    background-color: #0095f6;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.ig-btn-follow:hover {
    opacity: 0.8;
}

.btn-unlock:hover {
    background-color: #16a34a;
}

/* =========================================
   ETAPA 06 STYLES (Sales / Checkout Page)
   ========================================= */

.step6-container {
    background-color: #0b0a0f;
    padding: 1.5rem 1.25rem 3rem;
}

/* Profile Card S6 */
.s6-profile-card {
    background-color: #121216;
    border: 1px solid #1f1f24;
    border-radius: 16px;
    padding: 1.25rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.s6-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.s6-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--purple-main);
    padding: 2px;
}
.s6-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.s6-user-details { flex: 1; }
.s6-username-row { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.s6-username { font-size: 1.1rem; font-weight: 700; color: #fff; }

.s6-profile-stats {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid #262626;
    margin-bottom: 1rem;
}
.s6-stat { display: flex; flex-direction: column; align-items: center; }
.s6-stat-num { font-size: 1rem; font-weight: 700; color: #fff; }
.s6-stat-lbl { font-size: 0.8rem; color: var(--text-secondary); }

.s6-profile-bio {
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.4;
}

/* Success Banner */
.s6-success-banner {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.4), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--purple-main);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}
.s6-success-banner h3 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; }
.s6-success-banner p { color: #cbd5e1; font-size: 0.85rem; }

.s6-arrow-down { color: #a8a8a8; font-size: 1.5rem; text-align: center; margin: 1rem 0; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Teasers */
.s6-teaser-section {
    background-color: #121216;
    border: 1px solid #1f1f24;
    border-radius: 16px;
    padding: 1.25rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.s6-teaser-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}
.s6-teaser-desc { font-size: 0.85rem; color: #a1a1aa; margin-bottom: 1rem; }

.s6-grid-locked {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
}
.s6-grid-item { position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background-color: #27272a; }
.span-2-row { grid-column: span 2; grid-row: span 2; }
.s6-blur { position: absolute; top:0; left:0; width:100%; height:100%; background: url('https://images.unsplash.com/photo-1517841905240-472988babdf9?w=400&h=400&fit=crop') center/cover; filter: blur(10px); opacity: 0.6; }
.s6-lock { position: absolute; top:50%; left:50%; transform: translate(-50%, -50%); opacity: 0.8; }

.s6-map-card { position: relative; border-radius: 12px; overflow: hidden; height: 180px; background-color: #27272a; }
.s6-map-blur { position: absolute; top:0; left:0; width:100%; height:100%; display: flex; justify-content: center; align-items: center; }
.s6-map-blur::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: var(--s6-map-bg, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='540' viewBox='0 0 900 540'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23222'/%3E%3Cstop offset='1' stop-color='%23111'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='900' height='540' fill='url(%23g)'/%3E%3Cg opacity='0.55'%3E%3Cpath d='M-40 120 C 120 60, 240 200, 420 140 S 720 120, 960 220' fill='none' stroke='%239ca3af' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M-60 340 C 180 260, 360 420, 520 330 S 760 220, 980 360' fill='none' stroke='%239ca3af' stroke-width='14' stroke-linecap='round'/%3E%3Cpath d='M40 20 C 180 130, 160 260, 260 340 S 470 470, 640 520' fill='none' stroke='%23cbd5e1' stroke-width='8' stroke-linecap='round' opacity='0.75'/%3E%3Cpath d='M820 -40 C 740 120, 640 160, 600 260 S 560 420, 460 560' fill='none' stroke='%23cbd5e1' stroke-width='8' stroke-linecap='round' opacity='0.65'/%3E%3C/g%3E%3Cg opacity='0.25'%3E%3Ccircle cx='180' cy='210' r='55' fill='%232a2a2a'/%3E%3Ccircle cx='700' cy='360' r='70' fill='%232a2a2a'/%3E%3C/g%3E%3Cg opacity='0.22'%3E%3Cpath d='M0 0H900M0 60H900M0 120H900M0 180H900M0 240H900M0 300H900M0 360H900M0 420H900M0 480H900M0 540H900' stroke='%23333' stroke-width='2'/%3E%3Cpath d='M0 0V540M100 0V540M200 0V540M300 0V540M400 0V540M500 0V540M600 0V540M700 0V540M800 0V540M900 0V540' stroke='%23333' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E")); background-position: center; background-size: cover; filter: blur(7px); opacity: 0.55; }
.s6-map-pin { width: 50px; height: 50px; border-radius: 50%; border: 3px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--purple-light) border-box; display: flex; justify-content: center; align-items: center; overflow: hidden; box-shadow: 0 0 15px rgba(231, 0, 203, 0.5); z-index: 2; }
.s6-map-pin img { width: 100%; height: 100%; object-fit: cover; }
.s6-map-info { position: absolute; bottom: 10px; left: 10px; right: 10px; background: rgba(0,0,0,0.8); padding: 10px; border-radius: 8px; display: flex; align-items: center; justify-content: space-between; z-index: 3; }
.s6-map-info h4 { font-size: 0.9rem; color: #fff; margin-bottom: 2px; }
.s6-map-info p { font-size: 0.75rem; color: #a1a1aa; }
.s6-map-btn { background: #fff; color: #000; border: none; padding: 5px 12px; border-radius: 4px; font-weight: 600; font-size: 0.8rem; cursor: pointer; }

.s6-stories-grid { display: flex; gap: 10px; }
.s6-story-card { flex: 1; aspect-ratio: 9/16; background-color: #27272a; border-radius: 8px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 10px; }
.s6-story-card span { color: #fff; font-size: 0.7rem; font-weight: 700; text-align: center; z-index: 2; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }

.s6-direct-card { background: #000; border-radius: 8px; border: 1px solid #262626; overflow: hidden; }
.s6-direct-header { display: flex; align-items: center; gap: 8px; padding: 10px; border-bottom: 1px solid #262626; }
.s6-direct-header span { font-size: 0.9rem; font-weight: 600; color: #fff; }
.s6-direct-chat { padding: 15px 10px; display: flex; flex-direction: column; gap: 10px; }
.s6-chat-bubble { max-width: 80%; padding: 12px; border-radius: 18px; position: relative; }
.s6-chat-bubble.received { align-self: flex-start; background: #262626; border-bottom-left-radius: 4px; width: 60%; }
.s6-chat-bubble.sent { align-self: flex-end; background: var(--purple-dark); border-bottom-right-radius: 4px; width: 70%; }
.s6-blur-text { height: 10px; background: rgba(255,255,255,0.2); border-radius: 5px; width: 100%; filter: blur(2px); }

/* Pricing Box */
.s6-pricing-box {
    background-color: #121216;
    border: 2px solid var(--purple-main);
    border-radius: 16px;
    padding: 2rem 1.25rem;
    width: 100%;
    box-shadow: 0 10px 40px rgba(110, 40, 217, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.s6-pricing-title { text-align: center; color: #fff; font-size: 1.1rem; line-height: 1.4; margin-bottom: 1.5rem; }
.s6-price { display: flex; align-items: flex-start; justify-content: center; color: #ff0067; background-image: var(--purple-light); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; margin-bottom: 1.5rem; }
.s6-currency { font-size: 1.5rem; margin-top: 5px; margin-right: 5px; }
.s6-amount { font-size: 4rem; line-height: 1; }
.s6-cents { font-size: 1.5rem; margin-top: 5px; }

.s6-benefits { list-style: none; width: 100%; margin-bottom: 2rem; }
.s6-benefits li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: #e2e8f0; line-height: 1.4; }
.s6-benefits svg { flex-shrink: 0; margin-top: 2px; }

.s6-btn-buy {
    width: 100%;
    background: var(--btn-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(110, 40, 217, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s;
    animation: pulse 2s infinite;
}
.s6-btn-buy span { font-size: 0.75rem; font-weight: 500; opacity: 0.9; }
.s6-btn-buy:hover { transform: translateY(-2px); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); } 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); } }

/* Section Title */
.s6-section-title { text-align: center; color: #fff; font-size: 1.3rem; margin-bottom: 1.5rem; line-height: 1.3; }

/* Testimonials */
.s6-testimonials { display: flex; flex-direction: column; gap: 1rem; width: 100%; margin-bottom: 2rem; }
.s6-testimonial-card { background-color: #121216; border: 1px solid #1f1f24; border-radius: 12px; padding: 1.25rem; }
.s6-test-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.s6-test-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.s6-test-header strong { color: #fff; font-size: 0.95rem; }
.s6-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }
.s6-testimonial-card p { color: #cbd5e1; font-size: 0.85rem; line-height: 1.5; font-style: italic; }

/* Warning Box */
.s6-warning { background-color: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); border-radius: 12px; padding: 1rem; display: flex; align-items: flex-start; gap: 12px; margin-bottom: 2rem; width: 100%; }
.s6-warning p { color: #fca5a5; font-size: 0.85rem; line-height: 1.4; }

/* FAQ */
.s6-faq { width: 100%; margin-bottom: 2rem; }
.s6-faq h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; text-align: center; }
.s6-faq-item { background-color: #121216; border: 1px solid #1f1f24; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.s6-faq-q { padding: 1rem; color: #e2e8f0; font-size: 0.9rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.s6-faq-q span { color: #ff0067; background-image: var(--purple-light); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.2rem; }

/* Guarantee */
.s6-guarantee { background: #121216; border: 1px solid #22c55e; border-radius: 12px; padding: 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 2rem; width: 100%; }
.s6-guarantee strong { color: #22c55e; font-size: 1.1rem; }
.s6-guarantee p { color: #a1a1aa; font-size: 0.85rem; line-height: 1.4; }

/* Footer */
.s6-footer { text-align: center; border-top: 1px solid #1f1f24; padding-top: 1.5rem; width: 100%; }
.s6-footer p { color: #71717a; font-size: 0.75rem; margin-bottom: 8px; line-height: 1.4; }

/* Feed loading + limite paywall */
.stalkea-feed-loading {
    text-align: center;
    color: #a1a1aa;
    padding: 2rem 1rem;
    font-size: 0.95rem;
}

.limite-body {
    min-height: 100vh;
    margin: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    font-family: "Inter", sans-serif;
}

.limite-card {
    width: 100%;
    max-width: 420px;
    background: #111113;
    border: 1px solid #1f1f24;
    border-radius: 20px;
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.limite-avatar-wrap {
    margin-bottom: 1.25rem;
}

.limite-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6366f1;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
}

.limite-alert-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ef4444;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.limite-icon-warn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1;
}

.limite-lead {
    color: #e4e4e7;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
}

.limite-at {
    color: #a78bfa;
    font-weight: 700;
}

.limite-sub {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 0 0 1.5rem;
}

.limite-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #6d28d9, #3b82f6);
    box-shadow: 0 8px 28px rgba(109, 40, 217, 0.35);
    transition: opacity 0.2s, transform 0.2s;
}

.limite-cta:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.limite-footnote {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 12px;
}

.limite-footnote p {
    margin: 0;
    color: #f87171;
    font-size: 0.8rem;
    line-height: 1.45;
}
