/* ============================================================
   DELIRIOUS.CSS — Mouse Parallax + Ilustração sobre preto
   ============================================================ */

.delirious-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--preto-absoluto);
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Linha de ouro superior */
.delirious-section::before {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(197,160,89,0.3) 30%,
        rgba(197,160,89,0.3) 70%,
        transparent
    );
    z-index: 2;
}

/* ── Glow que segue o cursor ── */
.delirious-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50% !important;
    background: radial-gradient(circle,
        rgba(197, 160, 89, 0.12) 0%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    will-change: left, top;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.delirious-section:hover .delirious-glow {
    opacity: 1;
}

/* ── Ilustração central ── */
.delirious-scene {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.delirious-card {
    width: min(62vh, 440px);
    will-change: transform;
    transform-style: preserve-3d;
    cursor: none;
}

.delirious-face {
    width: 100%;
    height: auto;
    display: block;
    filter: invert(1) contrast(1.2) brightness(1.05);
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    draggable: false;
}

/* ── Cursor personalizado ── */
.delirious-cursor {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50% !important;
    background: var(--ouro-solido, #C5A059);
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 14px rgba(197,160,89,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: left, top;
}

.delirious-section:hover .delirious-cursor {
    opacity: 1;
}

/* ── Label inferior ── */
.delirious-label {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    pointer-events: none;
}

.delirious-label-title {
    display: block;
    font-family: var(--font-heading, 'Big Shoulders Display', sans-serif);
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.82;
    background: var(--ouro-liquido,
        linear-gradient(135deg, #A67C1E 0%, #F1E4A0 25%, #B18A2A 50%, #F9F5D2 75%, #876011 100%)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--ouro-solido);
}

.delirious-label-sub {
    display: block;
    margin-top: 0.6rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.35);
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .delirious-card {
        width: min(70vw, 280px);
    }
    .delirious-cursor,
    .delirious-glow { display: none; }
}
