/* ========================================
   Thaina Peixoto Nogueira - Legal Pages
   CSS Puro (sem Tailwind)
   ======================================== */

/* Mesmos estilos do termos-de-uso */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0b1c30;
    background-color: #f8f9ff;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: scale(0.98);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0b1c30;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.legal-main {
    padding: 128px 0 80px;
    background-color: #f8f9ff;
}

.legal-header {
    margin-bottom: 48px;
}

.legal-header h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.legal-update {
    font-size: 18px;
    color: #45464d;
}

.legal-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #c6c6cd;
}

.legal-section {
    margin-bottom: 48px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #c6c6cd;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
}

.legal-section p {
    color: #45464d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    color: #45464d;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-highlight {
    background-color: #eff4ff;
    border-color: #0051d5;
}

.footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0b1c30;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #64748b;
    font-size: 14px;
}

.footer-nav {
    display: flex;
    gap: 96px;
}

.footer-column h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0b1c30;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #0b1c30;
}

.footer-icons {
    display: flex;
    gap: 16px;
}

.footer-icons .material-symbols-outlined {
    color: #131b2e;
}

@media (max-width: 768px) {
    .legal-main {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-content {
        padding: 24px;
    }
    
    .legal-section {
        padding: 24px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 32px;
    }
    
    .navbar .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}