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

/* FUNDO */
body {
    background: linear-gradient(135deg, #1a0b2e, #2e1065, #f97316);
    color: #f8fafc;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    padding: 40px;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: auto;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 40px;
}

/* FOTO */
.profile-img {
    width: 150px;
    border-radius: 50%;
    border: 3px solid #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

/* TITULO */
h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ffffff, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    color: #f97316;
    margin-bottom: 10px;
}

/* CARDS */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: rgba(30, 10, 60, 0.7);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

/* TEXTOS */
p {
    margin-bottom: 10px;
    color: #e2e8f0;
}

li {
    margin-bottom: 8px;
}

/* LINKS */
a {
    color: #f97316;
    text-decoration: none;
}

a:hover {
    color: #c084fc;
}

/* BOTÕES */
.actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    background: linear-gradient(90deg, #f97316, #a855f7);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
}

/* ESPAÇO ENTRE SEÇÕES */
section {
    margin-bottom: 40px;
}
/* TEXTOS */
p {
    margin-bottom: 10px;
    color: #cbd5f5;
}

ul {
    margin-top: 10px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #cbd5f5;
}

li {
    margin-bottom: 20px;
}