.privacy-notice-container {
    min-height: 100vh;
    background: rgba(158, 80, 80, 0.5);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-notice-content {
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.privacy-notice-header {
    background: linear-gradient(135deg, #8d3f2d 0%, #6f3223 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.privacy-notice-header h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.privacy-notice-subtitle {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
}

.privacy-notice-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    background: #fafafa;
}

.privacy-text-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-text-content h3 {
    color: #8d3f2d;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #8d3f2d;
    padding-bottom: 10px;
}

.privacy-text-content h4 {
    color: #6f3223;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

.privacy-text-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.privacy-text-content ul,
.privacy-text-content ol {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.privacy-text-content table {
    margin: 20px 0;
}

.privacy-text-content table th {
    background-color: #8d3f2d;
    color: white;
    font-weight: bold;
}

.privacy-notice-footer {
    background: white;
    padding: 25px 30px;
    border-top: 2px solid #e0e0e0;
    pointer-events: auto !important;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    pointer-events: auto !important;
}

.action-buttons .btn {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 250px;
    cursor: pointer;
    z-index: 100;
    position: relative;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, #8d3f2d 0%, #6f3223 100%);
    border: none;
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 63, 45, 0.4);
    cursor: pointer;
}

.action-buttons .btn-primary:active {
    transform: translateY(0);
}

.action-buttons .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Scroll personalizado */
.privacy-notice-body::-webkit-scrollbar {
    width: 10px;
}

.privacy-notice-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.privacy-notice-body::-webkit-scrollbar-thumb {
    background: #8d3f2d;
    border-radius: 10px;
}

.privacy-notice-body::-webkit-scrollbar-thumb:hover {
    background: #6f3223;
}

/* Responsivo */
@media (max-width: 768px) {
    .privacy-notice-container {
        padding: 10px;
    }
    
    .privacy-notice-header h1 {
        font-size: 22px;
    }
    
    .privacy-notice-subtitle {
        font-size: 14px;
    }
    
    .privacy-notice-body {
        padding: 15px;
        max-height: 50vh;
    }
    
    .privacy-text-content {
        padding: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}
