/* =========================================
   SECURITY & ANTI-CLONE STYLES
   ========================================= */
* {
    -webkit-touch-callout: none !important;
    /* iOS Safari */
    -webkit-user-select: none !important;
    /* Safari */
    -khtml-user-select: none !important;
    /* Konqueror HTML */
    -moz-user-select: none !important;
    /* Old versions of Firefox */
    -ms-user-select: none !important;
    /* Internet Explorer/Edge */
    user-select: none !important;
    /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    -webkit-user-drag: none !important;
    /* Prevents dragging of images/links */
}

img {
    pointer-events: none !important;
    /* Impede interação direta com as imagens (salvar como, arrastar) */
}

input,
textarea {
    -webkit-user-select: auto !important;
    user-select: auto !important;
}


:root {
    --ios-pink: #ff375f;
    --ios-purple: #bf5af2;
    --ios-blue: #0a84ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* --- BACKGROUND iOS 26 MESH --- */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(at 0% 0%, hsla(339, 100%, 60%, 0.18) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(271, 91%, 65%, 0.18) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(200, 100%, 50%, 0.12) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(339, 100%, 60%, 0.12) 0px, transparent 50%);
    filter: blur(80px);
    animation: meshMove 25s ease infinite alternate;
}

@keyframes meshMove {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.1) rotate(2deg);
    }
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- GLASSMORPHISM --- */
.ios-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.ios-glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- ENTRANCE ANIMATION --- */
@keyframes iosEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes auraPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1.1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.animate-aura {
    animation: auraPulse 6s ease-in-out infinite;
    filter: blur(45px);
    will-change: transform, opacity;
}

.stagger-load>* {
    opacity: 0;
    animation: iosEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stagger-load>*:nth-child(1) {
    animation-delay: 0.05s;
}

.stagger-load>*:nth-child(2) {
    animation-delay: 0.1s;
}

.stagger-load>*:nth-child(3) {
    animation-delay: 0.15s;
}

.stagger-load>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-load>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-load>*:nth-child(6) {
    animation-delay: 0.6s;
}

.ios-link-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* --- NOTIFICATIONS --- */
#notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    pointer-events: none;
}

.ios-notification {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-120px) scale(0.9);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ios-notification.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.ios-notification.hide {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    filter: blur(10px);
}

.ios-notification-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff375f, #bf5af2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ios-link-card:hover {
    transform: scale(1.02) translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.ios-link-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ios-link-card:hover::before {
    transform: translateX(100%);
}

/* --- SQUIRCLE HELPERS --- */
.squircle-lg {
    border-radius: 40px;
}

.squircle-md {
    border-radius: 24px;
}

.squircle-full {
    border-radius: 9999px;
}

.ios-badge {
    background: linear-gradient(135deg, #ff375f, #bf5af2);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 55, 95, 0.3);
}

/* --- ACTIVE STATES (TAPTIC FEEDBACK) --- */
.ios-link-card:active {
    transform: scale(0.96);
    opacity: 0.8;
    transition: all 0.1s ease;
}

button:active {
    transform: scale(0.92);
    opacity: 0.7;
    transition: all 0.1s ease;
}

/* --- DIAGONAL MARQUEE --- */
.marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: linear-gradient(90deg, transparent, rgba(255, 55, 95, 0.15), transparent);
    padding: 24px 0;
    transform: rotate(-2.5deg);
    margin-top: 15px;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 55, 95, 0.2);
    border-bottom: 1px solid rgba(255, 55, 95, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 55, 95, 0.1);
}

.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
    animation-play-state: paused;
}

.marquee-content.is-running {
    animation-play-state: running;
}

.marquee-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 25px;
    padding: 0 40px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 5px;
    transition: color 0.3s;
}

.marquee-item b {
    color: #fff;
    font-style: italic;
    text-shadow: 0 0 20px rgba(255, 55, 95, 0.8), 0 0 40px rgba(255, 55, 95, 0.4);
    letter-spacing: 6px;
}

.marquee-separator {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: #ff375f;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff375f;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

::-webkit-scrollbar {
    width: 0;
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-bounce-subtle {
    animation: bounce-subtle 3s ease-in-out infinite;
}

/* --- OVERLAY DO MODAL DE ALTO DESFOQUE --- */
.modal-overlay-glass {
    background-color: rgba(0, 0, 0, 0.5);
    /* Escurecimento suave, complementado com background-filter (blur) aplicado na base */
    backdrop-filter: blur(8px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
}

/* --- DESFOQUE GLOBAL ROBUSTO DE FUNDOS E NOTIFICAÇÕES --- */
.bg-blurred {
    filter: blur(15px) brightness(0.65) saturate(150%);
    pointer-events: none !important;
    user-select: none !important;
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* --- ANIMAÇÃO DE PULSO PREMIUM (MODERNA) --- */
@keyframes modernAuraPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.5),
            inset 0 0 0 0 rgba(10, 132, 255, 0.2);
        border-color: rgba(10, 132, 255, 0.4);
    }

    40% {
        box-shadow: 0 0 20px 2px rgba(10, 132, 255, 0.3),
            inset 0 0 10px 0 rgba(10, 132, 255, 0.1);
        border-color: rgba(85, 225, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 30px 15px rgba(10, 132, 255, 0),
            inset 0 0 0 0 rgba(10, 132, 255, 0);
        border-color: rgba(10, 132, 255, 0.4);
    }
}

.animate-pulse-premium {
    animation: modernAuraPulse 2.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 132, 255, 0.05) 100%) !important;
    border-width: 1.5px !important;
}

/* --- SELO DIAGONAL COM LETREIRO (MARQUEE) --- */
.featured-badge {
    position: absolute;
    top: 15px;
    right: -32px;
    background: linear-gradient(135deg, #0a84ff 0%, #55E1FF 100%);
    color: #fff;
    width: 140px;
    height: 22px;
    display: flex;
    align-items: center;
    transform: rotate(35deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 20;
    pointer-events: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.featured-badge-content {
    display: inline-block;
    padding-left: 100%;
    animation: badgeMarquee 15s linear infinite;
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes badgeMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

        /* Separador entre os textos do selo */
        .badge-sep {
            margin: 0 15px;
            opacity: 0.5;
        }

        /* --- NOVO EFEITO: HOLOFOTE SEQUENCIAL --- */
        .shimmer-text {
            color: rgba(255, 255, 255, 0.25); /* Texto base mais apagado */
            transition: all 0.5s ease;
            animation: spotlightSweep 6s infinite;
            display: inline-block;
            position: relative;
        }

        /* Delays calculados para ignorar os pontos (1, 3, 5) */
        .shimmer-wrapper span:nth-child(1) { animation-delay: 0s; }
        .shimmer-wrapper span:nth-child(3) { animation-delay: 2s; }
        .shimmer-wrapper span:nth-child(5) { animation-delay: 4s; }

        @keyframes spotlightSweep {
            0%, 35%, 100% { 
                color: rgba(255, 255, 255, 0.25);
                filter: blur(0px);
                text-shadow: none;
                transform: scale(1);
            }
            15% { 
                color: #fff;
                filter: blur(0px);
                text-shadow: 0 0 12px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.2);
                transform: scale(1.05); /* Leve pulso para simular foco */
            }
        }

        /* --- PREMIUM SHIMMER (ESTILO SEDA - LENTO E SUAVE) --- */
        .shimmer-premium {
            background: linear-gradient(
                110deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.1) 40%, 
                rgba(255, 255, 255, 0.7) 50%, 
                rgba(255, 255, 255, 0.1) 60%, 
                rgba(255, 255, 255, 0.1) 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            /* Aumentado para 10s e linear para evitar acelerações bruscas */
            animation: textShinePremium 10s linear infinite;
            filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.1));
            letter-spacing: 0.8em !important;
            font-weight: 800;
            text-transform: uppercase;
        }

        @keyframes textShinePremium {
            0% { 
                background-position: -200% center; 
            }
            100% { 
                background-position: 200% center; 
            }
        }
    