* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: linear-gradient(135deg, #5A2D82, #FF7A1A);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
}

/* LOGO */
.logo img {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* NOME */
.page-name {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #FFFFFF, #FFC27A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTÍTULO */
.subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* LINKS */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* BOTÕES */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* BOTÕES COM GRADIENTE */
.btn {
    background: linear-gradient(90deg, #7B3FB3, #FF9A3D);
    color: white;
}

/* HOVER */
.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ÍCONES */
.icon {
    font-size: 18px;
}