/* ============================================================
   USERTOME - STILE PRINCIPALE
   ============================================================ */

:root {
    --primary: #6c5ce7;
    --primary-light: #a29bfe;
    --accent: #fd79a8;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255,255,255,0.04);
    --border-color: rgba(255,255,255,0.07);
    --text-white: #e8e8f0;
    --text-gray: #b0b0c0;
    --text-muted: #8888a0;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #0a0a0f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    background: #0a0a0f !important;
    color: #e8e8f0 !important;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
}

a {
    color: #6c5ce7;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #a29bfe;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: #fff;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.5);
    color: #fff;
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #e8e8f0;
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #6c5ce7;
    border: 1.5px solid #6c5ce7;
}
.btn-outline:hover {
    background: #6c5ce7;
    color: #fff;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.15);
    color: #a29bfe;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}
.hero-badge i {
    color: #a29bfe;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #e8e8f0;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero h1 .sub-highlight {
    color: #c0c0d0;
}

.hero p {
    font-size: 1.2rem;
    color: #b0b0c0;
    max-width: 640px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-stats {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
}
.hero-stats .stat {
    text-align: center;
}
.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.hero-stats .stat-number i {
    font-size: 2rem;
    color: #6c5ce7;
}
.hero-stats .stat-label {
    font-size: 0.85rem;
    color: #8888a0;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
}
.features .section-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #6c5ce7;
    margin-bottom: 8px;
}
.features .section-label i {
    color: #6c5ce7;
}
.features h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #e8e8f0;
}
.features .sub {
    color: #b0b0c0;
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 30px 26px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
}
.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
    color: #6c5ce7;
}
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e8e8f0;
}
.feature-card p {
    font-size: 0.95rem;
    color: #b0b0c0;
}

/* ===== PRO TEASER ===== */
.pro-teaser {
    padding: 60px 0;
    background: rgba(108, 92, 231, 0.05);
    border-top: 1px solid rgba(108, 92, 231, 0.12);
    border-bottom: 1px solid rgba(108, 92, 231, 0.12);
    text-align: center;
}

.pro-teaser .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.2);
    color: #a29bfe;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.pro-teaser .badge i {
    color: #a29bfe;
}

.pro-teaser h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e8e8f0;
}

.pro-teaser p {
    color: #b0b0c0;
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 1.05rem;
}

.pro-teaser .features-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 24px 0 30px;
}

.pro-teaser .features-mini span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0c0;
    font-size: 0.95rem;
}

.pro-teaser .features-mini i {
    color: #6c5ce7;
    font-size: 1.1rem;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    text-align: center;
}
.cta h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #e8e8f0;
}
.cta p {
    color: #b0b0c0;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 32px;
}
.cta-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #8888a0 !important;
}
.cta-note i {
    color: #6c5ce7;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    font-size: 0.9rem;
    color: #8888a0;
    background: #0a0a0f;
}

.site-footer a {
    color: #8888a0;
}
.site-footer a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-legal {
    margin-top: 8px;
    font-size: 0.8rem;
}

/* ============================================================
   COOKIE POPUP (COMPLETO)
   ============================================================ */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: rgba(20, 20, 35, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 36px;
    max-width: 540px;
    width: 92%;
    z-index: 9999;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cookie-popup .cookie-icon {
    text-align: center;
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 12px;
}

.cookie-popup h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    text-align: center;
}

.cookie-popup p {
    font-size: 0.92rem;
    color: #b0b0c0;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

.cookie-popup .cookie-preferences {
    margin-bottom: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 12px 16px;
}

.cookie-popup .cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cookie-popup .cookie-option:last-child {
    border-bottom: none;
}

.cookie-popup .cookie-option .option-label {
    font-size: 0.88rem;
    color: #c8c8d8;
}

.cookie-popup .cookie-option .option-badge {
    font-size: 0.7rem;
    color: #6c5ce7;
    background: rgba(108, 92, 231, 0.15);
    padding: 2px 10px;
    border-radius: 50px;
    font-weight: 600;
}

.cookie-popup .cookie-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.cookie-popup .cookie-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #6c5ce7;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-popup .cookie-checkbox input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-popup .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-popup .cookie-buttons .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.85rem;
    padding: 12px 20px;
    min-width: 100px;
}

.cookie-popup .cookie-footer {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-popup .cookie-footer a {
    font-size: 0.78rem;
    color: #8888a0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.cookie-popup .cookie-footer a:hover {
    color: #fff;
}

/* ===== CTA - DOWNLOAD BOX ===== */
.cta .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 121, 168, 0.15);
    color: #fd79a8;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(253, 121, 168, 0.2);
}
.cta .cta-badge i {
    color: #fd79a8;
}

.cta-download-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 36px;
    max-width: 640px;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}
.cta-download-box:hover {
    border-color: rgba(108, 92, 231, 0.3);
}

.cta-download-box .cta-notice {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(108, 92, 231, 0.08);
    border-radius: 10px;
    border-left: 3px solid #6c5ce7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}
.cta-download-box .cta-notice i {
    color: #6c5ce7;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-download-box .btn {
    width: 100%;
    justify-content: center;
}

.cta-download-box .cta-instructions {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #8888a0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.cta-download-box .cta-instructions i {
    color: #6c5ce7;
}

/* Responsive */
@media (max-width: 640px) {
    .cta-download-box {
        padding: 20px 16px;
    }
    .cta-download-box .cta-notice {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    .cta-download-box .btn {
        font-size: 0.9rem;
        padding: 14px 20px;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero-stats {
        gap: 24px;
    }
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    .pro-teaser .features-mini {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .cookie-popup {
        padding: 24px 20px;
        bottom: 10px;
        width: 96%;
        max-width: 100%;
        border-radius: 16px;
    }
    .cookie-popup .cookie-buttons .btn {
        min-width: 100%;
        flex: none;
        width: 100%;
    }
    .cookie-popup .cookie-preferences {
        padding: 8px 12px;
    }
    .cookie-popup .cookie-option .option-label {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
    .features h2 {
        font-size: 1.6rem;
    }
    .pro-teaser h2 {
        font-size: 1.5rem;
    }
    .cta h2 {
        font-size: 1.6rem;
    }
}