:root {
    --primary: #5865F2;
    --secondary: #f0b72f;
    --dark: #1e1e2e;
    --darker: #2a2a3a;
    --darkest: #36364a;
    --light: #f8f9fa;
    --gray: #adb5bd;
    --gradient: linear-gradient(135deg, #5865F2 0%, #a855f7 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-color: rgba(30, 30, 46, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 32px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(-5deg);
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--light);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(88, 101, 242, 0.4);
}

.btn-secondary {
    background-color: var(--darker);
    color: white;
}

.btn-secondary:hover {
    background-color: #3a3d44;
}

/* Seção de Termos */
.terms-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(88, 101, 242, 0.05), var(--dark));
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.terms-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.terms-card {
    background: var(--darker);
    padding: 1.8rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.terms-card:hover {
    transform: translateX(5px);
}

.terms-card h2 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 0.8rem;
}

.terms-card p {
    color: var(--gray);
}

.terms-link {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--light);
}

/* Rodapé */
footer {
    background-color: var(--darkest);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 32px;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: var(--gray);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
}

.footer-link-item {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: var(--gray);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
}