/* Cookie Consent Banner Styles */
.cc-nb-main-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cc-nb-main-container.show {
    transform: translateY(0);
}

.cc-nb-main-container.hide {
    transform: translateY(100%);
}

.cc-nb-banner {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
}

.cc-nb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cc-nb-text {
    flex: 1;
    min-width: 300px;
}

.cc-nb-text p {
    margin: 0;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cc-nb-buttons-container {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.cc-nb-accept,
.cc-nb-reject,
.cc-nb-changep {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cc-nb-accept {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.cc-nb-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.cc-nb-reject {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.cc-nb-reject:hover {
    background: #f9fafb;
    color: #374151;
    border-color: #9ca3af;
}

.cc-nb-changep {
    background: transparent;
    color: #dc2626;
    border: 1px solid #dc2626;
    font-size: 0.85rem;
}

.cc-nb-changep:hover {
    background: #dc2626;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cc-nb-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cc-nb-text {
        min-width: auto;
    }
    
    .cc-nb-buttons-container {
        justify-content: center;
        width: 100%;
    }
    
    .cc-nb-accept,
    .cc-nb-reject,
    .cc-nb-changep {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cc-nb-buttons-container {
        flex-direction: column;
        width: 100%;
    }
    
    .cc-nb-accept,
    .cc-nb-reject,
    .cc-nb-changep {
        width: 100%;
        flex: none;
    }
}

/* Privacy Policy Modal Styles */
.privacy-policy-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.privacy-policy-container.open-privacy {
    display: flex;
}

.privacy-policy-modal {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.privacy-policy-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 12px 12px 0 0;
}

.privacy-policy-header h2 {
    margin: 0;
    color: #111827;
    font-size: 1.5rem;
    font-weight: 700;
}

.privacy-policy-content {
    padding: 2rem;
}

.privacy-policy-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.privacy-policy-close:hover {
    background: #f3f4f6;
    color: #374151;
}


/* Estilos adicionais para o conteúdo da política de privacidade */
.privacy-policy-content h3 {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-policy-content h3:first-child {
    margin-top: 0;
}

.privacy-policy-content p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-policy-content ul {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-policy-content li {
    margin-bottom: 0.5rem;
}

/* Responsividade para o modal */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 1rem;
    }
    
    .privacy-policy-modal {
        max-width: 100%;
        max-height: 90vh;
    }
    
    .privacy-policy-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .privacy-policy-content {
        padding: 1.5rem;
    }
    
    .privacy-policy-header h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 0.5rem;
    }
    
    .privacy-policy-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .privacy-policy-content {
        padding: 1rem;
    }
    
    .privacy-policy-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 28px;
        height: 28px;
        font-size: 1.25rem;
    }
}

