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

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #111, #000);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Topo */
.header {
    text-align: center;
}

.logo {
    padding: 40px 40px;
    font-weight: 700;
    font-size: 20px;
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
}

.logo span {
    color: #f59e0b;
    font-size: 65px;
}

div .logo_cm {
    height: 60px;
}


/* Conteúdo */
.container {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 40px;
    text-align: center;
}

.container h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.container h1 span {
    color: #f59e0b;
}

.subtitle {
    margin-top: 16px;
    color: #a1a1aa;
    font-size: 16px;
}


/* Cards */
.cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(180deg, #151515, #0c0c0c);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #1f1f1f;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #f59e0b;
    box-shadow: 0 5px 30px #f59e0b;
}

.icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 20px;
}

.card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f59e0b;
    
}

.card p {
    font-size: 14px;
    color: #a1a1aa;
    margin-bottom: 20px;
}

.card span {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}


/* Solicitação */
.code_user {
    margin-top: 40px;
    font-size: 14px;
    color: #a1a1aa;
}

.code_user a {
    color: #f59e0b;
    text-decoration: none;
}

.code_user a:hover {
    text-decoration: underline;
}


/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #71717a;
}

