/* Termos e Privacidade - Trimmar */

:root {
    --primary-color: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #d4740c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 2px solid var(--border-color);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.contact-link {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white !important;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.8;
}

.hero-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tabs Section */
.tabs-section {
    background: white;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 74px;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

.tabs {
    display: flex;
    gap: 8px;
    padding: 16px 0;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.tab-btn:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-header h2 i {
    color: var(--primary-color);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Alert */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-left: 4px solid;
}

.alert i {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-info {
    background: #e0f2fe;
    border-color: #0284c7;
    color: #075985;
}

.alert-warning {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.alert strong {
    font-weight: 700;
}

/* Content Card */
.content-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.content-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.content-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.content-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.content-card li i {
    color: var(--primary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.content-card li strong {
    color: var(--text-dark);
}

/* Data Grid */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.data-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.data-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.data-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.right-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.right-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.right-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.right-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.right-item span {
    font-size: 13px;
    color: var(--text-light);
}

/* Highlight Box */
.highlight-box {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 116, 12, 0.1) 0%, rgba(139, 69, 19, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-dark);
}

.highlight-box i {
    font-size: 28px;
    color: var(--primary-color);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
}

.contact-card h3 {
    color: white;
}

.contact-card .number {
    background: rgba(255, 255, 255, 0.2);
}

.contact-info {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Utilities */
.mt-20 {
    margin-top: 20px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links h4,
.footer-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-info {
        flex-direction: column;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 28px;
        flex-direction: column;
    }

    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        white-space: nowrap;
    }

    .content-card {
        padding: 24px;
    }

    .content-card h3 {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .data-grid {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-icon {
        font-size: 48px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .main-content {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    animation: fadeIn 0.5s ease-out;
}
