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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #0b0b12 0%, #1a0b2e 100%);
    color: #fff;
    min-height: 100vh;
}

.landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 40px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 48px;
    background: linear-gradient(45deg, #ff66cc, #c56cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.tagline {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stats span {
    background: rgba(197,108,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
}

.btn-grande {
    display: inline-block;
    background: linear-gradient(90deg, #ff44aa, #c56cff);
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0;
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn-grande:hover {
    transform: scale(1.05);
}

.pequeno {
    font-size: 12px;
    color: #aaa;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
    width: 250px;
    border: 1px solid rgba(255,255,255,0.1);
}

.emoji {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Formulários */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0 20px;
    background: #1e1e2e;
    border: 1px solid #333;
    border-radius: 25px;
    color: white;
    font-size: 16px;
}

input:focus, select:focus {
    outline: none;
    border-color: #c56cff;
}

label {
    font-weight: 500;
    color: #ddd;
}

/* Dashboard */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: #0a0a0f;
    padding: 30px 20px;
    border-right: 1px solid #1a1a2a;
}

.sidebar h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #c56cff;
}

.sidebar nav a {
    display: block;
    padding: 12px 20px;
    color: #ccc;
    text-decoration: none;
    border-radius: 12px;
    margin: 5px 0;
    transition: 0.3s;
}

.sidebar nav a:hover, .sidebar nav a.active {
    background: #c56cff20;
    color: #c56cff;
}

.main-area {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

/* Feed */
.post {
    background: #111118;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #222;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c56cff, #ff44aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.post-name {
    font-weight: bold;
}

.post-time {
    font-size: 12px;
    color: #666;
}

.post-content {
    margin: 15px 0;
    line-height: 1.5;
}

.post-actions {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 14px;
}

/* Chat */
.chat-container {
    height: 500px;
    display: flex;
    flex-direction: column;
    background: #0f0f17;
    border-radius: 20px;
    overflow: hidden;
}

.messages-area {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.message.you {
    align-items: flex-start;
}

.message.me {
    align-items: flex-end;
}

.message .text {
    max-width: 70%;
    padding: 10px 18px;
    border-radius: 20px;
    background: #1e1e2e;
}

.message.me .text {
    background: #c56cff;
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #1a1a26;
}

.chat-input input {
    flex: 1;
    margin: 0;
}

.chat-input button {
    padding: 12px 30px;
    background: #c56cff;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
}

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

.plan-card {
    background: #111118;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid #222;
    transition: 0.3s;
}

.plan-card:hover {
    border-color: #c56cff;
    transform: translateY(-5px);
}

.plan-card.vip {
    background: linear-gradient(135deg, #1a0b2e, #0f0f17);
    border-color: #c56cff;
}

.price {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
    color: #c56cff;
}

/* Configurações */
.setting-group {
    background: #111118;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
}
</style>
