/* ======== ESTILO GLOBAL ======== */
body {
    background: radial-gradient(circle at top, #0a0f1f, #000);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 30px 0;
}

/* ======== CABEÇALHO ======== */
header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease;
}

header h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.glow {
    color: #58a6ff;
    text-shadow: 0 0 10px #58a6ff, 0 0 20px #58a6ff;
}

.subtitle {
    margin-top: -10px;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* ======== CARDS ======== */
.card {
    background: rgba(15, 25, 40, 0.7);
    border: 1px solid rgba(88, 166, 255, 0.3);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(88, 166, 255, 0.1);
    animation: slideUp 1s ease;
}

.card h2 {
    color: #58a6ff;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.card ul {
    padding-left: 15px;
}

.card h3 {
    color: #9bdcff;
    margin-top: 15px;
}

/* ======== TAGS TECNOLÓGICAS ======== */
.tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags li {
    background: linear-gradient(135deg, #313a52, #1a2131);
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(88, 166, 255, 0.4);
    box-shadow: 0 0 8px rgba(88, 166, 255, 0.3);
    transition: 0.3s;
}

.tags li:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(88, 166, 255, 0.6);
}

/* ======== CONTATO ======== */
.contact p {
    margin: 8px 0;
}

/* ======== FOOTER ======== */
footer {
    text-align: center;
    margin-top: 40px;
    opacity: 0.6;
}

/* ======== ANIMAÇÕES ======== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


footer a.dev-link {
    color: #58a6ff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

footer a.dev-link:hover {
    text-shadow: 0 0 8px #58a6ff;
    color: #9bdcff;
}

body {
    cursor: none;
}

.cursor-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #58a6ff;
    pointer-events: none;
    box-shadow: 0 0 10px #58a6ff, 0 0 20px #58a6ff;
    animation: fadeTrail 0.6s linear forwards;
}

@keyframes fadeTrail {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(3);
    }
}
