:root {
    --dark: #000a21;        /* Fundo principal - azul escuro */
    --darker: #000511;      /* Elemento de fundo secundário, mais escuro */
    --primary: #0b76ef;     /* Azul primário para gradientes, botões */
    --accent: #1ed760;      /* Verde acento para destaque e call-to-action */
    --text: #ffffff;        /* Texto principal (branco) */
    --text-secondary: rgba(255, 255, 255, 0.7);  /* Texto secundário */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark);
    background-image: 
        radial-gradient(circle at 75% 25%, rgba(11, 118, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(30, 215, 96, 0.1) 0%, transparent 50%);
    color: var(--text);
    line-height: 1.6;
}

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

/* Header com Logo */
.terms-header {
    padding: 80px 0;
    text-align: center;
    background-color: var(--dark);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(11, 118, 239, 0.15) 0%, transparent 50%);
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    max-height: 75px;
    width: auto;
    height: auto;
    margin: 0 auto 30px;
}

.terms-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.5px;
    font-weight: 700;
}

.terms-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.last-updated {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(11, 118, 239, 0.1) 0%, rgba(30, 215, 96, 0.1) 100%);
    backdrop-filter: blur(10px);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.terms-content {
    padding: 80px 0;
}

.terms-section {
    background: linear-gradient(135deg, rgba(11, 118, 239, 0.05) 0%, rgba(30, 215, 96, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin-bottom: 40px;
    padding: 30px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    font-size: 1rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.terms-section h2 i {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(11, 118, 239, 0.1) 0%, rgba(30, 215, 96, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-section h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--text);
    letter-spacing: -0.5px;
    font-weight: 600;
}

.terms-section p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.terms-section ul, .terms-section ol {
    margin: 15px 0 20px 20px;
    color: var(--text-secondary);
}

.terms-section li {
    margin-bottom: 10px;
}

.terms-section .highlight {
    background: linear-gradient(135deg, rgba(11, 118, 239, 0.1) 0%, rgba(30, 215, 96, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 
        0 10px 30px -12px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.terms-section .highlight p {
    margin-bottom: 0;
}

.contact-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    padding: 30px;
    border-radius: 24px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(30, 215, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.contact-box h3 {
    color: var(--darker);
    margin-top: 0;
    font-weight: 700;
}

.contact-box p {
    color: var(--darker);
    margin-bottom: 0;
}

.contact-box a {
    color: var(--darker);
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-box a:hover {
    opacity: 0.8;
}

.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

a {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: none;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 992px) {
    .terms-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .terms-header {
        padding: 50px 0;
    }
    
    .logo {
        max-width: 120px;
        max-height: 50px;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .terms-content {
        padding: 50px 0;
    }

    .terms-section {
        padding: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.4rem;
    }
    
    .terms-section h2 i {
        width: 30px;
        height: 30px;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }

    .terms-section p {
        font-size: 0.9rem;
    }
    
    .terms-section li {
        font-size: 0.9rem;
    }
    
    .last-updated {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .terms-header {
        padding: 30px 0;
    }
    
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .terms-content {
        padding: 30px 0;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }

    .contact-box {
        padding: 20px;
    }
}