/* =================================================
   INFO PAGES — Sobre & DMCA
   ============================================== */

.info-page {
    flex: 1;
    padding-bottom: 60px;
}

/* ── Hero ─────────────────────────────────────── */

.info-hero {
    position: relative;
    text-align: center;
    padding: 100px 24px 70px;
    overflow: hidden;
    isolation: isolate;
}

.info-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -55%);
    background: radial-gradient(circle, rgba(163, 58, 255, 0.22) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.info-hero--dmca .info-hero-glow {
    background: radial-gradient(circle, rgba(74, 105, 189, 0.25) 0%, rgba(163, 58, 255, 0.12) 45%, transparent 68%);
}

.info-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(163, 58, 255, 0.06) 0%, transparent 55%, rgb(30, 30, 30) 100%);
    z-index: 0;
}

.info-hero > *:not(.info-hero-glow) {
    position: relative;
    z-index: 1;
}

.info-hero-logo {
    width: 88px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 18px rgba(163, 58, 255, 0.45));
    animation: info-float 4s ease-in-out infinite;
}

.info-hero-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(163, 58, 255, 0.25), rgba(74, 105, 189, 0.2));
    border: 1px solid rgba(163, 58, 255, 0.35);
    font-size: 2rem;
    color: #a33aff;
    box-shadow: 0 8px 32px rgba(163, 58, 255, 0.2);
}

.info-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c9a0ff;
    background: rgba(163, 58, 255, 0.12);
    border: 1px solid rgba(163, 58, 255, 0.3);
}

.info-hero h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 12px;
    background: linear-gradient(90deg, #fff 30%, #c9a0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-hero p {
    max-width: 560px;
    margin: 0 auto;
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.6;
}

@keyframes info-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Highlights ─────────────────────────────────── */

.info-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: -30px auto 48px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.info-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 130px;
    padding: 18px 24px;
    background: rgba(24, 24, 24, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(163, 58, 255, 0.25);
    border-radius: 14px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.info-highlight:hover {
    transform: translateY(-4px);
    border-color: #a33aff;
    box-shadow: 0 10px 28px rgba(163, 58, 255, 0.15);
}

.info-highlight i {
    font-size: 1.4rem;
    color: #a33aff;
    margin-bottom: 4px;
}

.info-highlight strong {
    font-size: 1.35rem;
    color: #fff;
}

.info-highlight span {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Content grid ─────────────────────────────── */

.info-body {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-bottom: 48px;
}

.info-card {
    background: linear-gradient(160deg, #1e1e1e 0%, #181818 100%);
    border: 1px solid rgba(163, 58, 255, 0.18);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(163, 58, 255, 0.45);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(163, 58, 255, 0.08);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: #a33aff;
    background: rgba(163, 58, 255, 0.12);
    border: 1px solid rgba(163, 58, 255, 0.2);
}

.info-card h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.info-card p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: #bbb;
    font-size: 0.92rem;
}

.info-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #a33aff;
    font-size: 0.75rem;
    top: 3px;
}

/* ── Process timeline (Sobre) ─────────────────── */

.info-section-title {
    text-align: center;
    margin-bottom: 32px;
}

.info-section-title h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.info-section-title p {
    color: #777;
    font-size: 0.95rem;
}

.info-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 48px;
    position: relative;
}

.info-process::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(163, 58, 255, 0.4), transparent);
    z-index: 0;
}

.info-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.info-step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #a33aff, #6b21a8);
    box-shadow: 0 4px 20px rgba(163, 58, 255, 0.35);
}

.info-step h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
}

.info-step p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.5;
}

/* ── DMCA steps ───────────────────────────────── */

.info-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-step-card {
    background: #1a1a1a;
    border: 1px solid rgba(163, 58, 255, 0.15);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.25s;
}

.info-step-card:hover {
    border-color: rgba(163, 58, 255, 0.4);
}

.info-step-card .step-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a33aff;
    margin-bottom: 10px;
}

.info-step-card i {
    font-size: 1.6rem;
    color: #4a69bd;
    margin-bottom: 12px;
    display: block;
}

.info-step-card h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.info-step-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.55;
}

/* ── Contact box (DMCA) ───────────────────────── */

.info-contact-box {
    text-align: center;
    padding: 36px 28px;
    margin-bottom: 40px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(163, 58, 255, 0.1), rgba(74, 105, 189, 0.08));
    border: 1px solid rgba(163, 58, 255, 0.3);
}

.info-contact-box h2 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 8px;
}

.info-contact-box > p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.info-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #a33aff, #7c2fc9);
    box-shadow: 0 6px 24px rgba(163, 58, 255, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(163, 58, 255, 0.45);
}

/* ── Checklist (DMCA) ─────────────────────────── */

.info-checklist {
    background: #1a1a1a;
    border: 1px solid rgba(163, 58, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
}

.info-checklist h2 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-checklist h2 i {
    color: #a33aff;
}

.info-checklist ol {
    list-style: none;
    counter-reset: dmca-item;
    padding: 0;
    margin: 0;
}

.info-checklist li {
    counter-increment: dmca-item;
    position: relative;
    padding: 14px 14px 14px 52px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #bbb;
    font-size: 0.92rem;
    line-height: 1.6;
}

.info-checklist li::before {
    content: counter(dmca-item);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: #a33aff;
}

/* ── Callouts ─────────────────────────────────── */

.info-callout {
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 20px;
}

.info-callout h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-callout p {
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.info-callout p:last-child {
    margin-bottom: 0;
}

.info-callout--legal {
    background: linear-gradient(135deg, rgba(163, 58, 255, 0.08), rgba(24, 24, 24, 0.9));
    border: 1px solid rgba(163, 58, 255, 0.25);
}

.info-callout--legal h2 {
    color: #c9a0ff;
}

.info-callout--legal p {
    color: #aaa;
}

.info-callout--warning {
    background: linear-gradient(135deg, rgba(255, 180, 50, 0.06), rgba(24, 24, 24, 0.9));
    border: 1px solid rgba(255, 180, 50, 0.25);
}

.info-callout--warning h2 {
    color: #ffc857;
}

.info-callout--warning p {
    color: #aaa;
}

.info-callout--note {
    background: rgba(74, 105, 189, 0.08);
    border: 1px solid rgba(74, 105, 189, 0.25);
    margin-bottom: 40px;
}

.info-callout--note h2 {
    color: #6b9fff;
}

.info-callout--note p {
    color: #aaa;
}

.info-card--wide {
    margin-bottom: 40px;
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 900px) {
    .info-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .info-process::before {
        display: none;
    }

    .info-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .info-hero {
        padding: 90px 16px 50px;
    }

    .info-highlights {
        margin-top: -20px;
    }

    .info-highlight {
        min-width: calc(50% - 8px);
        flex: 1;
        padding: 14px 16px;
    }

    .info-process {
        grid-template-columns: 1fr;
    }

    .info-checklist {
        padding: 22px 18px;
    }

    .info-callout {
        padding: 22px 20px;
    }
}
