/* ===============================
   BACKGROUND GLOW
================================= */

.purple-glow{
    position:absolute;
    background: radial-gradient(circle, rgba(168,85,247,0.35) 0%, rgba(168,85,247,0) 70%);
    filter: blur(120px);
    pointer-events:none;
}

/* ===============================
   TITULO NEON
================================= */

.neon-text{
    color:#a855f7;
    text-shadow:
        0 0 5px rgba(168,85,247,0.8),
        0 0 15px rgba(168,85,247,0.6),
        0 0 30px rgba(168,85,247,0.4);
}

/* ===============================
   SOCIAL CARDS
================================= */
html, body {
    height: 100%;
    margin: 0;
}

.social-card{
    background:#0a0a0a;
    border:1px solid rgba(168,85,247,0.15);
    transition: all .35s ease;
}

.social-card:hover{
    transform:translateY(-6px);
    border-color:#a855f7;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.6),
        0 0 15px rgba(168,85,247,0.3);
}

/* ===============================
   FORM INPUTS
================================= */

input,
textarea,
select{
    transition: all .25s ease;
}

input:focus,
textarea:focus,
select:focus{
    box-shadow:0 0 10px rgba(168,85,247,0.25);
}

/* ===============================
   BOTON PRINCIPAL
================================= */

.btn-primary{
    background:white;
    color:black;
    transition: all .35s ease;
}

.btn-primary:hover{
    background:#a855f7;
    color:white;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(168,85,247,0.4);
}

/* ===============================
   CARD FORM
================================= */

form{
    position:relative;
}

.bg-black\/40{
    box-shadow:
        0 0 30px rgba(168,85,247,0.08),
        inset 0 0 20px rgba(255,255,255,0.02);
}

/* ===============================
   SCROLL SUAVE
================================= */

html{
    scroll-behavior:smooth;
}