/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

/* Container Principal */
.container {
    flex: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
    padding: 20px 0;
    border-bottom: 3px solid #dc2626;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 55px;
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(220, 38, 38, 0.7));
}

.back-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.back-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    border-color: rgba(220, 38, 38, 0.5);
}

/* Content Areas */
.privacy-content,
.terms-content,
.faq-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.privacy-content::before,
.terms-content::before,
.faq-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.privacy-content h1,
.terms-content h1,
.faq-content h1 {
    font-size: 2.5em;
    color: #dc2626;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    position: relative;
}

.privacy-content h1::after,
.terms-content h1::after,
.faq-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.privacy-content h2,
.terms-content h2 {
    font-size: 1.6em;
    color: #ffffff;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #dc2626;
    padding-left: 15px;
    position: relative;
}

.privacy-content p,
.terms-content p,
.faq-content p {
    font-size: 1.05em;
    color: #c9c9c9;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-content ul,
.terms-content ul {
    padding-left: 25px;
    color: #c9c9c9;
    margin-bottom: 20px;
}

.privacy-content ul li,
.terms-content ul li {
    margin-bottom: 12px;
    position: relative;
}

.privacy-content ul li::marker,
.terms-content ul li::marker {
    color: #dc2626;
}

.privacy-content a,
.terms-content a,
.faq-content a {
    color: #dc2626;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.privacy-content a:hover,
.terms-content a:hover,
.faq-content a:hover {
    color: #f87171;
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

/* FAQ Específico */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 1.6em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #dc2626;
    padding-left: 15px;
}

.faq-item {
    border-bottom: 1px solid rgba(68, 68, 68, 0.5);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(42, 42, 42, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(42, 42, 42, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-question:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.faq-question h3 {
    font-size: 1.15em;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #dc2626;
    transition: all 0.3s ease;
    font-size: 1.2em;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

.faq-question.active {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: rgba(220, 38, 38, 0.5);
}

.faq-question.active h3 {
    color: #ffffff;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #c9c9c9;
    line-height: 1.8;
    transition: all 0.4s ease;
    background: rgba(26, 26, 26, 0.5);
}

.faq-answer p {
    margin: 0;
    text-align: left;
}

.faq-answer.active {
    max-height: 300px;
    padding: 20px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 3px solid #dc2626;
    box-shadow: 0 -4px 20px rgba(220, 38, 38, 0.3);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #dc2626;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, transparent);
}

.footer-section p,
.footer-section a {
    color: #c9c9c9;
    font-size: 0.95em;
    line-height: 1.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #dc2626;
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.6em;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.social-icons a:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(68, 68, 68, 0.5);
    font-size: 0.85em;
    color: #888;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .privacy-content,
    .terms-content,
    .faq-content {
        padding: 25px 20px;
    }
    
    .privacy-content h1,
    .terms-content h1,
    .faq-content h1 {
        font-size: 2em;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-content,
.terms-content,
.faq-content {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

/* Seleção de texto */
::selection {
    background: rgba(220, 38, 38, 0.3);
    color: #ffffff;
}